Searched refs:EEXIST (Results 1 – 10 of 10) sorted by relevance
105 static final int EEXIST = OsConstants.EEXIST; field in UnixConstants
87 if (errno() == UnixConstants.EEXIST) in translateToIOException()
209 throw new UnixException(EEXIST); in open()262 x.setError(EEXIST); in open()
442 (x.errno() == EEXIST || x.errno() == ENOTEMPTY)) in move()495 (x.errno() == EEXIST || x.errno() == ENOTEMPTY)) in move()561 (x.errno() == EEXIST || x.errno() == ENOTEMPTY)) in copy()
219 if (x.errno() == EEXIST || x.errno() == ENOTEMPTY) { in implDelete()
241 (x.errno() == EEXIST || x.errno() == ENOTEMPTY)) in implDelete()
202 public static final int EEXIST = placeholder(); field in OsConstants862 if (errno == EEXIST) { in errnoName()
271 if (errno != EEXIST) in Java_java_io_UnixFileSystem_createFileExclusively0()
156 initConstant(env, c, "EEXIST", EEXIST); in OsConstants_initConstants()
778 assertEquals(OsConstants.EEXIST, e.errno); in test_xattr()