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.c212 int *returnval, int *found_match) in match() argument
225 if (returnval == NULL) in match()
226 returnval = &returnvalv; in match()
261 printed_something, need_separator, firstline, returnval, in match()
272 *returnval = 1; in match()
300 *returnval = 1; in match()
312 *returnval = 1; in match()
374 firstline, returnval, found_match)) { in match()
385 *returnval = 1; in match()
416 *returnval = 1; in match()
[all …]
/freebsd/contrib/file/
H A DChangeLog178 * PR/272: kiefermat: Only set returnval = 1 when we printed something