Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 239 for setlkw (0.16 sec)

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

    func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_mips64x.go

    func (r *PtraceRegs) SetPC(pc uint64) { r.Regs[64] = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go

    func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm.go

    func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    func (r *PtraceRegs) SetPC(era uint64) { r.Era = era }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix.go

    func UnixRights(fds ...int) []byte {
    	datalen := len(fds) * 4
    	b := make([]byte, CmsgSpace(datalen))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_SOCKET
    	h.Type = SCM_RIGHTS
    	h.SetLen(CmsgLen(datalen))
    	for i, fd := range fds {
    		*(*int32)(h.data(4 * uintptr(i))) = int32(fd)
    	}
    	return b
    }
    
    // ParseUnixRights decodes a socket control message that contains an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/runtime/defs_plan9_386.go

    func (c *sigctxt) lr() uintptr { return uintptr(0) }
    
    func (c *sigctxt) setpc(x uintptr) { c.u.pc = uint32(x) }
    func (c *sigctxt) setsp(x uintptr) { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr) {}
    
    func (c *sigctxt) savelr(x uintptr) {}
    
    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. src/syscall/sockcmsg_unix.go

    func UnixRights(fds ...int) []byte {
    	datalen := len(fds) * 4
    	b := make([]byte, CmsgSpace(datalen))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_SOCKET
    	h.Type = SCM_RIGHTS
    	h.SetLen(CmsgLen(datalen))
    	for i, fd := range fds {
    		*(*int32)(h.data(4 * uintptr(i))) = int32(fd)
    	}
    	return b
    }
    
    // ParseUnixRights decodes a socket control message that contains an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_386.s

    #define USEABLE 0x40
    
    // `-1` means the kernel will pick a TLS entry on the first setldt call,
    // which happens during runtime init, and that we'll store back the saved
    // entry and reuse that on subsequent calls when creating new threads.
    DATA  runtimeĀ·tls_entry_number+0(SB)/4, $-1
    GLOBL runtimeĀ·tls_entry_number(SB), NOPTR, $4
    
    // setldt(int entry, int address, int limit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_mipsx.go

    func (r *PtraceRegs) SetPC(pc uint64) { r.Regs[64] = uint32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top