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