Home
last modified time | relevance | path

Searched refs:UnixException (Results 1 – 18 of 18) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixNativeDispatcher.java63 static native int dup(int filedes) throws UnixException; in dup()
68 static int open(UnixPath path, int flags, int mode) throws UnixException { in open()
77 throws UnixException; in open0()
82 static int openat(int dfd, byte[] path, int flags, int mode) throws UnixException { in openat()
91 throws UnixException; in openat0()
101 static long fopen(UnixPath filename, String mode) throws UnixException { in fopen()
112 throws UnixException; in fopen0()
117 static native void fclose(long stream) throws UnixException; in fclose()
122 static void link(UnixPath existing, UnixPath newfile) throws UnixException { in link()
133 throws UnixException; in link0()
[all …]
DLinuxNativeDispatcher.java41 static long setmntent(byte[] filename, byte[] type) throws UnixException { in setmntent()
52 throws UnixException; in setmntent0()
58 throws UnixException; in getmntent()
63 static native void endmntent(long stream) throws UnixException; in endmntent()
69 int valueLen) throws UnixException in fgetxattr()
80 long valueAdddress, int valueLen) throws UnixException; in fgetxattr0()
86 int valueLen) throws UnixException in fsetxattr()
97 long valueAdddress, int valueLen) throws UnixException; in fsetxattr0()
102 static void fremovexattr(int filedes, byte[] name) throws UnixException { in fremovexattr()
112 throws UnixException; in fremovexattr0()
[all …]
DUnixCopyFile.java135 } catch (UnixException x) { in copyDirectory()
149 } catch (UnixException x) { in copyDirectory()
152 try { rmdir(target); } catch (UnixException ignore) { } in copyDirectory()
169 } catch (UnixException x) { in copyDirectory()
180 } catch (UnixException x) { in copyDirectory()
201 } catch (UnixException x) { in copyDirectory()
213 try { rmdir(target); } catch (UnixException ignore) { } in copyDirectory()
229 } catch (UnixException x) { in copyFile()
242 } catch (UnixException x) { in copyFile()
252 } catch (UnixException x) { in copyFile()
[all …]
DLinuxWatchService.java63 } catch (UnixException x) { in LinuxWatchService()
77 } catch (UnixException x) { in LinuxWatchService()
125 } catch (UnixException x) { in invalidate()
211 } catch (UnixException x) { in wakeup()
254 } catch (UnixException x) { in implRegister()
271 } catch (UnixException x) { in implRegister()
342 } catch (UnixException x) { in run()
355 } catch (UnixException x) { in run()
401 } catch (UnixException x) { in run()
472 private static native int inotifyInit() throws UnixException; in inotifyInit()
[all …]
DLinuxUserDefinedFileAttributeView.java114 } catch (UnixException x) { in list()
144 } catch (UnixException x) { in size()
184 throw new UnixException(ERANGE); in read()
199 } catch (UnixException x) { in read()
261 } catch (UnixException x) { in write()
282 } catch (UnixException x) { in delete()
309 } catch (UnixException x) { in copyExtendedAttributes()
343 } catch (UnixException ignore) { in copyExtendedAttributes()
358 throws UnixException in copyExtendedAttribute()
DUnixFileSystemProvider.java176 } catch (UnixException x) { in newFileChannel()
195 } catch (UnixException x) { in newAsynchronousFileChannel()
213 } catch (UnixException x) { in newByteChannel()
234 } catch (UnixException x) { in implDelete()
307 } catch (UnixException exc) { in checkAccess()
331 } catch (UnixException x) { in isSameFile()
337 } catch (UnixException x) { in isSameFile()
388 } catch (UnixException x) { in createDirectory()
411 } catch (UnixException x) { in newDirectoryStream()
427 } catch (UnixException x) { in newDirectoryStream()
[all …]
DUnixSecureDirectoryStream.java134 } catch (UnixException x) { in newDirectoryStream()
172 } catch (UnixException x) { in newByteChannel()
209 } catch (UnixException x) { in implDelete()
217 } catch (UnixException x) { in implDelete()
271 } catch (UnixException x) { in move()
346 } catch (UnixException x) { in open()
390 } catch (UnixException x) { in readAttributes()
422 } catch (UnixException x) { in setTimes()
431 } catch (UnixException x) { in setTimes()
488 } catch (UnixException x) { in readAttributes()
[all …]
DUnixException.java35 class UnixException extends Exception { class
41 UnixException(int errno) { in UnixException() method in UnixException
46 UnixException(String msg) { in UnixException() method in UnixException
DLinuxFileStore.java64 } catch (UnixException x) { in findMountEntry()
74 } catch (UnixException x) { in findMountEntry()
104 } catch (UnixException e) { in isExtendedAttributesEnabled()
DUnixFileAttributeViews.java54 } catch (UnixException x) { in readAttributes()
86 } catch (UnixException x) { in setTimes()
102 } catch (UnixException x) { in setTimes()
121 } catch (UnixException x) { in setTimes()
217 } catch (UnixException x) { in readAttributes()
237 } catch (UnixException x) { in setMode()
251 } catch (UnixException x) { in setOwners()
DLinuxDosFileAttributeView.java180 } catch (UnixException x) { in readAttributes()
211 private int getDosAttribute(int fd) throws UnixException {
243 throw new UnixException("Value of " + DOS_XATTR_NAME + " attribute is invalid");
244 } catch (UnixException x) {
279 } catch (UnixException x) {
DUnixUserPrincipals.java119 } catch (UnixException x) { in fromUid()
130 } catch (UnixException x) { in fromGid()
147 } catch (UnixException x) { in lookupName()
DUnixFileStoreAttributes.java37 static UnixFileStoreAttributes get(UnixPath path) throws UnixException { in get()
DUnixDirectoryStream.java100 } catch (UnixException x) { in closeImpl()
182 } catch (UnixException x) { in readNextEntry()
DLinuxFileSystem.java94 } catch (UnixException x) { in getMountEntries()
DUnixFileStore.java56 } catch (UnixException x) { in devFor()
110 } catch (UnixException x) { in readAttributes()
DUnixPath.java778 } catch (UnixException x) { in openForAttributeAccess()
836 } catch (UnixException x) { in toRealPath()
858 } catch (UnixException x) { in toRealPath()
875 } catch (UnixException x) { in toRealPath()
/libcore/
Dopenjdk_java_files.bp1628 "ojluni/src/main/java/sun/nio/fs/UnixException.java",