Home
last modified time | relevance | path

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

/base/inputmethod/imf/services/include/
Dinput_method_system_ability_stub.h76 …static constexpr RequestHandler HANDLERS[static_cast<uint32_t>(InputMethodInterfaceCode::IMS_CMD_L…
77 [static_cast<uint32_t>(InputMethodInterfaceCode::PREPARE_INPUT)] =
79 [static_cast<uint32_t>(InputMethodInterfaceCode::START_INPUT)] =
81 [static_cast<uint32_t>(InputMethodInterfaceCode::SHOW_CURRENT_INPUT)] =
83 [static_cast<uint32_t>(InputMethodInterfaceCode::HIDE_CURRENT_INPUT)] =
85 [static_cast<uint32_t>(InputMethodInterfaceCode::STOP_INPUT)] =
87 [static_cast<uint32_t>(InputMethodInterfaceCode::RELEASE_INPUT)] =
89 [static_cast<uint32_t>(InputMethodInterfaceCode::GET_CURRENT_INPUT_METHOD)] =
91 [static_cast<uint32_t>(InputMethodInterfaceCode::GET_CURRENT_INPUT_METHOD_SUBTYPE)] =
93 [static_cast<uint32_t>(InputMethodInterfaceCode::LIST_INPUT_METHOD)] =
[all …]
Dinputmethod_service_ipc_interface_code.h22 enum class InputMethodInterfaceCode { enum
/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
Dinput_method_system_ability_proxy.cpp35 …static_cast<uint32_t>(InputMethodInterfaceCode::PREPARE_INPUT), [&inputClientInfo](MessageParcel &… in PrepareInput()
43 return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::START_INPUT), in StartInput()
53 return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::SHOW_CURRENT_INPUT)); in ShowCurrentInput()
59 return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::HIDE_CURRENT_INPUT)); in HideCurrentInput()
65 return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::STOP_INPUT_SESSION)); in StopInputSession()
71 …return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::STOP_INPUT), [client](MessagePa… in StopInput()
78 …return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::RELEASE_INPUT), [client](Messag… in ReleaseInput()
86 …return SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::DISPLAY_OPTIONAL_INPUT_METHOD)); in DisplayOptionalInputMethod()
93 …static_cast<uint32_t>(InputMethodInterfaceCode::SET_CORE_AND_AGENT), [core, agent](MessageParcel &… in SetCoreAndAgent()
102 …int32_t ret = SendRequest(static_cast<uint32_t>(InputMethodInterfaceCode::GET_CURRENT_INPUT_METHOD… in GetCurrentInputMethod()
[all …]
/base/inputmethod/imf/services/src/
Dinput_method_system_ability_stub.cpp40 if (code >= 0 && code < static_cast<uint32_t>(InputMethodInterfaceCode::IMS_CMD_LAST)) { in OnRemoteRequest()