Searched refs:valueObj (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/media/jni/ |
D | android_media_Utils.cpp | 273 jobject valueObj = makeIntegerObject(env, value); in SetMapInt32() local 275 env->CallObjectMethod(hashMapObj, hashMapPutID, keyObj, valueObj); in SetMapInt32() 277 env->DeleteLocalRef(valueObj); valueObj = NULL; in SetMapInt32() 318 jobject valueObj = NULL; in ConvertMessageToMap() local 326 valueObj = makeIntegerObject(env, val); in ConvertMessageToMap() 335 valueObj = makeLongObject(env, val); in ConvertMessageToMap() 344 valueObj = makeFloatObject(env, val); in ConvertMessageToMap() 353 valueObj = env->NewStringUTF(val.c_str()); in ConvertMessageToMap() 362 valueObj = makeByteBufferObject( in ConvertMessageToMap() 406 if (valueObj != NULL) { in ConvertMessageToMap() [all …]
|
/frameworks/base/core/jni/ |
D | android_database_CursorWindow.cpp | 399 jbyteArray valueObj, jint row, jint column) { in nativePutBlob() argument 401 jsize len = env->GetArrayLength(valueObj); in nativePutBlob() 403 void* value = env->GetPrimitiveArrayCritical(valueObj, NULL); in nativePutBlob() 405 env->ReleasePrimitiveArrayCritical(valueObj, value, JNI_ABORT); in nativePutBlob() 417 jstring valueObj, jint row, jint column) { in nativePutString() argument 420 size_t sizeIncludingNull = env->GetStringUTFLength(valueObj) + 1; in nativePutString() 421 const char* valueStr = env->GetStringUTFChars(valueObj, NULL); in nativePutString() 427 env->ReleaseStringUTFChars(valueObj, valueStr); in nativePutString()
|