Searched refs:statbuf (Results 1 – 2 of 2) sorted by relevance
| /xnu-12377.61.12/tests/vfs/ |
| H A D | unique.c | 43 struct stat statbuf = {}; variable 109 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling stat() for %s -> Should … 110 T_EXPECT_EQ(statbuf.st_nlink, 1, "Validate nlink equals 1"); 118 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling fstatat() for %s -> Shou… 119 T_EXPECT_EQ(statbuf.st_nlink, 2, "Validate nlink equals 2"); 134 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling fstatat() for %s -> Shou… 135 T_EXPECT_EQ(statbuf.st_nlink, 1, "Validate nlink equals 1"); 153 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling stat() for %s -> Should … 154 T_EXPECT_EQ(statbuf.st_nlink, 1, "Validate nlink equals 1"); 179 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling stat() for %s -> Should … [all …]
|
| H A D | resolve_namespace.c | 200 struct stat statbuf; variable 230 T_EXPECT_POSIX_SUCCESS((stat(path, &statbuf)), "Calling stat() for %s -> Should PASS", path); 235 …T_EXPECT_POSIX_FAILURE((stat(path, &statbuf)), ENOTCAPABLE, "Calling stat() for %s -> Should fail … 239 T_EXPECT_POSIX_SUCCESS((stat(path, &statbuf)), "Calling stat() for %s -> Should PASS", path); 244 …T_EXPECT_POSIX_FAILURE((stat(path, &statbuf)), ENOTCAPABLE, "Calling stat() for %s -> Should fail … 254 struct stat statbuf; variable 267 …T_EXPECT_POSIX_SUCCESS((stat(file_unique, &statbuf)), "Calling stat() for %s -> Should PASS", file… 268 T_EXPECT_EQ(statbuf.st_nlink, 1, "Validate nlink equals 1"); 276 …T_EXPECT_POSIX_SUCCESS((fstatat(testdir_fd, FILE, &statbuf, 0)), "Calling fstatat() for %s -> Shou… 277 T_EXPECT_EQ(statbuf.st_nlink, 2, "Validate nlink equals 2"); [all …]
|