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.cpp100 bool PartitionHash(FastBootDriver* fb, const std::string& part, std::string* hash, int* retcode, in PartitionHash() argument
132 *retcode = WaitProgram(pid, pipe, hash); in PartitionHash()
133 if (*retcode) { in PartitionHash()
1060 int retcode; in TEST_P() local
1063 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash, &retcode, &err_msg)) in TEST_P()
1065 EXPECT_EQ(retcode, 0) << err_msg; in TEST_P()
1101 int retcode; in TEST_P() local
1108 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash_before, &retcode, &err_msg)) in TEST_P()
1110 ASSERT_EQ(retcode, 0) << err_msg; in TEST_P()
1112 ASSERT_TRUE(PartitionHash(fb.get(), part_name, &hash_after, &retcode, &err_msg)) in TEST_P()
[all …]
/system/update_engine/
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()