Home
last modified time | relevance | path

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

/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
H A Dinput_client_info.h35 enum class ClientState : uint32_t { INACTIVE = 0, ACTIVE }; enum
50 ClientState state{ ClientState::INACTIVE }; // the state of input client
/ohos5.0/base/inputmethod/imf/common/src/
H A Ditypes_util.cpp386 bool ITypesUtil::Marshalling(ClientState input, MessageParcel &data) in Marshalling()
391 bool ITypesUtil::Unmarshalling(ClientState &output, MessageParcel &data) in Unmarshalling()
398 output = static_cast<ClientState>(state); in Unmarshalling()
/ohos5.0/base/inputmethod/imf/common/include/
H A Ditypes_util.h98 static bool Marshalling(ClientState input, MessageParcel &data);
99 static bool Unmarshalling(ClientState &output, MessageParcel &data);
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dtext_listener_inner_api_test.cpp65 imc_->clientInfo_.state = ClientState::ACTIVE; in GetIMCAttached()
640 TextListenerInnerApiTest::imc_->clientInfo_.state = ClientState::INACTIVE;
693 TextListenerInnerApiTest::imc_->clientInfo_.state = ClientState::INACTIVE;
H A Dinput_method_private_member_test.cpp700 imc->clientInfo_.state = ClientState::ACTIVE;
702 EXPECT_EQ(imc->clientInfo_.state, ClientState::INACTIVE);
H A Dinput_method_ability_test.cpp163 imc_->clientInfo_.state = ClientState::ACTIVE; in GetIMCAttachIMA()
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
H A Dinput_method_controller.cpp186 clientInfo_.state = ClientState::INACTIVE; in DeactivateClient()
253 clientInfo_.state = ClientState::ACTIVE; in Attach()
1114 if (clientInfo_.state != ClientState::ACTIVE) { in IsEditable()
1128 if (clientInfo_.state != ClientState::ACTIVE) { in IsBound()
/ohos5.0/base/inputmethod/imf/services/src/
H A Dperuser_session.cpp142 std::variant<bool, uint32_t, ImeType, ClientState, TextTotalConfig>> &updateInfos) in UpdateClientInfo() argument
168 info->state = std::get<ClientState>(updateInfo.second); in UpdateClientInfo()
507 UpdateClientInfo(client->AsObject(), { { UpdateFlag::STATE, ClientState::INACTIVE } }); in DeactivateClient()
601 { UpdateFlag::STATE, ClientState::ACTIVE } }); in BindClientWithIme()
/ohos5.0/base/inputmethod/imf/services/include/
H A Dperuser_session.h195 …const std::unordered_map<UpdateFlag, std::variant<bool, uint32_t, ImeType, ClientState, TextTotalC…