Home
last modified time | relevance | path

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

/freebsd-13.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-13.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-13.1/usr.sbin/rtsold/
H A Drtsold.c549 static struct timespec returnval; in rtsol_check_timer() local
688 returnval.tv_sec = returnval.tv_nsec = 0; in rtsol_check_timer()
690 TS_SUB(&rtsol_timer, &now, &returnval); in rtsol_check_timer()
692 now.tv_sec += returnval.tv_sec; in rtsol_check_timer()
693 now.tv_nsec += returnval.tv_nsec; in rtsol_check_timer()
697 return (&returnval); in rtsol_check_timer()
/freebsd-13.1/contrib/file/src/
H A Dsoftmagic.c212 if (returnval == NULL) in match()
213 returnval = &returnvalv; in match()
257 *returnval = 1; in match()
285 *returnval = 1; in match()
296 *returnval = 1; in match()
357 returnval, found_match)) { in match()
368 *returnval = 1; in match()
399 *returnval = 1; in match()
406 *returnval = 1; in match()
461 return *returnval; in match()
[all …]
/freebsd-13.1/contrib/file/
H A DChangeLog20 * PR/272: kiefermat: Only set returnval = 1 when we printed something