Searched refs:utf8 (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdsSection.java107 CstUtf8 utf8 = new CstUtf8(string);
108 return intern(new StringIdItem(utf8));
118 CstUtf8 utf8 = string.getString();
119 return intern(new StringIdItem(utf8));
/dalvik/vm/oo/
H A DResolve.c500 const char* utf8; local
509 utf8 = dexStringAndSizeById(pDvmDex->pDexFile, stringIdx, &utf16Size);
510 strObj = dvmCreateStringFromCstrAndLength(utf8, utf16Size,
/dalvik/vm/
H A DCheckJni.c609 u1 utf8 = *(bytes++); local
611 switch (utf8 >> 4) {
633 LOGW("JNI WARNING: illegal start byte 0x%x\n", utf8);
638 utf8 = *(bytes++);
639 if ((utf8 & 0xc0) != 0x80) {
640 LOGW("JNI WARNING: illegal continuation byte 0x%x\n", utf8);
648 utf8 = *(bytes++);
649 if ((utf8 & 0xc0) != 0x80) {
650 LOGW("JNI WARNING: illegal continuation byte 0x%x\n", utf8);

Completed in 104 milliseconds