Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ImportedSymbol (0.13 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)
Back to top