Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for PtraceRegs (0.28 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    }
    
    const (
    	SizeofSockaddrNFCLLCP = 0x60
    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Regs   [16]uint64
    	Tstate uint64
    	Tpc    uint64
    	Tnpc   uint64
    	Y      uint32
    	Magic  uint32
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    }
    
    const (
    	SizeofSockaddrNFCLLCP = 0x60
    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	R15      uint64
    	R14      uint64
    	R13      uint64
    	R12      uint64
    	Rbp      uint64
    	Rbx      uint64
    	R11      uint64
    	R10      uint64
    	R9       uint64
    	R8       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_amd64.go

    	Filter    *SockFilter
    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    	Name   [0]uint8
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	R15      uint64
    	R14      uint64
    	R13      uint64
    	R12      uint64
    	Rbp      uint64
    	Rbx      uint64
    	R11      uint64
    	R10      uint64
    	R9       uint64
    	R8       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), type PtraceRegs struct, Eip int32
    pkg syscall (linux-386), type PtraceRegs struct, Esi int32
    pkg syscall (linux-386), type PtraceRegs struct, Esp int32
    pkg syscall (linux-386), type PtraceRegs struct, Orig_eax int32
    pkg syscall (linux-386), type PtraceRegs struct, Xcs int32
    pkg syscall (linux-386), type PtraceRegs struct, Xds int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. src/syscall/syscall_linux.go

    }
    
    const (
    	_NT_PRSTATUS = 1
    )
    
    func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regsout))
    	iov.SetLen(int(unsafe.Sizeof(*regsout)))
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    const elfNT_PRSTATUS = 1
    
    func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regsout))
    	iov.SetLen(int(unsafe.Sizeof(*regsout)))
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(elfNT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (linux-arm-cgo), method (*Iovec) SetLen(int)
    pkg syscall (linux-arm-cgo), method (*Msghdr) SetControllen(int)
    pkg syscall (linux-arm-cgo), method (*PtraceRegs) PC() uint64
    pkg syscall (linux-arm-cgo), method (*PtraceRegs) SetPC(uint64)
    pkg syscall (linux-arm-cgo), type Cmsghdr struct
    pkg syscall (linux-arm-cgo), type Cmsghdr struct, Len uint32
    pkg syscall (linux-arm-cgo), type Cmsghdr struct, Level int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top