Home | History | Annotate | Download | only in sys

Lines Matching defs:path

43 static char	 path[] = "unlink";
59 fd = open(path, O_RDWR | O_CREAT, 0666);
63 ATF_REQUIRE(unlink(path) == 0);
66 ATF_REQUIRE_ERRNO(ENOENT, open(path, O_RDONLY) == -1);
72 (void)unlink(path);
99 (void)unlink(path);
111 ATF_REQUIRE(mkfifo(path, 0666) == 0);
112 ATF_REQUIRE(unlink(path) == 0);
115 ATF_REQUIRE_ERRNO(ENOENT, open(path, O_RDONLY) == -1);
120 (void)unlink(path);
146 (void)unlink(path);