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

  /frameworks/base/core/jni/
android_util_AssetManager.cpp 126 ScopedUtfChars fileName8(env, fileName);
127 if (fileName8.c_str() == NULL) {
137 Asset* a = am->open(fileName8.c_str(), (Asset::AccessMode)mode);
140 jniThrowException(env, "java/io/FileNotFoundException", fileName8.c_str());
191 ScopedUtfChars fileName8(env, fileName);
192 if (fileName8.c_str() == NULL) {
196 Asset* a = am->open(fileName8.c_str(), Asset::ACCESS_RANDOM);
199 jniThrowException(env, "java/io/FileNotFoundException", fileName8.c_str());
220 ScopedUtfChars fileName8(env, fileName);
221 if (fileName8.c_str() == NULL)
    [all...]
android_os_Debug.cpp 557 String8 fileName8;
559 fileName8 = String8(str, env->GetStringLength(fileName));
563 int fd = open(fileName8.string(), O_CREAT | O_WRONLY | O_NOFOLLOW, 0666); /* -rw-rw-rw- */
565 fprintf(stderr, "Can't open %s: %s\n", fileName8.string(), strerror(errno));

Completed in 196 milliseconds