Searched refs:retval (Results 51 - 75 of 869) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/stdio/
H A Dvscanf.c54 int retval; local
58 retval = __svfscanf(stdin, locale, fmt, ap);
60 return (retval);
H A Dputc.c51 int retval; local
55 retval = __sputc(c, fp);
57 return (retval);
H A Dputw.c49 int retval; local
58 retval = __sfvwrite(fp, &uio);
60 return (retval);
H A Dfpurge.c54 int retval; local
58 retval = EOF;
65 retval = 0;
68 return (retval);
/freebsd-11-stable/contrib/dialog/samples/
H A Dmsgbox4-8bit20 retval=$?
22 case $retval in
H A Dmsgbox4-utf826 retval=$?
28 case $retval in
H A Dbuildlist18 retval=$?
H A Dcalendar38 retval=$?
H A Dcalendar3-stdout7 retval=$?
H A Dchecklist911 retval=$?
H A Dfselect-stdout7 retval=$?
H A Dfselect2-stdout7 retval=$?
H A Dinputbox18 retval=$?
H A Dinputbox-both20 retval=$?
H A Dinputbox-extra19 retval=$?
H A Dinputbox-help19 retval=$?
H A Dinputbox121 retval=$?
H A Dinputbox218 retval=$?
H A Dinputbox319 retval=$?
H A Dinputbox519 retval=$?
H A Dinputbox6-utf816 retval=$?
H A Dmenubox25 retval=$?
/freebsd-11-stable/sys/pc98/cbus/
H A Dnmi.c54 int retval = 0; local
60 retval = 1;
63 retval = 1;
68 return(retval);
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Doverflow.h55 size_t retval; local
57 if (__builtin_mul_overflow(x, y, &retval))
58 retval = SIZE_MAX;
59 return (retval);
/freebsd-11-stable/lib/libpam/modules/pam_unix/
H A Dpam_unix.c93 int retval; local
99 retval = pam_get_user(pamh, &user, NULL);
100 if (retval != PAM_SUCCESS)
101 return (retval);
124 retval = pam_get_authtok(pamh, PAM_AUTHTOK, &pass, prompt);
126 if (retval != PAM_SUCCESS)
127 return (retval);
160 int retval; local
165 retval = pam_get_user(pamh, &user, NULL);
166 if (retval !
283 int pfd, tfd, retval; local
[all...]

Completed in 207 milliseconds

1234567891011>>