Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ImportedSymbol (0.28 sec)

  1. src/internal/xcoff/file.go

    type Reloc struct {
    	VirtualAddress   uint64
    	Symbol           *Symbol
    	Signed           bool
    	InstructionFixed bool
    	Length           uint8
    	Type             uint8
    }
    
    // ImportedSymbol holds information about an imported XCOFF symbol.
    type ImportedSymbol struct {
    	Name    string
    	Library string
    }
    
    // FileHeader holds information about an XCOFF file header.
    type FileHeader struct {
    	TargetMachine uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    	}
    	return sym, nil
    }
    
    type ImportedSymbol struct {
    	Name    string
    	Version string
    	Library string
    }
    
    // ImportedSymbols returns the names of all symbols
    // referred to by the binary f that are expected to be
    // satisfied by other libraries at dynamic load time.
    // It does not return weak symbols.
    func (f *File) ImportedSymbols() ([]ImportedSymbol, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    // internal linking.
    func elfImportedSymbols(f *elf.File) []elf.ImportedSymbol {
    	syms, _ := f.DynamicSymbols()
    	var imports []elf.ImportedSymbol
    	for _, s := range syms {
    		if (elf.ST_BIND(s.Info) == elf.STB_GLOBAL || elf.ST_BIND(s.Info) == elf.STB_WEAK) && s.Section == elf.SHN_UNDEF {
    			imports = append(imports, elf.ImportedSymbol{
    				Name:    s.Name,
    				Library: s.Library,
    				Version: s.Version,
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Header64.Shoff", Field, 0},
    		{"Header64.Shstrndx", Field, 0},
    		{"Header64.Type", Field, 0},
    		{"Header64.Version", Field, 0},
    		{"ImportedSymbol", Type, 0},
    		{"ImportedSymbol.Library", Field, 0},
    		{"ImportedSymbol.Name", Field, 0},
    		{"ImportedSymbol.Version", Field, 0},
    		{"Machine", Type, 0},
    		{"NT_FPREGSET", Const, 0},
    		{"NT_PRPSINFO", Const, 0},
    		{"NT_PRSTATUS", Const, 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)
  5. api/go1.txt

    pkg debug/elf, type Header64 struct, Type uint16
    pkg debug/elf, type Header64 struct, Version uint32
    pkg debug/elf, type ImportedSymbol struct
    pkg debug/elf, type ImportedSymbol struct, Library string
    pkg debug/elf, type ImportedSymbol struct, Name string
    pkg debug/elf, type ImportedSymbol struct, Version string
    pkg debug/elf, type Machine uint16
    pkg debug/elf, type NType int
    pkg debug/elf, type OSABI uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top