Home
last modified time | relevance | path

Searched refs:composePwle (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/vibrator/
DVibratorController.java298 long duration = mNativeWrapper.composePwle(primitives, braking, vibrationId); in on()
456 public long composePwle(RampSegment[] primitives, int braking, long vibrationId) { in composePwle() method in VibratorController.NativeWrapper
/frameworks/base/services/tests/servicestests/src/com/android/server/vibrator/
DVibratorControllerTest.java234 when(mNativeWrapperMock.composePwle(any(), anyInt(), anyLong())).thenReturn(15L); in on_withComposedPwle_performsEffect()
244 verify(mNativeWrapperMock).composePwle(eq(primitives), eq(Braking.NONE), eq(12L)); in on_withComposedPwle_performsEffect()
DFakeVibratorControllerProvider.java129 public long composePwle(RampSegment[] primitives, int braking, long vibrationId) { in composePwle() method in FakeVibratorControllerProvider.FakeNativeWrapper
/frameworks/native/cmds/idlcli/vibrator/
DCommandComposePwle.cpp181 auto status = hal->call(&aidl::IVibrator::composePwle, mCompositePwle, callback); in doMain()
/frameworks/native/services/vibratorservice/test/
DVibratorHalWrapperAidlTest.cpp79 MOCK_METHOD(Status, composePwle,
681 EXPECT_CALL(*mMockHal.get(), composePwle(Eq(emptyPrimitives), _)) in TEST_F()
685 EXPECT_CALL(*mMockHal.get(), composePwle(Eq(multiplePrimitives), _)) in TEST_F()
DVibratorManagerHalWrapperAidlTest.cpp75 MOCK_METHOD(Status, composePwle,
/frameworks/native/services/vibratorservice/
DVibratorHalWrapper.cpp367 return HalResult<void>::fromStatus(getHal()->composePwle(primitives, cb)); in performPwleEffect()