Lines Matching refs:strObj
458 StringObject* strObj = (StringObject*) obj; in addGlobalReference() local
459 char* str = dvmCreateCstrFromString(strObj); in addGlobalReference()
2145 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringLength() local
2146 return strObj->length(); in GetStringLength()
2159 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringChars() local
2160 ArrayObject* strChars = strObj->array(); in GetStringChars()
2164 const u2* data = strObj->chars(); in GetStringChars()
2176 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in ReleaseStringChars() local
2177 ArrayObject* strChars = strObj->array(); in ReleaseStringChars()
2204 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringUTFLength() local
2205 if (strObj == NULL) { in GetStringUTFLength()
2208 return strObj->utfLength(); in GetStringUTFLength()
2234 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringUTFChars() local
2235 char* newStr = dvmCreateCstrFromString(strObj); in GetStringUTFChars()
2592 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringRegion() local
2593 int strLen = strObj->length(); in GetStringRegion()
2598 memcpy(buf, strObj->chars() + start, len * sizeof(u2)); in GetStringRegion()
2607 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringUTFRegion() local
2608 int strLen = strObj->length(); in GetStringUTFRegion()
2613 dvmGetStringUtfRegion(strObj, start, len, buf); in GetStringUTFRegion()
2652 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in GetStringCritical() local
2653 ArrayObject* strChars = strObj->array(); in GetStringCritical()
2657 const u2* data = strObj->chars(); in GetStringCritical()
2669 StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(ts.self(), jstr); in ReleaseStringCritical() local
2670 ArrayObject* strChars = strObj->array(); in ReleaseStringCritical()