Home | History | Annotate | Download | only in native

Lines Matching refs:javaPath

727 static jobject doStat(JNIEnv* env, jstring javaPath, bool isLstat) {
728 ScopedUtfChars path(env, javaPath);
955 static jboolean Linux_access(JNIEnv* env, jobject, jstring javaPath, jint mode) {
956 ScopedUtfChars path(env, javaPath);
1062 static void Linux_chmod(JNIEnv* env, jobject, jstring javaPath, jint mode) {
1063 ScopedUtfChars path(env, javaPath);
1070 static void Linux_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) {
1071 ScopedUtfChars path(env, javaPath);
1470 static jbyteArray Linux_getxattr(JNIEnv* env, jobject, jstring javaPath,
1472 ScopedUtfChars path(env, javaPath);
1699 static void Linux_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) {
1700 ScopedUtfChars path(env, javaPath);
1724 static jobjectArray Linux_listxattr(JNIEnv* env, jobject, jstring javaPath) {
1725 ScopedUtfChars path(env, javaPath);
1764 static jobject Linux_lstat(JNIEnv* env, jobject, jstring javaPath) {
1765 return doStat(env, javaPath, true);
1778 static void Linux_mkdir(JNIEnv* env, jobject, jstring javaPath, jint mode) {
1779 ScopedUtfChars path(env, javaPath);
1786 static void Linux_mkfifo(JNIEnv* env, jobject, jstring javaPath, jint mode) {
1787 ScopedUtfChars path(env, javaPath);
1824 static jobject Linux_open(JNIEnv* env, jobject, jstring javaPath, jint flags, jint mode) {
1825 ScopedUtfChars path(env, javaPath);
1981 static jstring Linux_readlink(JNIEnv* env, jobject, jstring javaPath) {
1982 ScopedUtfChars path(env, javaPath);
1995 static jstring Linux_realpath(JNIEnv* env, jobject, jstring javaPath) {
1996 ScopedUtfChars path(env, javaPath);
2040 static void Linux_remove(JNIEnv* env, jobject, jstring javaPath) {
2041 ScopedUtfChars path(env, javaPath);
2048 static void Linux_removexattr(JNIEnv* env, jobject, jstring javaPath, jstring javaName) {
2049 ScopedUtfChars path(env, javaPath);
2300 static void Linux_setxattr(JNIEnv* env, jobject, jstring javaPath, jstring javaName,
2302 ScopedUtfChars path(env, javaPath);
2343 static jobject Linux_stat(JNIEnv* env, jobject, jstring javaPath) {
2344 return doStat(env, javaPath, false);
2347 static jobject Linux_statvfs(JNIEnv* env, jobject, jstring javaPath) {
2348 ScopedUtfChars path(env, javaPath);