Home
last modified time | relevance | path

Searched refs:keypress (Results 1 – 4 of 4) sorted by relevance

/aosp12/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
H A Dmm_qcamera_main_menu.c315 int keypress_to_event(char keypress) in keypress_to_event() argument
318 if ((keypress >= 'A' && keypress <= 'Z') || in keypress_to_event()
319 (keypress >= 'a' && keypress <= 'z')) { in keypress_to_event()
320 out_buf = tolower(keypress); in keypress_to_event()
322 } else if (keypress >= '0' && keypress <= '9') { in keypress_to_event()
323 out_buf = (keypress - '0')+ ('z' - 'a'); in keypress_to_event()
328 int next_menu(menu_id_change_t current_menu_id, char keypress, camera_action_t * action_id_ptr, int… in next_menu() argument
334 output_to_event = keypress_to_event(keypress); in next_menu()
/aosp12/system/bt/gd/security/
H A Dfacade.proto139 bool keypress = 4;
H A Dfacade.cc251 if (request->keypress()) auth_req |= AUTH_REQ_KEYPRESS_MASK; in SetLeAuthRequirements()
/aosp12/system/bt/vendor_libs/test_vendor_lib/model/controller/
H A Dlink_layer_controller.cc1075 auto keypress = model::packets::KeypressNotificationView::Create(incoming); in IncomingKeypressNotificationPacket() local
1076 ASSERT(keypress.IsValid()); in IncomingKeypressNotificationPacket()
1077 auto notification_type = keypress.GetNotificationType(); in IncomingKeypressNotificationPacket()