Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/debug/elf/elf.go

    )
    
    var shnStrings = []intName{
    	{0, "SHN_UNDEF"},
    	{0xff00, "SHN_LOPROC"},
    	{0xff20, "SHN_LOOS"},
    	{0xfff1, "SHN_ABS"},
    	{0xfff2, "SHN_COMMON"},
    	{0xffff, "SHN_XINDEX"},
    }
    
    func (i SectionIndex) String() string   { return stringName(uint32(i), shnStrings, false) }
    func (i SectionIndex) GoString() string { return stringName(uint32(i), shnStrings, true) }
    
    // Section type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func ReportEvent(log Handle, etype uint16, category uint16, eventId uint32, usrSId uintptr, numStrings uint16, dataSize uint32, strings **uint16, rawData *byte) (err error) {
    	r1, _, e1 := syscall.Syscall9(procReportEventW.Addr(), 9, uintptr(log), uintptr(etype), uintptr(category), uintptr(eventId), uintptr(usrSId), uintptr(numStrings), uintptr(dataSize), uintptr(unsafe.Pointer(strings)), uintptr(unsafe.Pointer(rawData)))
    	if r1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top