Searched refs:EEXIST (Results 1 - 22 of 22) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/temp/
H A Dmkdtemp.c21 } while (--retries && errno == EEXIST);
H A Dmktemp.c30 errno = EEXIST;
H A Dmkostemps.c23 } while (--retries && errno == EEXIST);
/fuchsia/zircon/system/utest/namespace/
H A Dnamespace-test.c35 ASSERT_TRUE(mkdir("/tmp/fake-namespace-test", 066) == 0 || errno == EEXIST, ""); local
36 ASSERT_TRUE(mkdir("/tmp/fake-namespace-test/dev", 066) == 0 || errno == EEXIST, ""); local
37 ASSERT_TRUE(mkdir("/tmp/fake-namespace-test-tmp", 066) == 0 || errno == EEXIST, ""); local
/fuchsia/zircon/system/utest/fs/
H A Dtest-threading.cpp98 } else if (errno == EEXIST) {
122 } else if (errno == EEXIST) {
176 } else if (errno == ENOTEMPTY || errno == EEXIST) {
233 } else if (errno == EEXIST) {
H A Dtest-random-op.c186 // errno may be one of EEXIST
187 if (errno != EEXIST) {
210 // errno may be one of EEXIST
211 if (errno != EEXIST) {
264 // errno may be one of EEXIST, ENOENT
265 if (errno != ENOENT && errno != EEXIST) {
324 // errno may be one of EEXIST, ENOENT, ENOTDIR
356 // errno may be one of EEXIST, ENOENT, ENOTDIR
357 if (errno != EEXIST && errno != ENOENT && errno != ENOTDIR) {
372 // errno may be one of ENOENT, EISDIR, ENOTDIR, EEXIST
[all...]
H A Dtest-link.c308 ASSERT_EQ(errno, EEXIST, "");
316 ASSERT_EQ(errno, EEXIST, "");
319 ASSERT_EQ(errno, EEXIST, "");
H A Dfilesystems.cpp67 if ((r < 0) && errno != EEXIST) {
/fuchsia/zircon/kernel/lib/libc/include/
H A Derrno.h34 #define EEXIST 17 /* File exists */ macro
/fuchsia/zircon/third_party/ulib/musl/include/bits/
H A Derrno.h17 #define EEXIST 17 macro
/fuchsia/zircon/third_party/ulib/musl/src/errno/
H A D__strerror.h16 E(EEXIST, "File exists")
/fuchsia/zircon/system/ulib/runtests-utils/
H A Druntests-utils.cpp73 if (mkdir(dir, 0755) && errno != EEXIST) {
79 if (mkdir(dir, 0755) && errno != EEXIST) {
H A Dfuchsia-run-test.cpp364 if (mkdirat(data_sink_dir_fd.get(), data.sink_name.c_str(), 0777) != 0 && errno != EEXIST) {
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dredir.c197 errno = EEXIST;
201 errno = EEXIST;
/fuchsia/zircon/third_party/uapp/dash/src/bltin/
H A Dzircon.c356 if (mkdir(dir, 0755) && errno != EEXIST) {
364 if (mkdir(dir, 0755) && !(parents && errno == EEXIST)) {
/fuchsia/zircon/system/host/fidl/compiler/
H A Dmain.cpp117 if (mkdir(path.data(), 0755) != 0 && errno != EEXIST) {
/fuchsia/zircon/third_party/lib/acpica/source/tools/acpisrc/
H A Dasfile.c189 if (errno != EEXIST)
/fuchsia/zircon/system/host/minfs/
H A Dmain.cpp121 if (DirWrapper::Make(path, 0777) && errno != EEXIST) {
/fuchsia/zircon/system/ulib/minfs/
H A Dhost.cpp79 return EEXIST;
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp301 if (errno != EEXIST) {
/fuchsia/zircon/system/ulib/fdio/
H A Dunistd.c855 case ZX_ERR_ALREADY_EXISTS: return EEXIST;
/fuchsia/zircon/system/utest/blobfs/
H A Dblobfs.cpp222 ASSERT_TRUE(mkdir(MOUNT_PATH, 0755) == 0 || errno == EEXIST,

Completed in 226 milliseconds