Home
last modified time | relevance | path

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

/xnu-8796.141.3/tests/
H A Dxnu_quick_test_helpers.c67 int my_fd = -1; in create_random_name() local
85 my_fd = open( the_pathp, (O_RDWR | O_CREAT | O_EXCL), in create_random_name()
87 T_EXPECT_TRUE((my_fd != -1 || errno == EEXIST), "open file with name %s", the_pathp); in create_random_name()
107 if (my_fd != -1) { in create_random_name()
108 close( my_fd ); in create_random_name()
111 if (do_open && my_fd == -1) { in create_random_name()
H A Dxnu_quick_test.c23 int my_fd = -1; variable
47 T_EXPECT_NE(my_fd = syscall( SYS_open, my_pathp, (O_RDWR | O_EXCL), 0 ),
50 if (my_fd != -1) {
51 close(my_fd);