/frameworks/av/services/tuner/ |
D | TunerService.cpp | 55 TunerService::TunerService() { in TunerService() function in aidl::android::media::tv::tuner::TunerService 71 TunerService::~TunerService() { in ~TunerService() 75 binder_status_t TunerService::instantiate() { in instantiate() 76 shared_ptr<TunerService> tunerService = ::ndk::SharedRefBase::make<TunerService>(); in instantiate() 85 ::ndk::ScopedAStatus TunerService::openDemux(int32_t in_demuxHandle, in openDemux() 105 this->ref<TunerService>()); in openDemux() 113 ::ndk::SharedRefBase::make<TunerDemux>(demux, id, this->ref<TunerService>()); in openDemux() 119 ::ndk::ScopedAStatus TunerService::getDemuxInfo(int32_t in_demuxHandle, DemuxInfo* _aidl_return) { in getDemuxInfo() 128 ::ndk::ScopedAStatus TunerService::getDemuxInfoList(vector<DemuxInfo>* _aidl_return) { in getDemuxInfoList() 159 ::ndk::ScopedAStatus TunerService::getDemuxCaps(DemuxCapabilities* _aidl_return) { in getDemuxCaps() [all …]
|
D | TunerDemux.h | 35 class TunerService; variable 41 const shared_ptr<TunerService> tuner); 66 shared_ptr<TunerService> mTunerService;
|
D | main_tunerservice.cpp | 28 using ::aidl::android::media::tv::tuner::TunerService; 49 status = TunerService::instantiate(); in main()
|
D | TunerService.h | 56 class TunerService : public BnTunerService { 60 TunerService(); 61 virtual ~TunerService();
|
D | TunerFilter.h | 56 class TunerService; variable 80 const DemuxFilterType type, const shared_ptr<TunerService> tuner); 118 shared_ptr<TunerService> mTunerService;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
D | TunablePadding.java | 23 import com.android.systemui.tuner.TunerService.Tunable; 41 private final TunerService mTunerService; 43 private TunablePadding(String key, int def, int flags, View view, TunerService tunerService) { in TunablePadding() 83 private final TunerService mTunerService; 88 public TunablePaddingService(TunerService tunerService) { in TunablePaddingService()
|
D | ClockPreference.java | 27 public class ClockPreference extends DropDownPreference implements TunerService.Tunable { 50 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST, in onAttached() 56 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 87 Dependency.get(TunerService.class).setValue(Clock.CLOCK_SECONDS, SECONDS.equals(value) ? 1 in persistString() 94 Dependency.get(TunerService.class).setValue(StatusBarIconController.ICON_HIDE_LIST, in persistString()
|
D | TunerSwitch.java | 13 import com.android.systemui.tuner.TunerService.Tunable; 32 Dependency.get(TunerService.class).addTunable(this, getKey().split(",")); in onAttached() 37 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 43 setChecked(TunerService.parseIntegerSwitch(newValue, mDefault)); in onTuningChanged()
|
D | BatteryPreference.java | 32 public class BatteryPreference extends DropDownPreference implements TunerService.Tunable { 55 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST); in onAttached() 60 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 95 Dependency.get(TunerService.class).setValue(StatusBarIconController.ICON_HIDE_LIST, in persistString()
|
D | TunerService.java | 28 public abstract class TunerService { class 60 public TunerService(Context context) { in TunerService() method in TunerService 68 Dependency.get(TunerService.class).clearAll(); in onReceive()
|
D | StatusBarSwitch.java | 31 import com.android.systemui.tuner.TunerService.Tunable; 46 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST); in onAttached() 51 Dependency.get(TunerService.class).removeTunable(this); in onDetached()
|
D | NavBarTuner.java | 50 import com.android.systemui.tuner.TunerService.Tunable; 100 mTunables.forEach(t -> Dependency.get(TunerService.class).removeTunable(t)); in onDestroy() 105 Dependency.get(TunerService.class).addTunable(tunable, keys); in addTunable() 119 Dependency.get(TunerService.class).setValue(NAV_BAR_VIEWS, val); in bindLayout() 216 Dependency.get(TunerService.class).setValue(setting, button); in setValue()
|
D | ShortcutPicker.java | 35 import com.android.systemui.tuner.TunerService.Tunable; 45 private TunerService mTunerService; 101 mTunerService = Dependency.get(TunerService.class); in onCreatePreferences()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | OperatorNameViewController.java | 32 import com.android.systemui.tuner.TunerService; 46 private final TunerService mTunerService; 58 TunerService tunerService, in OperatorNameViewController() 123 private final TunerService mTunerService; 133 TunerService tunerService, in Factory() 177 private final TunerService.Tunable mTunable = (key, newValue) -> update();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | VolumeDialogComponent.java | 40 import com.android.systemui.tuner.TunerService; 52 public class VolumeDialogComponent implements VolumeComponent, TunerService.Tunable, 87 TunerService tunerService, in VolumeDialogComponent() 135 TunerService.parseIntegerSwitch(newValue, mDefaultVolumeDownToEnterSilent); in onTuningChanged() 138 TunerService.parseIntegerSwitch(newValue, mDefaultVolumeUpToExitSilent); in onTuningChanged() 141 TunerService.parseIntegerSwitch(newValue, DEFAULT_DO_NOT_DISTURB_WHEN_SILENT); in onTuningChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/ |
D | BatteryMeterViewController.java | 43 import com.android.systemui.tuner.TunerService; 53 private final TunerService mTunerService; 72 private final TunerService.Tunable mTunable = new TunerService.Tunable() { 140 TunerService tunerService, in BatteryMeterViewController() 250 private final TunerService mTunerService; 260 TunerService tunerService, in Factory()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/dagger/ |
D | TunerModule.java | 19 import com.android.systemui.tuner.TunerService; 30 TunerService provideTunerService(TunerServiceImpl controllerImpl); in provideTunerService()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | KeyguardSliceViewControllerTest.java | 39 import com.android.systemui.tuner.TunerService; 56 private TunerService mTunerService; 104 verify(mTunerService).addTunable(any(TunerService.Tunable.class), anyString()); in onAttachedToWindow_registersListeners() 123 verify(mTunerService).removeTunable(any(TunerService.Tunable.class)); in onDetachedFromWindow_unregistersListeners()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | PulsingGestureListener.kt | 35 import com.android.systemui.tuner.TunerService in <lambda>() 36 import com.android.systemui.tuner.TunerService.Tunable in <lambda>() 59 tunerService: TunerService, in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/media/controls/domain/pipeline/ |
D | MediaResumeListenerKosmos.kt | 28 import com.android.systemui.tuner.TunerService 40 tunerService = mock<TunerService> {}, in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/ |
D | FakeTunerService.java | 19 import com.android.systemui.tuner.TunerService; 21 public class FakeTunerService extends TunerService {
|
D | LeakCheckedTest.java | 38 import com.android.systemui.tuner.TunerService; 68 TunerService.class, 133 } else if (cls == TunerService.class) { in getLeakChecker()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSliceViewController.java | 51 import com.android.systemui.tuner.TunerService; 71 private final TunerService mTunerService; 80 TunerService.Tunable mTunable = (key, newValue) -> setupUri(newValue); 119 TunerService tunerService, in KeyguardSliceViewController()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | ExtensionControllerImplTest.java | 40 import com.android.systemui.tuner.TunerService; 41 import com.android.systemui.tuner.TunerService.Tunable; 62 private TunerService mTunerService; 69 mTunerService = mDependency.injectMockDependency(TunerService.class); in setup()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarSignalPolicy.java | 33 import com.android.systemui.tuner.TunerService; 34 import com.android.systemui.tuner.TunerService.Tunable; 63 private final TunerService mTunerService; 83 TunerService tunerService in StatusBarSignalPolicy()
|