Home
last modified time | relevance | path

Searched refs:javaPath (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/native/
Djava_io_File.cpp42 static jstring File_readlink(JNIEnv* env, jclass, jstring javaPath) { in File_readlink() argument
43 ScopedUtfChars path(env, javaPath); in File_readlink()
56 static jstring File_realpath(JNIEnv* env, jclass, jstring javaPath) { in File_realpath() argument
57 ScopedUtfChars path(env, javaPath); in File_realpath()
71 static jboolean File_setLastModifiedImpl(JNIEnv* env, jclass, jstring javaPath, jlong ms) { in File_setLastModifiedImpl() argument
72 ScopedUtfChars path(env, javaPath); in File_setLastModifiedImpl()
138 static bool readDirectory(JNIEnv* env, jstring javaPath, DirEntries& entries) { in readDirectory() argument
139 ScopedUtfChars path(env, javaPath); in readDirectory()
155 static jobjectArray File_listImpl(JNIEnv* env, jclass, jstring javaPath) { in File_listImpl() argument
158 if (!readDirectory(env, javaPath, entries)) { in File_listImpl()
Dlibcore_io_Posix.cpp326 static jobject doStat(JNIEnv* env, jstring javaPath, bool isLstat) { in doStat() argument
327 ScopedUtfChars path(env, javaPath); in doStat()
411 static jboolean Posix_access(JNIEnv* env, jobject, jstring javaPath, jint mode) { in Posix_access() argument
412 ScopedUtfChars path(env, javaPath); in Posix_access()
434 static void Posix_chmod(JNIEnv* env, jobject, jstring javaPath, jint mode) { in Posix_chmod() argument
435 ScopedUtfChars path(env, javaPath); in Posix_chmod()
442 static void Posix_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_chown() argument
443 ScopedUtfChars path(env, javaPath); in Posix_chown()
870 static void Posix_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_lchown() argument
871 ScopedUtfChars path(env, javaPath); in Posix_lchown()
[all …]