Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PtraceSetOptions (0.4 sec)

  1. src/syscall/syscall_linux.go

    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    	iov.SetLen(int(unsafe.Sizeof(*regs)))
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
    }
    
    func PtraceGetEventMsg(pid int) (msg uint, err error) {
    	var data _C_long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    	iov.SetLen(int(unsafe.Sizeof(*regs)))
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(elfNT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
    }
    
    func PtraceGetEventMsg(pid int) (msg uint, err error) {
    	var data _C_long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), func PtracePokeData(int, uintptr, []uint8) (int, error)
    pkg syscall (linux-386), func PtracePokeText(int, uintptr, []uint8) (int, error)
    pkg syscall (linux-386), func PtraceSetOptions(int, int) error
    pkg syscall (linux-386), func PtraceSetRegs(int, *PtraceRegs) error
    pkg syscall (linux-386), func PtraceSingleStep(int) error
    pkg syscall (linux-386), func Pwrite(int, []uint8, int64) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PtraceRegs.Xcs", Field, 0},
    		{"PtraceRegs.Xds", Field, 0},
    		{"PtraceRegs.Xes", Field, 0},
    		{"PtraceRegs.Xfs", Field, 0},
    		{"PtraceRegs.Xgs", Field, 0},
    		{"PtraceRegs.Xss", Field, 0},
    		{"PtraceSetOptions", Func, 0},
    		{"PtraceSetRegs", Func, 0},
    		{"PtraceSingleStep", Func, 0},
    		{"PtraceSyscall", Func, 1},
    		{"Pwrite", Func, 0},
    		{"REG_BINARY", Const, 0},
    		{"REG_DWORD", Const, 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)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error)
    pkg syscall (linux-arm-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error)
    pkg syscall (linux-arm-cgo), func PtraceSetOptions(int, int) error
    pkg syscall (linux-arm-cgo), func PtraceSetRegs(int, *PtraceRegs) error
    pkg syscall (linux-arm-cgo), func PtraceSingleStep(int) error
    pkg syscall (linux-arm-cgo), func PtraceSyscall(int, int) error
    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