Home
last modified time | relevance | path

Searched refs:argp (Results 1 – 7 of 7) sorted by relevance

/busybox-1.35.0/coreutils/
Dchmod.c110 char *arg, **argp; in chmod_main() local
115 argp = argv; in chmod_main()
116 while ((arg = *++argp)) { in chmod_main()
/busybox-1.35.0/libbb/
Dxfuncs_printf.c546 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/
Dwget.c700 char **argp; in spawn_https_helper_openssl() local
723 argp = &argv[5]; in spawn_https_helper_openssl()
725 *argp++ = (char*)"-servername"; //[5] in spawn_https_helper_openssl()
726 *argp++ = (char*)servername; //[6] in spawn_https_helper_openssl()
730 *argp++ = (char*)"-verify"; //[7] in spawn_https_helper_openssl()
731 *argp++ = (char*)"100"; //[8] in spawn_https_helper_openssl()
732 *argp++ = (char*)"-verify_return_error"; //[9] in spawn_https_helper_openssl()
734 *argp++ = (char*)"-verify_hostname"; //[10] in spawn_https_helper_openssl()
735 *argp++ = (char*)servername; //[11] in spawn_https_helper_openssl()
737 *argp++ = (char*)"-verify_ip"; //[10] in spawn_https_helper_openssl()
[all …]
/busybox-1.35.0/include/
Dlibbb.h1813 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/shell/
Dash.c8807 union node *argp; in fill_arglist() local
8809 while ((argp = *argpp) != NULL) { in fill_arglist()
8810 expandarg(argp, arglist, EXP_FULL | EXP_TILDE); in fill_arglist()
8811 *argpp = argp->narg.next; in fill_arglist()
9486 union node *argp; in evalfor() local
9494 for (argp = n->nfor.args; argp; argp = argp->narg.next) { in evalfor()
9495 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE); in evalfor()
10292 union node *argp; in evalcommand() local
10336 argp = cmd->ncmd.args; in evalcommand()
10337 osp = fill_arglist(&arglist, &argp); in evalcommand()
[all …]
/busybox-1.35.0/editors/
Dvi.c3136 char *argp, *argn, oldch; in colon()
3160 argp = args; in colon()
3161 while (*argp) { in colon()
3163 if (argp[0] == 'n' && argp[1] == 'o') // "noXXX" in colon()
3165 argn = skip_non_whitespace(argp); in colon()
3168 setops(argp, i); in colon()
3170 argp = skip_whitespace(argn); in colon()
/busybox-1.35.0/miscutils/
Dhdparm.c534 static void print_value_on_off(const char *str, unsigned long argp) in print_value_on_off() argument
536 printf(" %s\t= %2lu", str, argp); in print_value_on_off()
537 on_off(argp != 0); in print_value_on_off()