Searched refs:msg_queue (Results 1 – 4 of 4) sorted by relevance
/device/google/cuttlefish/host/libs/msg_queue/ |
D | README.md | 1 # msg_queue chapter 17 auto msg_queue = SysVMessageQueue::Create("unique_queue_name", false); 18 if (msg_queue == NULL) { 25 int rc = msg_queue->Send(&msg, message.length() + 1, true); 27 LOG(FATAL) << "Send: failed to send message to msg_queue"; 42 auto msg_queue = SysVMessageQueue::Create("unique_queue_name"); 43 if (msg_queue == NULL) { 48 int rc = msg_queue->Receive(&msg, MAX_MSG_SIZE, 1, true);
|
D | Android.bp | 23 "msg_queue.cc",
|
/device/google/cuttlefish/host/libs/metrics/ |
D | metrics_receiver.cc | 42 auto msg_queue = SysVMessageQueue::Create(queue_name, false); in SendHelper() local 43 if (msg_queue == NULL) { in SendHelper() 50 int rc = msg_queue->Send(&msg, message.length() + 1, true); in SendHelper()
|
/device/google/cuttlefish/host/commands/metrics/ |
D | host_receiver.cc | 36 auto msg_queue = SysVMessageQueue::Create(metrics_queue_name_); in ServerLoop() local 37 if (msg_queue == NULL) { in ServerLoop() 43 int rc = msg_queue->Receive(&msg, MAX_MSG_SIZE, 1, true); in ServerLoop()
|