Searched refs:retval (Results 26 - 50 of 774) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/dialog/samples/
H A Dpause8 retval=$?
H A Dpause-help10 retval=$?
H A Dprgbox8 retval=$?
H A Dprgbox28 retval=$?
H A Drangebox8 retval=$?
H A Drangebox28 retval=$?
H A Drangebox38 retval=$?
H A Drangebox48 retval=$?
H A Dreport-button6 case $retval in
H A Dreport-yesno6 case $retval in
H A Dtimebox-stdout8 retval=$?
H A Dtimebox28 retval=$?
H A Dtimebox2-stdout8 retval=$?
H A Dyesno216 retval=$?
H A Dyesno316 retval=$?
H A Dyesno416 retval=$?
/freebsd-13-stable/sys/x86/isa/
H A Dnmi.c59 int retval = 0; local
67 retval = 1;
72 retval = 1;
81 return(retval);
85 retval = 1;
90 retval = 1;
95 retval = 1;
98 return(retval);
/freebsd-13-stable/lib/libc/stdio/
H A Dfputc.c61 int retval; local
64 retval = fputc_unlocked(c, fp);
66 return (retval);
H A Dgetc.c53 int retval; local
57 retval = __sgetc(fp);
59 return (retval);
H A Dgetchar.c56 int retval; local
60 retval = __sgetc(stdin);
62 return (retval);
H A Dputchar.c56 int retval; local
62 retval = __sputc(c, so);
64 return (retval);
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dstring.h61 void *retval; local
64 retval = malloc(len, M_KMALLOC, M_WAITOK);
65 error = linux_copyin(ptr, retval, len);
67 free(retval, M_KMALLOC);
70 return (retval);
76 char *retval; local
79 retval = malloc(len + 1, M_KMALLOC, M_WAITOK);
80 error = linux_copyin(ptr, retval, len);
82 free(retval, M_KMALLOC);
85 retval[le
103 char *retval; local
118 char *retval; local
[all...]
/freebsd-13-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c49 void *retval; local
52 retval = __xa_erase(xa, index);
55 return (retval);
65 void *retval; local
68 retval = radix_tree_lookup(&xa->root, index);
71 return (retval);
101 int retval; local
113 retval = radix_tree_insert(&xa->root, *pindex, ptr);
115 switch (retval) {
121 retval
138 int retval; local
157 int retval; local
199 int retval; local
218 int retval; local
240 int retval; local
260 int retval; local
286 void *retval; local
340 bool retval; local
359 void *retval; local
384 void *retval; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/write_dirs/
H A Dwrite_dirs_001_pos.ksh56 typeset -i retval=0
68 retval=$?
69 if (( retval == 28 )); then
71 elif (( retval != 0 )); then
72 log_fail "Unexpected exit: $retval"
H A Dwrite_dirs_002_pos.ksh56 typeset -i retval=0
69 retval=$?
70 if (( retval == 28 )); then
72 elif (( retval != 0 )); then
73 log_fail "Unexpected exit: $retval"

Completed in 184 milliseconds

1234567891011>>