Home
last modified time | relevance | path

Searched refs:LoadNanoappRequest (Results 1 – 6 of 6) sorted by relevance

/system/chre/platform/shared/include/chre/platform/shared/
Dhost_messages_generated.h24 struct LoadNanoappRequest;
61 LoadNanoappRequest = 6, enumerator
131 template<> struct ChreMessageTraits<LoadNanoappRequest> {
132 static const ChreMessage enum_value = ChreMessage::LoadNanoappRequest;
705 struct LoadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
766 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TRANSACTION_ID, transaction_id, 0);
769 fbb_.AddElement<uint64_t>(LoadNanoappRequest::VT_APP_ID, app_id, 0);
772 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_APP_VERSION, app_version, 0);
775 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TARGET_API_VERSION, target_api_version, 0);
778 fbb_.AddOffset(LoadNanoappRequest::VT_APP_BINARY, app_binary);
[all …]
/system/chre/host/common/include/chre_host/
Dhost_messages_generated.h30 struct LoadNanoappRequest;
80 LoadNanoappRequest = 6, enumerator
150 template<> struct ChreMessageTraits<LoadNanoappRequest> {
151 static const ChreMessage enum_value = ChreMessage::LoadNanoappRequest;
244 return type == ChreMessage::LoadNanoappRequest ?
957 typedef LoadNanoappRequest TableType;
1014 struct LoadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
1096 …static flatbuffers::Offset<LoadNanoappRequest> Pack(flatbuffers::FlatBufferBuilder &_fbb, const Lo…
1103 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TRANSACTION_ID, transaction_id, 0);
1106 fbb_.AddElement<uint64_t>(LoadNanoappRequest::VT_APP_ID, app_id, 0);
[all …]
/system/chre/host/common/
Dhost_protocol_host.cc178 finalize(builder, fbs::ChreMessage::LoadNanoappRequest, request.Union()); in encodeLoadNanoappRequestForBinary()
191 finalize(builder, fbs::ChreMessage::LoadNanoappRequest, request.Union()); in encodeLoadNanoappRequestForFile()
/system/chre/platform/shared/idl/
Dhost_messages.fbs88 /// 1. The loader sends a LoadNanoappRequest message to CHRE. app_binary must
101 /// 1. The loader sends a LoadNanoappRequest message to CHRE. If the request
104 /// fragments must be delivered before a new LoadNanoappRequest can be
111 /// multiple LoadNanoappRequest with incremental nanoapp binary fragments.
123 table LoadNanoappRequest {
242 LoadNanoappRequest,
/system/chre/platform/shared/
Dhost_protocol_chre.cc76 case fbs::ChreMessage::LoadNanoappRequest: { in decodeMessageFromHost()
77 const auto *request = static_cast<const fbs::LoadNanoappRequest *>( in decodeMessageFromHost()
/system/chre/platform/android/
Dhost_link.cc201 case fbs::ChreMessage::LoadNanoappRequest: in handleMessageFromHost()