Home
last modified time | relevance | path

Searched refs:retcode (Results 1 – 13 of 13) sorted by relevance

/aosp12/system/core/fastboot/fuzzy_fastboot/
H A Dmain.cpp133 if (*retcode) { in PartitionHash()
1060 int retcode; in TEST_P() local
1101 int retcode; in TEST_P() local
1174 int retcode; in TEST_P() local
1207 int retcode; in TEST_P() local
1235 int retcode; in TEST_P() local
1263 int retcode; in TEST_P() local
1329 int retcode; in TEST_P() local
1608 int retcode; in TEST_P() local
1633 int retcode; in TEST_P() local
[all …]
/aosp12/frameworks/base/startop/scripts/iorap/
H A Dcollector273 local retcode=0
282 retcode=$?
283 if [[ $retcode -ne 0 ]]; then
285 return $retcode
296 retcode=$?
297 if [[ $retcode -ne 0 ]]; then
299 return $retcode
304 retcode=$?
305 if [[ $retcode -ne 0 ]]; then
307 return $retcode
H A Dcommon168 retcode=$?
172 if [[ $retcode -eq 0 ]]; then
181 return $retcode
/aosp12/art/tools/common/
H A Dcommon.py153 retcode = RetCode.SUCCESS
155 retcode = RetCode.ERROR
159 retcode = RetCode.TIMEOUT
160 return (output, stderr_output, retcode)
163 def _LogCmdOutput(logfile, cmd, output, retcode): argument
173 CommandListToCommandString(cmd), output, retcode))
200 return retcode
344 _LogCmdOutput(self._logfile, cmd, output, retcode)
345 return (output, retcode)
473 _LogCmdOutput(self._logfile, cmd, output, retcode)
[all …]
/aosp12/system/media/camera/docs/
H A Dmetadata-check-dependencies20 retcode=0
73 retcode=1
103 retcode=1
114 exit $retcode
/aosp12/frameworks/base/startop/scripts/app_startup/
H A Dparse_metrics132 local retcode
151 retcode=$?
153 if [[ $retcode -ne 0 ]]; then
157 return $retcode
172 return $retcode
/aosp12/hardware/google/apf/
H A Dapf_run_test.sh8 retcode=0
30 retcode=1
35 exit $retcode
/aosp12/system/update_engine/
H A Dlibcurl_http_fetcher.cc426 CURLMcode retcode = CURLM_CALL_MULTI_PERFORM; in CurlPerformOnce() local
430 while (CURLM_CALL_MULTI_PERFORM == retcode) { in CurlPerformOnce()
431 retcode = curl_multi_perform(curl_multi_handle_, &running_handles); in CurlPerformOnce()
442 (retcode == CURLM_OUT_OF_MEMORY || retcode == CURLM_INTERNAL_ERROR)) { in CurlPerformOnce()
445 << retcode; in CurlPerformOnce()
446 } else if (retcode != CURLM_OK) { in CurlPerformOnce()
447 LOG(ERROR) << "curl_multi_perform returns error: " << retcode; in CurlPerformOnce()
/aosp12/art/tools/bisection_search/
H A DREADME.md32 ./bisection_search.py --raw-cmd='run.sh -cp classes.dex Test' --expected-retcode SUCCESS
33 …/bisection_search.py --raw-cmd='/bin/sh art {ARGS} -cp classes.dex Test' --expected-retcode SUCCESS
42 [--expected-retcode {SUCCESS,TIMEOUT,ERROR}]
65 --expected-retcode {SUCCESS,TIMEOUT,ERROR} expected normalized return code
/aosp12/hardware/interfaces/camera/provider/2.4/vts/functional/
H A DVtsHalCameraProviderV2_4TargetTest.cpp6621 ASSERT_TRUE(0 == retcode); in getMultiResolutionStreamConfigurations()
6625 ASSERT_TRUE(-ENOENT == retcode || 0 == retcode); in getMultiResolutionStreamConfigurations()
6629 ASSERT_TRUE(-ENOENT == retcode || 0 == retcode); in getMultiResolutionStreamConfigurations()
6641 ASSERT_TRUE(0 == retcode); in getPrivacyTestPatternModes()
7993 if (0 == retcode || entry.count > 0) { in verifyCameraCharacteristics()
8000 if (0 == retcode || entry.count > 0) { in verifyCameraCharacteristics()
8007 if (0 == retcode || entry.count > 0) { in verifyCameraCharacteristics()
8014 if (0 == retcode && entry.count > 0) { in verifyCameraCharacteristics()
8028 if (0 == retcode && entry.count > 0) { in verifyCameraCharacteristics()
8054 int retcode = 0; in verifyExtendedSceneModeCharacteristics() local
[all …]
/aosp12/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py57 retcode = p.poll()
58 if retcode != 0:
62 e = subprocess.CalledProcessError(retcode, c)
/aosp12/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp848 const status_t retcode = getMetadata(update_only, apply_filter, reply); in onTransact() local
850 reply->writeInt32(retcode); in onTransact()
/aosp12/frameworks/base/media/java/android/media/
H A DMediaPlayer.java754 int retcode = native_invoke(request, reply); in invoke() local
756 if (retcode != 0) { in invoke()
757 throw new RuntimeException("failure code: " + retcode); in invoke()