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

1234567891011>>

/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_ENOSPC/
H A Dzvol_ENOSPC_001_pos.ksh61 typeset -i retval=0
69 retval=$?
70 if (( $retval != 0 )); then
77 (( $retval != $ENOSPC )) &&
78 log_fail "ENOSPC was not returned, $retval was received instead"
/freebsd-13-stable/tests/sys/cddl/zfs/tests/write_dirs/
H A Dwrite_dirs_001_pos.ksh71 typeset -i retval=0
83 retval=$?
84 if (( retval == 28 )); then
86 elif (( retval != 0 )); then
87 log_fail "Unexpected exit: $retval"
H A Dwrite_dirs_002_pos.ksh71 typeset -i retval=0
84 retval=$?
85 if (( retval == 28 )); then
87 elif (( retval != 0 )); then
88 log_fail "Unexpected exit: $retval"
/freebsd-13-stable/lib/libc/stdio/
H A Dfputs.c56 int retval; local
65 retval = __sfvwrite(fp, &uio);
66 if (retval == 0)
68 return (retval);
74 int retval; local
77 retval = fputs_unlocked(s, fp);
79 return (retval);
H A Dputc.c53 int retval; local
57 retval = __sputc(c, fp);
59 return (retval);
H A Dputw.c51 int retval; local
60 retval = __sfvwrite(fp, &uio);
62 return (retval);
H A Dvscanf.c56 int retval; local
60 retval = __svfscanf(stdin, locale, fmt, ap);
62 return (retval);
H A Dfpurge.c56 int retval; local
60 retval = EOF;
67 retval = 0;
70 return (retval);
H A Dfflush.c57 int retval; local
78 retval = 0;
80 retval = __sflush(fp);
82 return (retval);
92 int retval; local
97 retval = 0;
99 retval = __sflush(fp);
100 return (retval);
/freebsd-13-stable/tools/regression/geom_gpt/
H A Dgctl_test_helper.c41 struct retval { struct
42 struct retval *retval; member in struct:retval
47 static struct retval *retval; variable in typeref:struct:retval
112 struct retval *rv;
138 rv = malloc(sizeof(struct retval));
142 rv->retval = retval;
143 retval
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_002_pos.ksh74 typeset -i retval=0
79 retval=$?
80 if (( $retval != 0 )); then
97 retval=$?
99 if [ $retval -ne 0 ] ; then
107 if [ $retval -ne 4 -a $retval -ne 8 ] ; then
108 log_fail "fsck exited with wrong value $retval"
111 if [ $retval -ne 39 ] ; then
112 log_fail "fsck exited with wrong value $retval"
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Dhcreate.c64 ENTRY *retval; local
72 if (hsearch_r(item, action, &retval, &global_hashtable) == 0)
74 return (retval);
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rename_dirs/
H A Drename_dirs_001_pos.ksh64 typeset -i retval=1
66 retval=$?
67 if (( $retval == 0 )); then
/freebsd-13-stable/tests/sys/cddl/zfs/tests/rename_dirs/
H A Drename_dirs_001_pos.ksh78 typeset -i retval=1
80 retval=$?
81 if (( $retval == 0 )); then
/freebsd-13-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=$?
/freebsd-13-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-13-stable/lib/libpam/modules/pam_unix/
H A Dpam_unix.c95 int retval; local
101 retval = pam_get_user(pamh, &user, NULL);
102 if (retval != PAM_SUCCESS)
103 return (retval);
126 retval = pam_get_authtok(pamh, PAM_AUTHTOK, &pass, prompt);
128 if (retval != PAM_SUCCESS)
129 return (retval);
162 int retval; local
167 retval = pam_get_user(pamh, &user, NULL);
168 if (retval !
285 int pfd, tfd, retval; local
[all...]

Completed in 205 milliseconds

1234567891011>>