/test/vts/drivers/resource/resource_manager/ |
D | VtsResourceManager.cpp | 50 bool success = false; in ProcessHidlHandleCommand() local 124 success = new_handle_id != -1; in ProcessHidlHandleCommand() 132 success = read_success_bytes != -1; in ProcessHidlHandleCommand() 141 success = write_success_bytes != -1; in ProcessHidlHandleCommand() 147 success = hidl_handle_driver_.UnregisterHidlHandle(handle_id); in ProcessHidlHandleCommand() 154 hidl_handle_response->set_success(success); in ProcessHidlHandleCommand() 173 bool success = hidl_handle_driver_.GetHidlHandleAddress(handle_id, result); in GetHidlHandleAddress() local 174 return success; in GetHidlHandleAddress() 185 bool success = false; in ProcessHidlMemoryCommand() local 191 success = new_mem_id != -1; in ProcessHidlMemoryCommand() [all …]
|
/test/vts/utils/python/mirror/ |
D | resource_mirror.py | 114 if fmq_response is not None and fmq_response.success: 145 if fmq_response is not None and fmq_response.success: 174 return fmq_response.success 205 return fmq_response.success 273 return fmq_response.success 384 if fmq_response is not None and fmq_response.success: 440 if not response_msg.success: 443 return response_msg.success 468 if not response_msg.success: 471 return response_msg.success [all …]
|
/test/mlts/benchmark/jni/ |
D | run_tflite.cpp | 301 const bool success = runInference(); in benchmark() local 304 if (!success) { in benchmark() 419 const bool success = runCompilation(tempDir.get()); in getCompilationCacheSize() local 420 if (!success) { in getCompilationCacheSize() 464 const bool success = runCompilation(tempDir.get()); in benchmarkSingleTypeOfCompilation() local 465 if (!success) { in benchmarkSingleTypeOfCompilation() 493 const bool success = runCompilation(cacheDir); in benchmarkSingleTypeOfCompilation() local 496 if (!success) { in benchmarkSingleTypeOfCompilation() 522 bool success = benchmarkSingleTypeOfCompilation(type, maxNumIterations, warmupTimeout, nullptr); in benchmarkSingleTypeOfCompilationWithWarmup() local 524 if (!success) return false; in benchmarkSingleTypeOfCompilationWithWarmup() [all …]
|
D | benchmark_jni.cpp | 314 bool success = model->benchmark(data.data(), inferencesSeqMaxCount, timeoutSec, flags, &result); in Java_com_android_nn_benchmark_core_NNTestBase_runBenchmark() local 317 if (success) { in Java_com_android_nn_benchmark_core_NNTestBase_runBenchmark() 383 return success; in Java_com_android_nn_benchmark_core_NNTestBase_runBenchmark() 484 bool success = in Java_com_android_nn_benchmark_core_NNTestBase_runCompilationBenchmark() local 486 if (!success) return nullptr; in Java_com_android_nn_benchmark_core_NNTestBase_runCompilationBenchmark()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/ |
D | VtsPythonVirtualenvPreparer.java | 258 boolean success = false; in installDeps() 268 success = true; in installDeps() 273 if (!success) { in installDeps() 287 boolean success = installPipModuleLocally(dep); in installDeps() 296 if (success || (!success && installPipModule(dep))) { in installDeps() 297 success = true; in installDeps() 303 if (!success) { in installDeps()
|
/test/vts-testcase/kernel/ltp/shell_environment/definitions/base_definitions/ |
D | check_setup_cleanup.py | 109 success = method() 110 if not success and not self.note: 113 return success
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/ |
D | ProcessHelper.java | 188 boolean success; in run() 190 success = (mProcess.waitFor() == 0); in run() 193 success = false; in run() 196 return success; in run()
|
/test/vts/compilation_tools/vtsc/test/golden/DRIVER/ |
D | MemoryTest.driver.cpp | 138 …Allocator->allocate(func_msg.arg(0).hidl_memory_value().size(), [&](bool success, const hardware::… in CallFunction() argument 139 if (!success) { in CallFunction() 167 …Allocator->allocate(func_msg.arg(0).hidl_memory_value().size(), [&](bool success, const hardware::… in CallFunction() argument 168 if (!success) { in CallFunction() 206 …Allocator->allocate(func_msg.arg(0).hidl_memory_value().size(), [&](bool success, const hardware::… in CallFunction() argument 207 if (!success) { in CallFunction()
|
/test/vts/drivers/hal/server/ |
D | BinderServer.cpp | 149 bool success = driver_manager_->LoadTargetComponent( in LoadHal() local 153 cout << "Result: " << success << std::endl; in LoadHal() 154 if (success) { in LoadHal()
|
/test/vts/testcases/template/gtest_binary_test/ |
D | gtest_binary_test.py | 195 success = True 198 success = False 203 if success: 208 if not success:
|
/test/vts/agents/hal/ |
D | AgentRequestHandler.cpp | 464 bool success = client->ProcessFmqCommand(fmq_request, fmq_response); local 467 if (success) { 497 bool success = client->ProcessHidlMemoryCommand(hidl_memory_request, local 501 if (success) { 532 bool success = client->ProcessHidlHandleCommand(hidl_handle_request, local 536 if (success) {
|
/test/vts/drivers/hal/replayer/ |
D | VtsHidlHalReplayerMain.cpp | 129 bool success = replayer.ReplayTrace(trace_path, hal_service_instances); in main() local 130 if (success) { in main()
|
/test/vts/utils/python/systrace/ |
D | systrace_controller.py | 144 success = False 151 success = True 154 if not success:
|
/test/vts/drivers/hal/common/driver_manager/ |
D | VtsHalDriverManager.cpp | 529 bool success = in PreprocessHidlHalFunctionCallArgs() local 531 if (!success) { in PreprocessHidlHalFunctionCallArgs() 547 bool success = in PreprocessHidlHalFunctionCallArgs() local 549 if (!success) { in PreprocessHidlHalFunctionCallArgs() 566 bool success = in PreprocessHidlHalFunctionCallArgs() local 568 if (!success) { in PreprocessHidlHalFunctionCallArgs()
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | Processor.java | 280 boolean success = true; in run() 292 success = false; in run() 300 mCallback.onBenchmarkFinish(success); in run()
|
/test/vts/drivers/resource/hidl_memory_driver/ |
D | VtsHidlMemoryDriver.cpp | 45 mem_size, [&](bool success, const hidl_memory& mem) { in Allocate() argument 46 if (!success) { // error in Allocate()
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/ |
D | CrashTest.java | 36 default Optional<String> success() { return Optional.empty(); } in success() method
|
/test/vts/runners/target/gtest/ |
D | gtest_main.cpp | 1141 bool success = true; in PickOptions() local 1145 success = false; in PickOptions() 1148 if (success && output[0] != '/') { in PickOptions() 1154 success = false; in PickOptions() 1158 if (success && output.back() == '/') { in PickOptions() 1162 if (success) { in PickOptions() 1251 TEST_F(vts_selftest_DeathTest, success) { in TEST_F() argument
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/ |
D | NoOpCrashTest.java | 56 return success(); in call()
|
D | RandomGraphTest.java | 235 return success(); in call() 246 return success(); in call()
|
D | PerformanceDegradationTest.java | 141 return success(); in call() 221 return success(); in testDegradationForModels()
|
D | RunModelsInParallel.java | 196 return success(); in completedSuccessfully()
|
/test/vts/proto/ |
D | VtsResourceControllerMessage.proto | 146 optional bool success = 4; field 168 optional bool success = 1; field 197 optional bool success = 1; field
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage.jsp | 51 // success 52 console.log("success");
|
/test/vts/testcases/host/fmq_hidl_test/ |
D | VtsHalTestsMsgqV1_0HostTest.py | 110 [success, 113 success,
|