Home
last modified time | relevance | path

Searched refs:Message (Results 1 - 25 of 63) sorted by relevance

123

/base/inputmethod/imf/common/include/
H A Dmessage.h26 class Message { class
30 Message(int32_t msgId, MessageParcel *msgContent);
31 explicit Message(const Message &msg);
32 Message &operator=(const Message &msg);
33 ~Message();
36 Message(const Message &&);
37 Message
[all...]
H A Dmessage_handler.h80 void SendMessage(Message *msg);
81 Message *GetMessage();
88 std::queue<Message *> mQueue; // Message queue, guarded by mMutex;
/base/inputmethod/imf/common/src/
H A Dmessage.cpp24 Message::Message(int32_t msgId, MessageParcel *msgContent) in Message() function in OHOS::MiscServices::Message
36 Message::Message(const Message &msg) in Message() function in OHOS::MiscServices::Message
50 Message &Message::operator=(const Message &msg) in operator =()
68 Message::~Message() in ~Message()
[all...]
H A Dmessage_handler.cpp30 Message *msg = mQueue.front(); in ~MessageHandler()
41 void MessageHandler::SendMessage(Message *msg) in SendMessage()
52 Message *MessageHandler::GetMessage() in GetMessage()
56 Message *msg = reinterpret_cast<Message *>(mQueue.front()); in GetMessage()
/base/security/access_token/services/common/app_manager/src/
H A Dapp_status_change_callback.cpp46 switch (static_cast<IApplicationStateObserver::Message>(code)) { in OnRemoteRequest()
47 case IApplicationStateObserver::Message::TRANSACT_ON_PROCESS_STATE_CHANGED: { in OnRemoteRequest()
51 case IApplicationStateObserver::Message::TRANSACT_ON_PROCESS_DIED: { in OnRemoteRequest()
55 case IApplicationStateObserver::Message::TRANSACT_ON_APP_STATE_CHANGED: { in OnRemoteRequest()
59 case IApplicationStateObserver::Message::TRANSACT_ON_APP_STOPPED: { in OnRemoteRequest()
H A Dapp_manager_access_proxy.cpp42 static_cast<uint32_t>(IAppMgr::Message::APP_GET_MGR_INSTANCE), data, reply, option); in GetAmsMgr()
80 static_cast<uint32_t>(IAppMgr::Message::REGISTER_APPLICATION_STATE_OBSERVER), data, reply, option); in RegisterApplicationStateObserver()
108 static_cast<uint32_t>(IAppMgr::Message::UNREGISTER_APPLICATION_STATE_OBSERVER), data, reply, option); in UnregisterApplicationStateObserver()
131 static_cast<uint32_t>(IAppMgr::Message::GET_FOREGROUND_APPLICATIONS), data, reply, option); in GetForegroundApplications()
/base/security/access_token/services/common/test/unittest/
H A Dinterface_code_test.cpp75 static_cast<uint32_t>(AccessToken::IAppMgr::Message::REGISTER_APPLICATION_STATE_OBSERVER)); // 12 in HWTEST_F()
77 static_cast<uint32_t>(AccessToken::IAppMgr::Message::UNREGISTER_APPLICATION_STATE_OBSERVER)); // 13 in HWTEST_F()
79 static_cast<uint32_t>(AccessToken::IAppMgr::Message::GET_FOREGROUND_APPLICATIONS)); // 14 in HWTEST_F()
90 ASSERT_EQ(static_cast<uint32_t>(AppExecFwk::IAmsMgr::Message::FORCE_KILL_APPLICATION_BY_ACCESS_TOKEN_ID), in HWTEST_F()
91 static_cast<uint32_t>(AccessToken::IAmsMgr::Message::FORCE_KILL_APPLICATION_BY_ACCESS_TOKEN_ID)); in HWTEST_F()
/base/notification/distributed_notification_service/services/ans/src/
H A Dos_account_manager_helper.cpp33 .Message("Get userId failed, uid = " + std::to_string(uid) + " ret " + std::to_string(ret)); in GetOsAccountLocalIdFromUid()
48 .Message("Get userId failed, callingUid = " + std::to_string(callingUid) + in GetCurrentCallingUserId()
63 .Message("Get foreground os account failed ret " + std::to_string(ret)); in GetCurrentActiveUserId()
76 .Message("Get all userId failed ret " + std::to_string(ret)); in GetAllOsAccount()
92 .Message("Get all active failed ret " + std::to_string(ret)); in GetAllActiveOsAccount()
105 .Message("Get all exist failed ret " + std::to_string(ret)); in CheckUserExists()
H A Dpermission_filter.cpp55 message.ErrorCode(ERR_ANS_PREFERENCES_NOTIFICATION_SLOT_ENABLED).Message("Slot type not exist."); in OnPublish()
64 message.ErrorCode(ERR_ANS_NOT_ALLOWED).Message("Notifications is off."); in OnPublish()
H A Dadvanced_notification_inline.cpp91 message.ErrorCode(result).Message("Check image size failed."); in CheckPictureSize()
97 message.ErrorCode(ERR_ANS_ICON_OVER_SIZE).Message("Check little image size failed."); in CheckPictureSize()
103 message.ErrorCode(ERR_ANS_ICON_OVER_SIZE).Message("Check overlay size failed."); in CheckPictureSize()
128 haMetaMessage = haMetaMessage.Message(message); in AddInformationInMessage()
H A Dadvanced_notification_subscriber_service.cpp121 message.Message("SubscribeSelf notification: " + std::to_string(errCode)); in SubscribeSelf()
145 message.Message("Unsubscribe notification: " + std::to_string(ERR_ANS_NON_SYSTEM_APP)); in Unsubscribe()
151 message.Message("Unsubscribe notification: " + std::to_string(ERR_ANS_PERMISSION_DENIED)); in Unsubscribe()
157 message.Message("Unsubscribe notification: " + std::to_string(ERR_ANS_INVALID_PARAM)); in Unsubscribe()
/base/startup/init/test/systest/
H A Dloopserver_systest.c41 Message msgHdr;
65 Message msgHeader;
278 uint32_t bufferSize = sizeof(Message); in SendMessageComplete()
279 Message *msg = (Message *)LE_GetBufferInfo(handle, NULL, &bufferSize); in SendMessageComplete()
311 static int MsgRebuild(MsgNode *message, const Message *msg) in MsgRebuild()
341 Message **outMsg, uint32_t *msgRecvLen, uint32_t *reminder) in GetMsgFromBuffer()
348 Message *message = *outMsg; in GetMsgFromBuffer()
360 if (*msgRecvLen < sizeof(Message)) { // recv partial message in GetMsgFromBuffer()
361 if ((bufferLen + *msgRecvLen) >= sizeof(Message)) { in GetMsgFromBuffer()
[all...]
H A Dloop_systest.h116 } Message; typedef
119 Message msgHdr;
136 Message *msg;
/base/notification/distributed_notification_service/services/ans/src/advanced_notification_publish/
H A Dbase_publish_process.cpp46 message.Message("Not SystemApp"); in CommonPublishCheck()
53 message.Message("CheckPermission denied"); in CommonPublishCheck()
68 .ErrorCode(ERR_ANS_DLP_HAP).Message("CommonPublishProcess failed"); in CommonPublishProcess()
/base/security/access_token/services/common/background_task_manager/src/
H A Dcontinuous_task_change_callback.cpp48 switch (static_cast<IBackgroundTaskSubscriber::Message>(code)) { in OnRemoteRequest()
49 case IBackgroundTaskSubscriber::Message::ON_CONTINUOUS_TASK_START: { in OnRemoteRequest()
53 case IBackgroundTaskSubscriber::Message::ON_CONTINUOUS_TASK_STOP: { in OnRemoteRequest()
H A Dbackground_task_manager_access_proxy.cpp48 static_cast<uint32_t>(IBackgroundTaskMgr::Message::SUBSCRIBE_BACKGROUND_TASK), data, reply, option); in SubscribeBackgroundTask()
80 static_cast<uint32_t>(IBackgroundTaskMgr::Message::UNSUBSCRIBE_BACKGROUND_TASK), data, reply, option); in UnsubscribeBackgroundTask()
109 static_cast<uint32_t>(IBackgroundTaskMgr::Message::GET_CONTINUOUS_TASK_APPS), data, reply, option); in GetContinuousTaskApps()
/base/inputmethod/imf/services/adapter/system_language_observer/src/
H A Dsystem_language_observer.cpp44 Message *msg = new (std::nothrow) Message(MessageID::MSG_ID_SYS_LANGUAGE_CHANGED, nullptr); in OnChange()
/base/inputmethod/imf/test/fuzztest/inputmethodsystemability_fuzzer/
H A Dinputmethodsystemability_fuzzer.cpp49 auto msg = std::make_shared<Message>(MessageID::MSG_ID_USER_START, parcel); in FuzzOnUser()
55 auto msg1 = std::make_shared<Message>(MessageID::MSG_ID_USER_REMOVED, parcel1); in FuzzOnUser()
64 auto msg2 = std::make_shared<Message>(MessageID::MSG_ID_PACKAGE_REMOVED, parcel2); in FuzzOnUser()
/base/inputmethod/imf/services/src/
H A Dinput_control_channel_stub.cpp66 Message *msg = new (std::nothrow) Message(MessageID::MSG_ID_HIDE_KEYBOARD_SELF, parcel); in HideKeyboardSelf()
/base/security/access_token/services/common/background_task_manager/include/
H A Dbackground_task_manager_access_proxy.h37 enum class Message { class in OHOS::Security::AccessToken::IBackgroundTaskSubscriber
51 enum class Message { class in OHOS::Security::AccessToken::IBackgroundTaskMgr
/base/security/access_token/services/accesstokenmanager/main/cpp/include/form_manager/
H A Dform_manager_access_proxy.h33 enum class Message { class in OHOS::Security::AccessToken::IJsFormStateObserver
46 enum class Message { class in OHOS::Security::AccessToken::IFormMgr
/base/web/webview/ohos_adapter/aafwk_adapter/src/
H A Daafwk_browser_host_impl.cpp32 memberFuncMap_[static_cast<uint32_t>(IBrowser::Message::QUERY_RENDER_SURFACE)] = in BrowserHost()
36 memberFuncMap_[static_cast<uint32_t>(IBrowser::Message::REPORT_THREAD)] = in BrowserHost()
40 memberFuncMap_[static_cast<uint32_t>(IBrowser::Message::PASS_SURFACE)] = in BrowserHost()
44 memberFuncMap_[static_cast<uint32_t>(IBrowser::Message::DESTROY_RENDER_SURFACE)] = in BrowserHost()
/base/security/access_token/services/accesstokenmanager/main/cpp/src/form_manager/
H A Dform_manager_access_proxy.cpp51 static_cast<uint32_t>(IFormMgr::Message::FORM_MGR_REGISTER_ADD_OBSERVER), data, reply, option); in RegisterAddObserver()
83 static_cast<uint32_t>(IFormMgr::Message::FORM_MGR_REGISTER_REMOVE_OBSERVER), data, reply, option); in RegisterRemoveObserver()
111 static_cast<uint32_t>(IFormMgr::Message::FORM_MGR_HAS_FORM_VISIBLE_WITH_TOKENID), data, reply, option); in HasFormVisible()
/base/theme/wallpaper_mgr/frameworks/native/include/
H A Di_wallpaper_callback.h24 enum Message { ONCALL = 0 }; enum in OHOS::WallpaperMgrService::IWallpaperCallback
/base/time/time_service/services/ipc/base/
H A Ditimer_notify_callback.h37 enum Message { enum in OHOS::MiscServices::ITimerNotifyCallback

Completed in 7 milliseconds

123