Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PtracePeekData (0.13 sec)

  1. src/syscall/syscall_aix.go

    		n += bsize
    		out = out[n:]
    	}
    	return n, nil
    }
    
    func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(pid, addr, out)
    }
    
    func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(pid, addr, out)
    }
    
    func ptracePoke(pid int, addr uintptr, data []byte) (count int, err error) {
    	n := 0
    	for len(data) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    		out = out[copied:]
    	}
    
    	return n, nil
    }
    
    func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(PTRACE_PEEKTEXT, pid, addr, out)
    }
    
    func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(PTRACE_PEEKDATA, pid, addr, out)
    }
    
    func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []byte) (count int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top