Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 26) sorted by relevance

12

/test/vts/drivers/resource/resource_manager/
DVtsResourceManager.cpp50 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/
Dresource_mirror.py114 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/
Drun_tflite.cpp301 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 …]
Dbenchmark_jni.cpp314 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/
DVtsPythonVirtualenvPreparer.java258 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/
Dcheck_setup_cleanup.py109 success = method()
110 if not success and not self.note:
113 return success
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/
DProcessHelper.java188 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/
DMemoryTest.driver.cpp138 …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/
DBinderServer.cpp149 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/
Dgtest_binary_test.py195 success = True
198 success = False
203 if success:
208 if not success:
/test/vts/agents/hal/
DAgentRequestHandler.cpp464 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/
DVtsHidlHalReplayerMain.cpp129 bool success = replayer.ReplayTrace(trace_path, hal_service_instances); in main() local
130 if (success) { in main()
/test/vts/utils/python/systrace/
Dsystrace_controller.py144 success = False
151 success = True
154 if not success:
/test/vts/drivers/hal/common/driver_manager/
DVtsHalDriverManager.cpp529 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/
DProcessor.java280 boolean success = true; in run()
292 success = false; in run()
300 mCallback.onBenchmarkFinish(success); in run()
/test/vts/drivers/resource/hidl_memory_driver/
DVtsHidlMemoryDriver.cpp45 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/
DCrashTest.java36 default Optional<String> success() { return Optional.empty(); } in success() method
/test/vts/runners/target/gtest/
Dgtest_main.cpp1141 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/
DNoOpCrashTest.java56 return success(); in call()
DRandomGraphTest.java235 return success(); in call()
246 return success(); in call()
DPerformanceDegradationTest.java141 return success(); in call()
221 return success(); in testDegradationForModels()
DRunModelsInParallel.java196 return success(); in completedSuccessfully()
/test/vts/proto/
DVtsResourceControllerMessage.proto146 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/
Dshow_coverage.jsp51 // success
52 console.log("success");
/test/vts/testcases/host/fmq_hidl_test/
DVtsHalTestsMsgqV1_0HostTest.py110 [success,
113 success,

12