Home
last modified time | relevance | path

Searched refs:ControlActionWrapper (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/service/controls/actions/
DControlActionWrapper.java29 public final class ControlActionWrapper implements Parcelable { class
33 public ControlActionWrapper(@NonNull ControlAction controlAction) { in ControlActionWrapper() method in ControlActionWrapper
54 public static final @NonNull Creator<ControlActionWrapper> CREATOR =
55 new Creator<ControlActionWrapper>() {
57 public ControlActionWrapper createFromParcel(@NonNull Parcel in) {
58 return new ControlActionWrapper(
63 public ControlActionWrapper[] newArray(int size) {
64 return new ControlActionWrapper[size];
DControlActionWrapper.aidl19 parcelable ControlActionWrapper;
/frameworks/base/core/java/android/service/controls/
DIControlsProvider.aidl21 import android.service.controls.actions.ControlActionWrapper;
34 void action(in String controlId, in ControlActionWrapper action, in action()
DControlsProviderService.java37 import android.service.controls.actions.ControlActionWrapper;
231 public void action(String controlId, ControlActionWrapper action, in onBind()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/
DServiceWrapper.kt24 import android.service.controls.actions.ControlActionWrapper
83 service.action(controlId, ControlActionWrapper(action), cb) in action()
/frameworks/base/core/tests/coretests/src/android/service/controls/actions/
DControlActionTest.java84 new ControlActionWrapper(toParcel).writeToParcel(parcel, 0); in parcelAndUnparcel()
87 return ControlActionWrapper.CREATOR.createFromParcel(parcel).getWrappedAction(); in parcelAndUnparcel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/
DServiceWrapperTest.kt25 import android.service.controls.actions.ControlActionWrapper
61 private lateinit var wrapperCaptor: ArgumentCaptor<ControlActionWrapper>
DControlsProviderLifecycleManagerTest.kt28 import android.service.controls.actions.ControlActionWrapper
72 private lateinit var wrapperCaptor: ArgumentCaptor<ControlActionWrapper>
/frameworks/base/core/tests/coretests/src/android/service/controls/
DControlProviderServiceTest.java45 import android.service.controls.actions.ControlActionWrapper;
290 mControlsProvider.action("TEST_ID", new ControlActionWrapper( in testOnAction()