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

1234567891011>>

/freebsd-11-stable/contrib/dialog/samples/
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-11-stable/sys/x86/isa/
H A Dnmi.c63 int retval = 0; local
75 retval = 1;
80 retval = 1;
89 return(retval);
93 retval = 1;
98 retval = 1;
103 retval = 1;
106 return(retval);
/freebsd-11-stable/lib/libc/gen/
H A Disatty.c42 int retval; local
45 retval = (tcgetattr(fd, &t) != -1);
46 return(retval);
/freebsd-11-stable/lib/libc/stdio/
H A Dgetc.c51 int retval; local
55 retval = __sgetc(fp);
57 return (retval);
H A Dgetchar.c54 int retval; local
58 retval = __sgetc(stdin);
60 return (retval);
H A Dputchar.c54 int retval; local
60 retval = __sputc(c, so);
62 return (retval);
H A Dfputc.c59 int retval; local
62 retval = fputc_unlocked(c, fp);
64 return (retval);
H A Dfputs.c54 int retval; local
63 retval = __sfvwrite(fp, &uio);
64 if (retval == 0)
66 return (retval);
72 int retval; local
75 retval = fputs_unlocked(s, fp);
77 return (retval);
/freebsd-11-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-11-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-11-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-11-stable/lib/libc/stdlib/
H A Dhcreate.c62 ENTRY *retval; local
70 if (hsearch_r(item, action, &retval, &global_hashtable) == 0)
72 return (retval);

Completed in 109 milliseconds

1234567891011>>