Searched refs:arginfo (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/include/
H A Dprintf.h39 * they offer only one argument to the arginfo function, but do accept
122 int register_printf_function(int spec, printf_function *render, printf_arginfo_function *arginfo);
125 int register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo);
/freebsd-10.0-release/lib/libc/stdio/
H A Dxprintf.c235 printf_arginfo_function *arginfo; member in struct:__anon5506
437 if (printf_tbl[pi->spec].arginfo == NULL)
438 errx(1, "arginfo[%c] = NULL", pi->spec);
439 ch = printf_tbl[pi->spec].arginfo(
630 register_printf_function(int spec, printf_function *render, printf_arginfo_function *arginfo) argument
636 printf_tbl[spec].arginfo = arginfo;
642 register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo) argument
648 printf_tbl[spec].arginfo = arginfo;
[all...]
/freebsd-10.0-release/sys/amd64/linux32/
H A Dlinux32_sysvec.c250 struct linux32_ps_strings *arginfo; local
252 arginfo = (struct linux32_ps_strings *)LINUX32_PS_STRINGS;
253 uplatform = (Elf32_Addr *)((caddr_t)arginfo - linux_szplatform);
864 struct linux32_ps_strings *arginfo; local
870 arginfo = (struct linux32_ps_strings *)LINUX32_PS_STRINGS;
871 destp = (caddr_t)arginfo - SPARE_USRSPACE - linux_szplatform -
878 copyout(linux_platform, ((caddr_t)arginfo - linux_szplatform),
925 suword32(&arginfo->ps_argvstr, (uint32_t)(intptr_t)vectp);
926 suword32(&arginfo->ps_nargvstr, argc);
941 suword32(&arginfo
[all...]
/freebsd-10.0-release/sys/i386/linux/
H A Dlinux_sysvec.c245 struct ps_strings *arginfo; local
252 arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
253 uplatform = (Elf32_Addr *)((caddr_t)arginfo - linux_szplatform);
304 struct ps_strings *arginfo; local
312 arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
313 destp = (caddr_t)arginfo - SPARE_USRSPACE - linux_szplatform -
319 copyout(linux_platform, ((caddr_t)arginfo - linux_szplatform),
366 suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
367 suword(&arginfo->ps_nargvstr, argc);
382 suword(&arginfo
[all...]
/freebsd-10.0-release/sys/kern/
H A Dkern_exec.c1246 struct ps_strings *arginfo; local
1263 arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
1268 destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE -
1278 copyout(p->p_sysent->sv_sigcode, ((caddr_t)arginfo -
1285 imgp->execpathp = (uintptr_t)arginfo - szsigcode - execpath_len;
1294 imgp->canary = (uintptr_t)arginfo - szsigcode - execpath_len -
1302 imgp->pagesizes = (uintptr_t)arginfo - szsigcode - execpath_len -
1352 suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
1353 suword32(&arginfo->ps_nargvstr, argc);
1368 suword(&arginfo
[all...]
/freebsd-10.0-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2795 struct freebsd32_ps_strings *arginfo; local
2809 arginfo = (struct freebsd32_ps_strings *)curproc->p_sysent->
2815 destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE -
2826 ((caddr_t)arginfo - szsigcode), szsigcode);
2832 imgp->execpathp = (uintptr_t)arginfo - szsigcode - execpath_len;
2841 imgp->canary = (uintptr_t)arginfo - szsigcode - execpath_len -
2851 imgp->pagesizes = (uintptr_t)arginfo - szsigcode - execpath_len -
2899 suword32(&arginfo->ps_argvstr, (u_int32_t)(intptr_t)vectp);
2900 suword32(&arginfo->ps_nargvstr, argc);
2915 suword32(&arginfo
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dgcc.c1260 const char *arginfo = option_map[j].arg_info;
1262 if (arginfo == 0)
1263 arginfo = "";
1292 else if (strchr (arginfo, '*') != 0)
1301 else if (strchr (arginfo, '*') != 0)
1308 if (strchr (arginfo, 'a') != 0)
1322 else if (strchr (arginfo, '*') != 0)
1324 else if (strchr (arginfo, 'o') == 0)
1333 if (arg != 0 && strchr (arginfo, 'j') != 0)
1255 const char *arginfo = option_map[j].arg_info; local

Completed in 148 milliseconds