Home
last modified time | relevance | path

Searched refs:returnval (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/tests/sys/kern/pipe/
H A Dpipe_overcommit2_test.c48 int lastfd, pipes[10000], returnval; in main() local
57 returnval = open(template, O_RDONLY); in main()
58 if (returnval == -1 && (errno == ENFILE || errno == EMFILE)) in main()
61 lastfd = returnval; in main()
66 returnval = pipe(&pipes[i]); in main()
76 returnval = pipe(&pipes[i]); in main()
/freebsd-12.1/usr.sbin/rtadvd/
H A Dtimer_subr.c48 static struct timespec returnval, now; in rtadvd_timer_rest() local
55 returnval.tv_sec = returnval.tv_nsec = 0; in rtadvd_timer_rest()
58 TS_SUB(&rat->rat_tm, &now, &returnval); in rtadvd_timer_rest()
60 return (&returnval); in rtadvd_timer_rest()
H A Dtimer.c159 static struct timespec returnval; in rtadvd_check_timer() local
181 returnval.tv_sec = returnval.tv_nsec = 0; in rtadvd_check_timer()
183 TS_SUB(&tm_max, &now, &returnval); in rtadvd_check_timer()
184 return (&returnval); in rtadvd_check_timer()
/freebsd-12.1/usr.sbin/rtsold/
H A Drtsold.c499 static struct timespec returnval; in rtsol_check_timer() local
631 returnval.tv_sec = returnval.tv_nsec = 0; in rtsol_check_timer()
633 TS_SUB(&rtsol_timer, &now, &returnval); in rtsol_check_timer()
635 now.tv_sec += returnval.tv_sec; in rtsol_check_timer()
636 now.tv_nsec += returnval.tv_nsec; in rtsol_check_timer()
640 return (&returnval); in rtsol_check_timer()
/freebsd-12.1/contrib/file/src/
H A Dsoftmagic.c179 if (returnval == NULL) in match()
180 returnval = &returnvalv; in match()
211 printed_something, need_separator, returnval)) { in match()
219 *returnval = 1; in match()
244 *returnval = 1; in match()
305 returnval)) { in match()
315 *returnval = 1; in match()
344 *returnval = 1; in match()
404 *returnval = 1; in match()
407 return *returnval; /* don't keep searching */ in match()
[all …]
/freebsd-12.1/contrib/gdb/gdb/
H A Dsymtab.c931 struct symbol *returnval; in lookup_symbol() local
961 returnval = lookup_symbol_aux (modified_name, mangled_name, block, in lookup_symbol()
966 return returnval; in lookup_symbol()