HomeSort by relevance Sort by last modified time
    Searched defs:msgToHost (Results 1 - 2 of 2) sorted by null

  /system/chre/core/
host_comms_manager.cc 46 MessageToHost *msgToHost = mMessagePool.allocate();
48 if (msgToHost == nullptr) {
51 msgToHost->appId = nanoapp->getAppId();
52 msgToHost->message.wrap(static_cast<uint8_t *>(messageData), messageSize);
53 msgToHost->toHostData.hostEndpoint = hostEndpoint;
54 msgToHost->toHostData.messageType = messageType;
55 msgToHost->toHostData.nanoappFreeFunction = freeCallback;
59 msgToHost->toHostData.reserved = kMessageToHostReservedFieldValue;
61 success = mHostLink.sendMessage(msgToHost);
63 mMessagePool.deallocate(msgToHost);
    [all...]
  /system/chre/platform/slpi/
host_link.cc 87 const MessageToHost *msgToHost = nullptr) {
89 data.msgToHost = msgToHost;
99 const MessageToHost *msgToHost;
296 int generateMessageToHost(const MessageToHost *msgToHost, unsigned char *buffer,
301 FlatBufferBuilder builder(msgToHost->message.size() + kFixedSizePortion);
303 builder, msgToHost->appId, msgToHost->toHostData.messageType,
304 msgToHost->toHostData.hostEndpoint, msgToHost->message.data()
    [all...]

Completed in 373 milliseconds