Lines Matching refs:info
77 IMSA_HILOGD("info is existed.");
88 auto info = std::make_shared<InputClientInfo>(clientInfo);
89 std::weak_ptr<InputClientInfo> weakClientInfo = info;
90 info->deathRecipient->SetDeathRecipient([this, weakClientInfo](const wptr<IRemoteObject> &) {
98 auto obj = info->client->AsObject();
103 if (obj->IsProxyObject() && !obj->AddDeathRecipient(info->deathRecipient)) {
108 mapClients_.insert({ inputClient, info });
145 auto info = GetClientInfo(client);
146 if (info == nullptr) {
147 IMSA_HILOGE("client info is not exist!");
153 info->eventFlag = std::get<uint32_t>(updateInfo.second);
157 info->isShowKeyboard = std::get<bool>(updateInfo.second);
161 info->bindImeType = std::get<ImeType>(updateInfo.second);
165 info->state = std::get<ClientState>(updateInfo.second);
169 info->config = std::get<TextTotalConfig>(updateInfo.second);
173 info->uiExtensionTokenId = std::get<uint32_t>(updateInfo.second);
187 IMSA_HILOGE("client info is nullptr!");
211 IMSA_HILOGE("client info is nullptr!");
967 IMSA_HILOGE("failed to get cur client info!");
983 IMSA_HILOGE("failed to get cur client info!");
1116 int32_t PerUserSession::OnPanelStatusChange(const InputWindowStatus &status, const ImeWindowInfo &info)
1133 int32_t ret = clientInfo->client->OnPanelStatusChange(status, info);
1150 auto info = GetClientInfo(remoteClient);
1151 if (info == nullptr) {
1152 IMSA_HILOGE("info is nullptr!");
1155 if (info->eventFlag == NO_EVENT_ON && info->bindImeType == ImeType::NONE) {