Home
last modified time | relevance | path

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

/freebsd-12-stable/tests/sys/kern/pipe/
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-stable/usr.sbin/rtadvd/
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()
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-stable/usr.sbin/rtsold/
Drtsold.c545 static struct timespec returnval; in rtsol_check_timer() local
684 returnval.tv_sec = returnval.tv_nsec = 0; in rtsol_check_timer()
686 TS_SUB(&rtsol_timer, &now, &returnval); in rtsol_check_timer()
688 now.tv_sec += returnval.tv_sec; in rtsol_check_timer()
689 now.tv_nsec += returnval.tv_nsec; in rtsol_check_timer()
693 return (&returnval); in rtsol_check_timer()
/freebsd-12-stable/contrib/file/src/
Dsoftmagic.c208 int *printed_something, int *need_separator, int *returnval, in match() argument
224 if (returnval == NULL) in match()
225 returnval = &returnvalv; in match()
260 printed_something, need_separator, returnval, found_match)) in match()
270 *returnval = 1; in match()
298 *returnval = 1; in match()
309 *returnval = 1; in match()
371 returnval, found_match)) { in match()
382 *returnval = 1; in match()
413 *returnval = 1; in match()
[all …]
/freebsd-12-stable/contrib/gdb/gdb/
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()
/freebsd-12-stable/contrib/file/
DChangeLog86 * PR/272: kiefermat: Only set returnval = 1 when we printed something