Lines Matching refs:Message

24 Message::Message(uint32_t what) : what_(what), arg1_(0), arg2_(0)  in Message()  function in OHOS::IntellVoiceUtils::Message
28 Message::Message(uint32_t what, int32_t arg1) : what_(what), arg1_(arg1) in Message() function in OHOS::IntellVoiceUtils::Message
32 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3) in Message() function in OHOS::IntellVoiceUtils::Message
37 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, const std::string &obj) in Message() function in OHOS::IntellVoiceUtils::Message
42 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3, const std::string &obj) in Message() function in OHOS::IntellVoiceUtils::Message
47 Message::Message(uint32_t what, std::shared_ptr<void> obj2) : what_(what), obj2_(obj2) in Message() function in OHOS::IntellVoiceUtils::Message
51 Message::Message(uint32_t what, std::shared_ptr<void> obj2, std::shared_ptr<void> obj3) in Message() function in OHOS::IntellVoiceUtils::Message
56 Message::Message(uint32_t what, void* voidPtr) : what_(what), voidPtr_(voidPtr) in Message() function in OHOS::IntellVoiceUtils::Message
60 Message::Message(uint32_t what, int32_t arg1, void* voidPtr) : what_(what), arg1_(arg1), voidPtr_(v… in Message() function in OHOS::IntellVoiceUtils::Message
64 Message::~Message() in ~Message()
89 shared_ptr<Message> MessageQueue::ReceiveMsg() in ReceiveMsg()
91 shared_ptr<Message> msg = nullptr; in ReceiveMsg()
104 bool MessageQueue::SendMsg(shared_ptr<Message> msg) in SendMsg()