/chre-3.4.0/platform/shared/ |
D | assert.cc | 23 void doAssert(const char *filename, size_t line) { in doAssert() argument 24 FATAL_ERROR("Assertion failure at %s:%zu", filename, line); in doAssert()
|
/chre-3.4.0/platform/linux/ |
D | assert.cc | 29 void doAssert(const char *filename, size_t line) { in doAssert() argument 30 LOGE("Assertion failure at %s:%zu", filename, line); in doAssert()
|
D | platform_nanoapp.cc | 83 void PlatformNanoappBase::loadFromFile(const std::string &filename) { in loadFromFile() argument 85 mFilename = filename; in loadFromFile()
|
/chre-3.4.0/host/common/audio_stress_test/ |
D | audio_stress_test.cc | 80 void sendLoadNanoappRequest(SocketClient &client, const char *filename, in sendLoadNanoappRequest() argument 82 std::ifstream file(filename, std::ios::binary | std::ios::ate); in sendLoadNanoappRequest() 84 LOGE("Couldn't open file '%s': %s", filename, strerror(errno)); in sendLoadNanoappRequest()
|
/chre-3.4.0/platform/linux/include/chre/target_platform/ |
D | platform_nanoapp_base.h | 43 void loadFromFile(const std::string &filename);
|
/chre-3.4.0/platform/slpi/ |
D | platform_nanoapp.cc | 197 char filename[kMaxFilenameLen]; in openNanoappFromBuffer() local 198 snprintf(filename, sizeof(filename), "%016" PRIx64, mExpectedAppId); in openNanoappFromBuffer() 200 mDsoHandle = dlopenbuf(filename, static_cast<const char *>(mAppBinary), in openNanoappFromBuffer()
|
/chre-3.4.0/host/common/test/ |
D | chre_test_client.cc | 185 bool readFileContents(const char *filename, std::vector<uint8_t> *buffer) { in readFileContents() argument 187 std::ifstream file(filename, std::ios::binary | std::ios::ate); in readFileContents() 189 LOGE("Couldn't open file '%s': %d (%s)", filename, errno, strerror(errno)); in readFileContents() 196 LOGE("Couldn't read from file '%s': %d (%s)", filename, errno, in readFileContents() 249 void sendLoadNanoappRequest(SocketClient &client, const char *filename, in sendLoadNanoappRequest() argument 253 if (readFileContents(filename, &buffer)) { in sendLoadNanoappRequest()
|
/chre-3.4.0/host/common/ |
D | daemon_base.cc | 208 bool ChreDaemonBase::readFileContents(const char *filename, in readFileContents() argument 211 std::ifstream file(filename, std::ios::binary | std::ios::ate); in readFileContents() 213 LOGE("Couldn't open file '%s': %d (%s)", filename, errno, strerror(errno)); in readFileContents() 220 LOGE("Couldn't read from file '%s': %d (%s)", filename, errno, in readFileContents()
|
/chre-3.4.0/platform/include/chre/platform/ |
D | assert.h | 92 void doAssert(const char *filename, size_t line);
|
/chre-3.4.0/host/common/include/chre_host/ |
D | daemon_base.h | 80 static bool readFileContents(const char *filename,
|
/chre-3.4.0/host/common/test/power_test/ |
D | chre_power_test_client.cc | 346 bool sendLoadNanoappRequest(SocketClient &client, const char *filename, in sendLoadNanoappRequest() argument 349 std::ifstream file(filename, std::ios::binary | std::ios::ate); in sendLoadNanoappRequest() 351 LOGE("Couldn't open file '%s': %s", filename, strerror(errno)); in sendLoadNanoappRequest() 390 const char *filename, uint64_t appId, uint32_t appVersion, in loadNanoapp() argument 392 if (!sendLoadNanoappRequest(client, filename, appId, appVersion, apiVersion, in loadNanoapp()
|
/chre-3.4.0/chpp/api_parser/ |
D | chre_api_to_chpp.py | 831 filename = self.service_name + "_types.h" 833 print("Generating {} ... ".format(filename), end='', flush=True) 834 output_file = os.path.join(system_chre_abs_path(), CHPP_PARSER_INCLUDE_PATH, filename) 866 filename = self.service_name + "_convert.c" 868 print("Generating {} ... ".format(filename), end='', flush=True) 870 output_file = os.path.join(system_chre_abs_path(), CHPP_PARSER_SOURCE_PATH, filename)
|
D | README.md | 80 "filename": "chre_api/include/chre_api/chre/wwan.h",
|
/chre-3.4.0/platform/shared/idl/ |
D | host_messages.fbs | 109 /// 2. CHRE stores the filename and waits until its event loop is able to
|
/chre-3.4.0/doc/ |
D | nanoapp_developer_guide.md | 58 * `NANOAPP_NAME`: sets the output filename of the binary
|