Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for COFFSymbolReadSectionDefAux (0.32 sec)

  1. src/debug/pe/symbols_test.go

    			t.Errorf("name check for %d, got %s want %s", k, name, tp.name)
    			continue
    		}
    		ap, err := f.COFFSymbolReadSectionDefAux(k)
    		if tp.ok {
    			if err != nil {
    				t.Errorf("unexpected failure on %d, got error %v", k, err)
    				continue
    			}
    			got := fmt.Sprintf("%+v", *ap)
    			if got != tp.auxstr {
    				t.Errorf("COFFSymbolReadSectionDefAux on %d bad return, got:\n%s\nwant:\n%s\n", k, got, tp.auxstr)
    				continue
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/debug/pe/symbol.go

    	IMAGE_COMDAT_SELECT_ANY          = 2
    	IMAGE_COMDAT_SELECT_SAME_SIZE    = 3
    	IMAGE_COMDAT_SELECT_EXACT_MATCH  = 4
    	IMAGE_COMDAT_SELECT_ASSOCIATIVE  = 5
    	IMAGE_COMDAT_SELECT_LARGEST      = 6
    )
    
    // COFFSymbolReadSectionDefAux returns a blob of auxiliary information
    // (including COMDAT info) for a section definition symbol. Here 'idx'
    // is the index of a section symbol in the main [COFFSymbol] array for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. api/go1.19.txt

    pkg debug/pe, const IMAGE_SCN_MEM_READ ideal-int #51868
    pkg debug/pe, const IMAGE_SCN_MEM_WRITE = 2147483648 #51868
    pkg debug/pe, const IMAGE_SCN_MEM_WRITE ideal-int #51868
    pkg debug/pe, method (*File) COFFSymbolReadSectionDefAux(int) (*COFFSymbolAuxFormat5, error) #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct, Checksum uint32 #51868
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/ldpe.go

    			continue
    		}
    		if pesym.StorageClass != uint8(IMAGE_SYM_CLASS_STATIC) {
    			continue
    		}
    		// This symbol corresponds to a COMDAT section. Read the
    		// aux data for it.
    		auxsymp, err := state.f.COFFSymbolReadSectionDefAux(i)
    		if err != nil {
    			return fmt.Errorf("unable to read aux info for section def symbol %d %s: pe.COFFSymbolReadComdatInfo returns %v", i, symname, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"X86_64_RELOC_SUBTRACTOR", Const, 10},
    		{"X86_64_RELOC_TLV", Const, 10},
    		{"X86_64_RELOC_UNSIGNED", Const, 10},
    	},
    	"debug/pe": {
    		{"(*COFFSymbol).FullName", Method, 8},
    		{"(*File).COFFSymbolReadSectionDefAux", Method, 19},
    		{"(*File).Close", Method, 0},
    		{"(*File).DWARF", Method, 0},
    		{"(*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