HomeSort by relevance Sort by last modified time
    Searched refs:file8 (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/
android_os_FileUtils.cpp 54 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) {
android_util_Process.cpp 430 const char* file8 = env->GetStringUTFChars(fileStr, NULL); local
431 if (file8 == NULL) {
434 String8 file(file8);
435 env->ReleaseStringUTFChars(fileStr, file8);
539 const char* file8 = env->GetStringUTFChars(file, NULL); local
540 if (file8 == NULL) {
545 DIR* dirp = opendir(file8);
547 env->ReleaseStringUTFChars(file, file8);
753 const char* file8 = env->GetStringUTFChars(file, NULL); local
754 if (file8 == NULL)
    [all...]

Completed in 33 milliseconds