Home
last modified time | relevance | path

Searched refs:jConfig (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/jni/
Dandroid_hardware_Radio.cpp543 jobject weak_this, jobject jConfig, jboolean withAudio) in android_hardware_Radio_setup() argument
555 if (jConfig != NULL) { in android_hardware_Radio_setup()
556 jint jStatus = convertBandConfigToNative(env, &nConfig, jConfig); in android_hardware_Radio_setup()
594 android_hardware_Radio_setConfiguration(JNIEnv *env, jobject thiz, jobject jConfig) in android_hardware_Radio_setConfiguration() argument
602 if (!env->IsInstanceOf(jConfig, gRadioFmBandConfigClass) && in android_hardware_Radio_setConfiguration()
603 !env->IsInstanceOf(jConfig, gRadioAmBandConfigClass)) { in android_hardware_Radio_setConfiguration()
608 jint jStatus = convertBandConfigToNative(env, &nConfig, jConfig); in android_hardware_Radio_setConfiguration()
635 jobject jConfig; in android_hardware_Radio_getConfiguration() local
636 int jStatus = convertBandConfigFromNative(env, &jConfig, &nConfig); in android_hardware_Radio_getConfiguration()
640 env->SetObjectArrayElement(jConfigs, 0, jConfig); in android_hardware_Radio_getConfiguration()
[all …]
Dandroid_hardware_SoundTrigger.cpp666 jint jHandle, jobject jConfig) in android_hardware_SoundTrigger_startRecognition() argument
675 if (!env->IsInstanceOf(jConfig, gRecognitionConfigClass)) { in android_hardware_SoundTrigger_startRecognition()
679 jbyteArray jData = (jbyteArray)env->GetObjectField(jConfig, gRecognitionConfigFields.data); in android_hardware_SoundTrigger_startRecognition()
714 config->capture_requested = env->GetBooleanField(jConfig, in android_hardware_SoundTrigger_startRecognition()
719 (jobjectArray)env->GetObjectField(jConfig, gRecognitionConfigFields.keyphrases); in android_hardware_SoundTrigger_startRecognition()