Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dynStrings (0.11 sec)

  1. src/debug/elf/file.go

    func (f *File) ImportedLibraries() ([]string, error) {
    	return f.DynString(DT_NEEDED)
    }
    
    // DynString returns the strings listed for the given tag in the file's dynamic
    // section.
    //
    // The tag must be one that takes string values: [DT_NEEDED], [DT_SONAME], [DT_RPATH], or
    // [DT_RUNPATH].
    func (f *File) DynString(tag DynTag) ([]string, error) {
    	switch tag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UnsupportedType.Tag", Field, 13},
    		{"VoidType", Type, 0},
    		{"VoidType.CommonType", Field, 0},
    	},
    	"debug/elf": {
    		{"(*File).Close", Method, 0},
    		{"(*File).DWARF", Method, 0},
    		{"(*File).DynString", Method, 1},
    		{"(*File).DynValue", Method, 21},
    		{"(*File).DynamicSymbols", Method, 4},
    		{"(*File).ImportedLibraries", Method, 0},
    		{"(*File).ImportedSymbols", Method, 0},
    		{"(*File).Section", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top