Searched refs:file8 (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_os_FileUtils.cpp54 String8 file8; local
56 file8 = String8(str, env->GetStringLength(file));
59 if (file8.size() <= 0) {
63 int res = chown(file8.string(), uid, gid);
68 return chmod(file8.string(), mode) == 0 ? 0 : errno;
75 String8 file8; local
77 file8 = String8(str, env->GetStringLength(file));
80 if (file8.size() <= 0) {
84 if (stat(file8.string(), &st) != 0) {
H A Dandroid_util_Process.cpp477 const char* file8 = env->GetStringUTFChars(fileStr, NULL); local
478 if (file8 == NULL) {
481 String8 file(file8);
482 env->ReleaseStringUTFChars(fileStr, file8);
586 const char* file8 = env->GetStringUTFChars(file, NULL); local
587 if (file8 == NULL) {
592 DIR* dirp = opendir(file8);
594 env->ReleaseStringUTFChars(file, file8);
800 const char* file8 = env->GetStringUTFChars(file, NULL); local
801 if (file8
[all...]

Completed in 98 milliseconds