Searched defs:tuner (Results 26 - 31 of 31) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerServiceImpl.java16 package com.android.systemui.tuner;
H A DTunerZenModePanel.java15 package com.android.systemui.tuner;
H A DLockscreenFragment.java15 package com.android.systemui.tuner;
56 import com.android.systemui.tuner.ShortcutParser.Shortcut;
57 import com.android.systemui.tuner.TunerService.Tunable;
/frameworks/base/services/core/java/com/android/server/broadcastradio/
H A DTunerCallback.java40 TunerCallback(@NonNull Tuner tuner, @NonNull ITunerCallback clientCallback, int halRev) { argument
41 mTuner = tuner;
43 mNativeContext = nativeInit(tuner, halRev);
52 private native long nativeInit(@NonNull Tuner tuner, int halRev); argument
/frameworks/base/services/core/jni/BroadcastRadio/
H A DBroadcastRadioService.cpp205 ALOGI("Opening tuner %d with broadcast radio HAL 1.1", moduleId);
208 ALOGI("Opening tuner %d with broadcast radio HAL 1.0", moduleId);
215 auto tuner = make_javaref(env, env->NewObject(gjni.Tuner.clazz, gjni.Tuner.cstor, local
217 if (tuner == nullptr) {
218 ALOGE("Unable to create new tuner object.");
222 auto tunerCb = Tuner::getNativeCallback(env, tuner);
227 [&](Result result, const sp<ITuner>& tuner) {
229 halTuner = tuner;
232 ALOGE("Couldn't open tuner");
238 Tuner::assignHalInterfaces(env, tuner, modul
[all...]
H A DTuner.cpp70 static const char* const kAudioDeviceName = "Radio tuner source";
160 ALOGE_IF(halTuner == nullptr, "HAL tuner is a nullptr");
166 // dropping the last reference will close HAL tuner
170 ALOGE("HAL tuner is already set.");
180 "Provided tuner does not implement 1.1 HAL");
189 auto tuner = ctx.mHalTuner; local
190 LOG_ALWAYS_FATAL_IF(tuner == nullptr, "HAL tuner is not open");
191 return tuner;
204 sp<ITunerCallback> getNativeCallback(JNIEnv *env, JavaRef<jobject> const &tuner) { argument
[all...]

Completed in 3739 milliseconds

12