Home
last modified time | relevance | path

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

/freebsd/tests/sys/kern/pipe/
H A Dpipe_overcommit2_test.c47 int lastfd, pipes[10000], returnval; in main() local
56 returnval = open(template, O_RDONLY); in main()
57 if (returnval == -1 && (errno == ENFILE || errno == EMFILE)) in main()
60 lastfd = returnval; in main()
65 returnval = pipe(&pipes[i]); in main()
75 returnval = pipe(&pipes[i]); in main()
/freebsd/usr.sbin/rtadvd/
H A Dtimer_subr.c47 static struct timespec returnval, now; in rtadvd_timer_rest() local
54 returnval.tv_sec = returnval.tv_nsec = 0; in rtadvd_timer_rest()
57 TS_SUB(&rat->rat_tm, &now, &returnval); in rtadvd_timer_rest()
59 return (&returnval); in rtadvd_timer_rest()
H A Dtimer.c156 static struct timespec returnval; in rtadvd_check_timer() local
178 returnval.tv_sec = returnval.tv_nsec = 0; in rtadvd_check_timer()
180 TS_SUB(&tm_max, &now, &returnval); in rtadvd_check_timer()
181 return (&returnval); in rtadvd_check_timer()
/freebsd/usr.sbin/rtsold/
H A Drtsold.c552 static struct timespec returnval; in rtsol_check_timer() local
692 returnval.tv_sec = returnval.tv_nsec = 0; in rtsol_check_timer()
694 TS_SUB(&rtsol_timer, &now, &returnval); in rtsol_check_timer()
696 now.tv_sec += returnval.tv_sec; in rtsol_check_timer()
697 now.tv_nsec += returnval.tv_nsec; in rtsol_check_timer()
701 return (&returnval); in rtsol_check_timer()
/freebsd/contrib/file/src/
H A Dsoftmagic.c221 int *returnval, int *found_match) in match() argument
235 if (returnval == NULL) in match()
236 returnval = &returnvalv; in match()
275 printed_something, need_separator, firstline, returnval, in match()
286 *returnval = 1; in match()
314 *returnval = 1; in match()
326 *returnval = 1; in match()
393 firstline, returnval, found_match)) { in match()
404 *returnval = 1; in match()
435 *returnval = 1; in match()
[all …]
/freebsd/contrib/file/
H A DChangeLog237 * PR/272: kiefermat: Only set returnval = 1 when we printed something