Home
last modified time | relevance | path

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

/system/media/camera/docs/
Dmetadata-check-dependencies20 retcode=0
73 retcode=1
103 retcode=1
114 exit $retcode
/system/core/fastboot/fuzzy_fastboot/
Dmain.cpp98 bool PartitionHash(FastBootDriver* fb, const std::string& part, std::string* hash, int* retcode, in PartitionHash() argument
130 *retcode = WaitProgram(pid, pipe, hash); in PartitionHash()
131 if (*retcode) { in PartitionHash()
1008 int retcode; in TEST_P() local
1011 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash, &retcode, &err_msg)) in TEST_P()
1013 EXPECT_EQ(retcode, 0) << err_msg; in TEST_P()
1049 int retcode; in TEST_P() local
1056 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash_before, &retcode, &err_msg)) in TEST_P()
1058 ASSERT_EQ(retcode, 0) << err_msg; in TEST_P()
1060 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash_after, &retcode, &err_msg)) in TEST_P()
[all …]
/system/update_engine/
Dlibcurl_http_fetcher.cc427 CURLMcode retcode = CURLM_CALL_MULTI_PERFORM; in CurlPerformOnce() local
431 while (CURLM_CALL_MULTI_PERFORM == retcode) { in CurlPerformOnce()
432 retcode = curl_multi_perform(curl_multi_handle_, &running_handles); in CurlPerformOnce()
443 (retcode == CURLM_OUT_OF_MEMORY || retcode == CURLM_INTERNAL_ERROR)) { in CurlPerformOnce()
446 << retcode; in CurlPerformOnce()
447 } else if (retcode != CURLM_OK) { in CurlPerformOnce()
448 LOG(ERROR) << "curl_multi_perform returns error: " << retcode; in CurlPerformOnce()