Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for ioctl (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/select.h>
    #include <sys/socket.h>
    #include <sys/sockio.h>
    #include <sys/stat.h>
    #include <sys/sysctl.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/wait.h>
    #include <sys/ioctl.h>
    #include <net/bpf.h>
    #include <net/if.h>
    #include <net/if_clone.h>
    #include <net/if_types.h>
    #include <net/route.h>
    #include <netinet/in.h>
    #include <termios.h>
    #include <netinet/ip.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_execve execve "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fork fork "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgid setgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/address.go

    	var as []Addr
    	for _, ll := range lls {
    		var lifr lifreq
    		for i := 0; i < len(ll.Name); i++ {
    			lifr.Name[i] = int8(ll.Name[i])
    		}
    		for _, ep := range eps {
    			ioc := int64(syscall.SIOCGLIFADDR)
    			err := ioctl(ep.s, uintptr(ioc), unsafe.Pointer(&lifr))
    			if err != nil {
    				continue
    			}
    			sa := (*sockaddrStorage)(unsafe.Pointer(&lifr.Lifru[0]))
    			l := int(nativeEndian.Uint32(lifr.Lifru1[:4]))
    			if l == 0 {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    }
    
    // IoctlGetIfreqMTU performs the SIOCGIFMTU ioctl operation on fd to get the MTU
    // of the network device specified by ifname.
    func IoctlGetIfreqMTU(fd int, ifname string) (*IfreqMTU, error) {
    	var ifreq IfreqMTU
    	copy(ifreq.Name[:], ifname)
    	err := ioctlPtr(fd, SIOCGIFMTU, unsafe.Pointer(&ifreq))
    	return &ifreq, err
    }
    
    // IoctlSetIfreqMTU performs the SIOCSIFMTU ioctl operation on fd to set the MTU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func Minor(dev uint64) uint32 {
    	return uint32(__minor(NEWDEV, dev))
    }
    
    /*
     * Expose the ioctl function
     */
    
    //sys	ioctlRet(fd int, req int, arg uintptr) (ret int, err error) = libc.ioctl
    //sys	ioctlPtrRet(fd int, req int, arg unsafe.Pointer) (ret int, err error) = libc.ioctl
    
    func ioctl(fd int, req int, arg uintptr) (err error) {
    	_, err = ioctlRet(fd, req, arg)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    func (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    //sys	ioctl(fd int, req int, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) = ioctl
    
    // fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
    // There is no way to create a custom fcntl and to keep //sys fcntl easily,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    func ioctl(fd int, req int, arg uintptr) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.int(req), C.uintptr_t(uintptr(arg)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return InotifyInit1(0)
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error) = SYS_IOCTL
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    // ioctl itself should not be exposed directly, but additional get/set functions
    // for specific types are permissible. These are defined in ioctl.go and
    // ioctl_linux.go.
    //
    // The third argument to ioctl is often a pointer but sometimes an integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    func callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callioctl_ptr(fd int, req int, arg unsafe.Pointer) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.ioctl(C.int(fd), C.int(req), C.uintptr_t(uintptr(arg))))
    	e1 = syscall.GetErrno()
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	TCSAFLUSH                       = 2
    	TCSETSF                         = 2 // equivalent to TCSAFLUSH for tcsetattr
    	TCGETS                          = 3 // not defined in ioctl.h -- zos golang only
    	TCIFLUSH                        = 0
    	TCOFLUSH                        = 1
    	TCIOFLUSH                       = 2
    	TCOOFF                          = 0
    	TCOON                           = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top