Home
last modified time | relevance | path

Searched refs:IControlsSubscription (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/
H A DControlsBindingControllerImplTest.kt26 import android.service.controls.IControlsSubscription
120 val subscription = mock(IControlsSubscription::class.java)
139 val subscription = mock(IControlsSubscription::class.java)
159 val subscription = mock(IControlsSubscription::class.java)
178 val subscription = mock(IControlsSubscription::class.java)
197 val subscription = mock(IControlsSubscription::class.java)
229 val subscription = mock(IControlsSubscription::class.java)
248 val subscription = mock(IControlsSubscription::class.java)
287 val subs = mock(IControlsSubscription::class.java)
316 val subs = mock(IControlsSubscription::class.java)
H A DStatefulControlSubscriberTest.kt22 import android.service.controls.IControlsSubscription
46 private lateinit var subscription: IControlsSubscription
H A DServiceWrapperTest.kt23 import android.service.controls.IControlsSubscription
52 private lateinit var subscription: IControlsSubscription
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/
H A DServiceWrapper.kt22 import android.service.controls.IControlsSubscription
65 fun request(subscription: IControlsSubscription, num: Long): Boolean {
71 fun cancel(subscription: IControlsSubscription): Boolean {
H A DStatefulControlSubscriber.kt22 import android.service.controls.IControlsSubscription
38 private var subscription: IControlsSubscription? = null
50 override fun onSubscribe(token: IBinder, subs: IControlsSubscription) {
H A DControlsBindingControllerImpl.kt26 import android.service.controls.IControlsSubscription
251 val subscription: IControlsSubscription,
263 val subscription: IControlsSubscription,
304 private lateinit var subscription: IControlsSubscription
318 override fun onSubscribe(token: IBinder, subs: IControlsSubscription) {
H A DControlsProviderLifecycleManager.kt34 import android.service.controls.IControlsSubscription
299 fun startSubscription(subscription: IControlsSubscription, requestLimit: Long) {
313 fun cancelSubscription(subscription: IControlsSubscription) {
/aosp14/frameworks/base/core/java/android/service/controls/
H A DIControlsSubscriber.aidl20 import android.service.controls.IControlsSubscription;
26 void onSubscribe(in IBinder token, in IControlsSubscription cs); in onSubscribe()
H A DIControlsSubscription.aidl22 oneway interface IControlsSubscription { interface
H A DControlsProviderService.java370 private static class SubscriptionAdapter extends IControlsSubscription.Stub {
/aosp14/frameworks/base/core/tests/coretests/src/android/service/controls/
H A DControlProviderServiceTest.java127 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoad_allStateless()
128 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoad_allStateless()
160 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoad_statefulConvertedToStateless()
161 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoad_statefulConvertedToStateless()
190 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoadSuggested_allStateless()
191 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoadSuggested_allStateless()
318 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in sendControlGetControl()
319 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in sendControlGetControl()