/busybox-1.35.0/libbb/ |
D | xfuncs_printf.c | 546 int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) in ioctl_or_perror_and_die() argument 551 ret = ioctl(fd, request, argp); in ioctl_or_perror_and_die() 562 int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) in ioctl_or_perror() argument 565 int ret = ioctl(fd, request, argp); in ioctl_or_perror() 576 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name) in bb_ioctl_or_warn() argument 580 ret = ioctl(fd, request, argp); in bb_ioctl_or_warn() 585 int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name) in bb_xioctl() argument 589 ret = ioctl(fd, request, argp); in bb_xioctl() 595 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp) in bb_ioctl_or_warn() argument 599 ret = ioctl(fd, request, argp); in bb_ioctl_or_warn() [all …]
|
/busybox-1.35.0/networking/ |
D | ifenslave.c | 178 static int ioctl_on_skfd(unsigned request, struct ifreq *ifr) in ioctl_on_skfd() argument 180 return ioctl(skfd, request, ifr); in ioctl_on_skfd() 183 static int set_ifrname_and_do_ioctl(unsigned request, struct ifreq *ifr, const char *ifname) in set_ifrname_and_do_ioctl() argument 186 return ioctl_on_skfd(request, ifr); in set_ifrname_and_do_ioctl()
|
D | ifplugd.c | 172 static int network_ioctl(int request, void* data, const char *errmsg) in network_ioctl() argument 174 int r = ioctl(ioctl_fd, request, data); in network_ioctl()
|
D | httpd.c | 1547 const char *request, 1552 const char *request, in send_cgi_and_exit() argument 1585 setenv1("REQUEST_METHOD", request); in send_cgi_and_exit()
|
/busybox-1.35.0/include/ |
D | libbb.h | 1813 int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((form… 1814 int ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) __attribute_… 1816 int bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC; 1817 int bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC; 1818 #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp,#request) argument 1819 #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp,#request) argument 1821 int bb_ioctl_or_warn(int fd, unsigned request, void *argp) FAST_FUNC; 1822 int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC; 1823 #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp) argument 1824 #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp) argument
|
/busybox-1.35.0/docs/ |
D | mdev.txt | 123 Some kernel device drivers need to request firmware at runtime in order to
|
/busybox-1.35.0/modutils/ |
D | Config.src | 120 support request.
|
/busybox-1.35.0/examples/var_service/ |
D | README | 19 starting and stopping the important process on request, and re-starting
|