Home
last modified time | relevance | path

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

/aosp12/system/bt/profile/avrcp/tests/avrcp_device_fuzz/
H A Davrcp_device_fuzz.cc13 virtual void SendKeyEvent(uint8_t key, KeyState state) {} in SendKeyEvent() function in bluetooth::avrcp::FakeMediaInterface
/aosp12/system/bt/include/hardware/avrcp/
H A Davrcp.h106 virtual void SendKeyEvent(uint8_t key, KeyState state) = 0;
/aosp12/system/bt/profile/avrcp/tests/
H A Davrcp_test_helper.h36 MOCK_METHOD2(SendKeyEvent, void(uint8_t, KeyState));
H A Davrcp_device_test.cc1390 EXPECT_CALL(interface, SendKeyEvent(0x44, KeyState::PUSHED)).Times(1); in TEST_F()
1424 EXPECT_CALL(interface, SendKeyEvent(0x44, KeyState::PUSHED)).Times(0); in TEST_F()
1453 EXPECT_CALL(interface, SendKeyEvent(0x44, KeyState::RELEASED)).Times(1); in TEST_F()
1483 EXPECT_CALL(interface, SendKeyEvent(0x44, KeyState::RELEASED)).Times(0); in TEST_F()
/aosp12/system/bt/btif/avrcp/
H A Davrcp_service.cc140 void SendKeyEvent(uint8_t key, KeyState state) override { in SendKeyEvent() function in bluetooth::avrcp::MediaInterfaceWrapper
141 do_in_avrcp_jni(base::Bind(&MediaInterface::SendKeyEvent, in SendKeyEvent()
/aosp12/system/bt/profile/avrcp/
H A Ddevice.cc696 d->media_interface_->SendKeyEvent(0x44, KeyState::PUSHED); in MessageReceived()
703 media_interface_->SendKeyEvent(pass_through_packet->GetOperationId(), in MessageReceived()
/aosp12/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_avrcp_target.cpp79 void SendKeyEvent(uint8_t key, KeyState state) { in SendKeyEvent() function in android::AvrcpMediaInterfaceImpl