Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NumberOfLineNumbers (0.23 sec)

  1. src/debug/pe/section.go

    	VirtualSize          uint32
    	VirtualAddress       uint32
    	SizeOfRawData        uint32
    	PointerToRawData     uint32
    	PointerToRelocations uint32
    	PointerToLineNumbers uint32
    	NumberOfRelocations  uint16
    	NumberOfLineNumbers  uint16
    	Characteristics      uint32
    }
    
    // fullName finds real name of section sh. Normally name is stored
    // in sh.Name, but if it is longer then 8 characters, it is stored
    // in COFF string table st instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/debug/pe/file.go

    			Offset:               sh.PointerToRawData,
    			PointerToRelocations: sh.PointerToRelocations,
    			PointerToLineNumbers: sh.PointerToLineNumbers,
    			NumberOfRelocations:  sh.NumberOfRelocations,
    			NumberOfLineNumbers:  sh.NumberOfLineNumbers,
    			Characteristics:      sh.Characteristics,
    		}
    		r2 := r
    		if sh.PointerToRawData == 0 { // .bss must have all 0s
    			r2 = &nobitsSectionReader{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Section.Relocs", Field, 8},
    		{"Section.SectionHeader", Field, 0},
    		{"SectionHeader", Type, 0},
    		{"SectionHeader.Characteristics", Field, 0},
    		{"SectionHeader.Name", Field, 0},
    		{"SectionHeader.NumberOfLineNumbers", Field, 0},
    		{"SectionHeader.NumberOfRelocations", Field, 0},
    		{"SectionHeader.Offset", Field, 0},
    		{"SectionHeader.PointerToLineNumbers", Field, 0},
    		{"SectionHeader.PointerToRelocations", Field, 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)
  4. api/go1.txt

    pkg debug/pe, type SectionHeader struct
    pkg debug/pe, type SectionHeader struct, Characteristics uint32
    pkg debug/pe, type SectionHeader struct, Name string
    pkg debug/pe, type SectionHeader struct, NumberOfLineNumbers uint16
    pkg debug/pe, type SectionHeader struct, NumberOfRelocations uint16
    pkg debug/pe, type SectionHeader struct, Offset uint32
    pkg debug/pe, type SectionHeader struct, PointerToLineNumbers uint32
    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