Home
last modified time | relevance | path

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

/system/chre/host/common/
Dfragmented_load_transaction.cc51 uint32_t targetApiVersion, const std::vector<uint8_t>& appBinary, in FragmentedLoadTransaction() argument
63 appBinary.size(), getSubVector(appBinary, byteIndex, fragmentSize)); in FragmentedLoadTransaction()
67 getSubVector(appBinary, byteIndex, fragmentSize)); in FragmentedLoadTransaction()
71 } while (byteIndex < appBinary.size()); in FragmentedLoadTransaction()
Dhost_protocol_host.cc174 auto appBinary = builder.CreateVector(nanoappBinary); in encodeLoadNanoappRequestForBinary() local
176 builder, transactionId, appId, appVersion, targetApiVersion, appBinary, in encodeLoadNanoappRequestForBinary()
186 auto appBinary = builder.CreateVector(emptyAppBinary); in encodeLoadNanoappRequestForFile() local
189 builder, transactionId, appId, appVersion, targetApiVersion, appBinary, in encodeLoadNanoappRequestForFile()
/system/chre/host/hal_generic/
Dgeneric_context_hub.cc222 uint32_t hubId, const NanoAppBinary& appBinary, uint32_t transactionId) { in loadNanoApp() argument
235 uint32_t targetApiVersion = (appBinary.targetChreApiMajorVersion << 24) | in loadNanoApp()
236 (appBinary.targetChreApiMinorVersion << 16); in loadNanoApp()
238 transactionId, appBinary.appId, appBinary.appVersion, targetApiVersion, in loadNanoApp()
239 appBinary.customBinary, kLoadFragmentSizeBytes); in loadNanoApp()
250 appBinary.customBinary.size(), appBinary.appId, transactionId, result); in loadNanoApp()
Dgeneric_context_hub.h63 …Return<Result> loadNanoApp(uint32_t hubId, const NanoAppBinary& appBinary, uint32_t transactionId)…
/system/chre/platform/shared/
Dhost_protocol_chre.cc79 const flatbuffers::Vector<uint8_t> *appBinary = request->app_binary(); in decodeMessageFromHost() local
85 appBinary->data(), appBinary->size(), appBinaryFilename, in decodeMessageFromHost()
/system/chre/host/common/include/chre_host/
Dfragmented_load_transaction.h79 uint32_t targetApiVersion, const std::vector<uint8_t>& appBinary,