Searched refs:amode (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/native/
H A DUnixFileSystem_md.c178 int amode = 0; local
183 amode = S_IRUSR;
185 amode = S_IRUSR | S_IRGRP | S_IROTH;
189 amode = S_IWUSR;
191 amode = S_IWUSR | S_IWGRP | S_IWOTH;
195 amode = S_IXUSR;
197 amode = S_IXUSR | S_IXGRP | S_IXOTH;
204 mode |= amode;
206 mode &= ~amode;
H A DUnixNativeDispatcher.c888 jlong pathAddress, jint amode)
893 RESTARTABLE(access(path, (int)amode), err);
887 Java_sun_nio_fs_UnixNativeDispatcher_access0(JNIEnv* env, jclass this, jlong pathAddress, jint amode) argument
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixNativeDispatcher.java444 * access(const char* path, int amode);
446 static void access(UnixPath path, int amode) throws UnixException { argument
449 access0(buffer.address(), amode);
454 private static native void access0(long pathAddress, int amode) throws UnixException; argument

Completed in 36 milliseconds