Home
last modified time | relevance | path

Searched refs:SF_FLAGS (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libc/tests/sys/
H A Dsendfile_test.c360 SF_FLAGS(0, 0)); in fd_positive_file_test()
444 SF_FLAGS(0, 0)); in fd_positive_shm_test()
496 error = sendfile(fd, client_sock, 0, 0, NULL, NULL, SF_FLAGS(0, 0)); in fd_negative_bad_fd_test()
612 SF_FLAGS(testcases[i].readahead_pages, testcases[i].flags)); in flags_test()
740 NULL, SF_FLAGS(0, 0)); in hdtr_positive_test()
809 error = sendfile(fd, client_sock, 0, 0, hdtr1, NULL, SF_FLAGS(0, 0)); in hdtr_negative_bad_pointers_test()
812 error = sendfile(fd, client_sock, 0, 0, &hdtr2, NULL, SF_FLAGS(0, 0)); in hdtr_negative_bad_pointers_test()
815 error = sendfile(fd, client_sock, 0, 0, &hdtr3, NULL, SF_FLAGS(0, 0)); in hdtr_negative_bad_pointers_test()
865 error = sendfile(fd, client_sock, -1, 0, NULL, NULL, SF_FLAGS(0, 0)); in offset_negative_value_less_than_zero_test()
918 error = sendfile(fd, client_sock, 0, 0, NULL, &sbytes, SF_FLAGS(0, 0)); in sbytes_positive_test()
[all …]
/freebsd/sys/sys/
H A Dsocket.h663 #define SF_FLAGS(rh, flags) (((rh) << 16) | (flags)) macro