Symbol: check_file
tests/fs/lfs/t_fcntl.c
186
if (check_file(UNCHANGED_CONTROL, filesize, 3) != 0)
tests/fs/lfs/t_resize.c
153
if (check_file(UNCHANGED_CONTROL, CHUNKSIZE, 0) != 0)
tests/fs/lfs/t_rfw.c
199
if (check_file(UNCHANGED_CONTROL, CHUNKSIZE, 3) != 0)
tests/fs/lfs/t_rfw.c
207
if (check_file(TO_BE_APPENDED, 2 * CHUNKSIZE, 5) != 0)
tests/fs/lfs/t_rfw.c
213
if (check_file(NEWLY_CREATED, CHUNKSIZE, 6) != 0)
tests/fs/lfs/util.h
10
int check_file(const char *, int, unsigned int);
tests/lib/libcurses/director/testlang_parse.y
1012
cur_file, line, check_file, offs,
tests/lib/libcurses/director/testlang_parse.y
1057
excess(check_file, 0, __func__, "", drain,
tests/lib/libcurses/director/testlang_parse.y
898
char check_file[PATH_MAX], drain[100], ref, data;
tests/lib/libcurses/director/testlang_parse.y
909
if (strlcpy(check_file, check_path, sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
910
>= sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
913
if (strlcat(check_file, "/", sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
914
>= sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
917
check_file[0] = '\0';
tests/lib/libcurses/director/testlang_parse.y
920
if (strlcat(check_file, filename, sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
921
>= sizeof(check_file))
tests/lib/libcurses/director/testlang_parse.y
928
else if ((check_fd = open(check_file, O_RDONLY, 0)) < 0) {
tests/lib/libcurses/director/testlang_parse.y
933
cur_file, line, check_file);
tests/lib/libcurses/director/testlang_parse.y
937
check_fd = open(check_file, O_WRONLY | O_CREAT, 0644);
tests/lib/libcurses/director/testlang_parse.y
940
cur_file, line, check_file);
tests/lib/libcurses/director/testlang_parse.y
965
check_file);
tests/lib/libcurses/director/testlang_parse.y
991
err(2, "Bad write on file %s", check_file);