Home
last modified time | relevance | path

Searched refs:error_msg (Results 1 – 11 of 11) sorted by relevance

/system/iorap/src/inode2filename/
Dinode.cc31 bool Inode::Parse(const std::string& str, Inode* out, std::string* error_msg) { in Parse() argument
33 DCHECK(error_msg != nullptr); in Parse()
40 *error_msg = "Failed to parse the whole device id as uint."; in Parse()
49 *error_msg = "Failed to parse inode as uint."; in Parse()
59 *error_msg = "Too few : separated items"; in Parse()
64 *error_msg = "Failed to parse 0th element as a uint"; in Parse()
69 *error_msg = "Failed to parse 1st element as a uint"; in Parse()
74 *error_msg = "Failed to parse 2nd element as a uint"; in Parse()
Dout_of_process_inode_resolver.cc339 std::string error_msg = "Invalid output: "; in EmitFromCommandWithArgv() local
340 error_msg += inode2filename_line; in EmitFromCommandWithArgv()
342 rxcpp::util::make_error_ptr(std::ios_base::failure(error_msg))); in EmitFromCommandWithArgv()
Dinode.h89 static bool Parse(const std::string& str, /*out*/Inode* out, /*out*/std::string* error_msg);
Dmain.cc290 std::string error_msg; in main() local
291 if (Inode::Parse(argstr, /*out*/&maybe_inode, /*out*/&error_msg)) { in main()
301 std::cerr << "Failed to parse inode (" << argstr << ") because: " << error_msg << std::endl; in main()
/system/update_engine/cros/
Drequisition_util.cc49 std::string error_msg; in ReadDeviceRequisition() local
52 deserializer.Deserialize(&error_code, &error_msg); in ReadDeviceRequisition()
56 << error_code << " and error: " << error_msg; in ReadDeviceRequisition()
/system/security/keystore/include/keystore/
DKeystoreResponse.h33 explicit KeystoreResponse(const int response_code, const String16& error_msg) in KeystoreResponse()
34 : response_code_(response_code), error_msg_(error_msg) {} in KeystoreResponse()
47 const std::optional<String16>& error_msg() const { return error_msg_; } in error_msg() function
/system/media/camera/docs/
Dmetadata_validate.py213 error_msg = ("Did not find corresponding clone entry '%s' " + \
215 validate_error(error_msg)
220 error_msg = ("Clone entry target '%s' did not match fully qualified " + \
222 validate_error(error_msg)
243error_msg = ("Clone '%s' HAL version '%d.%d' is older than entry target HAL version '%d.%d'" \
245 validate_error(error_msg)
/system/extras/simpleperf/
Dread_dex_file.cpp71 art_api::dex::DexFile::Error error_msg = in ReadSymbolsFromDexFileInMemory() local
74 LOG(WARNING) << "Failed to read dex file symbols: " << error_msg.ToString(); in ReadSymbolsFromDexFileInMemory()
/system/core/fastboot/fuzzy_fastboot/
Dtest_utils.h91 int WaitProgram(const pid_t pid, const int pipe, std::string* error_msg);
Dtest_utils.cpp183 int WaitProgram(const int pid, const int pipe, std::string* error_msg) { in WaitProgram() argument
194 error_msg->append(buf, n); in WaitProgram()
Dmain.cpp1586 std::string error_msg; in TEST_P() local
1587 int ret = WaitProgram(pid, pipe, &error_msg); in TEST_P()
1588 EXPECT_EQ(ret, 0) << error_msg; // Program exited correctly in TEST_P()