Searched refs:error_msg (Results 1 – 11 of 11) sorted by relevance
/system/iorap/src/inode2filename/ |
D | inode.cc | 31 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()
|
D | out_of_process_inode_resolver.cc | 339 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()
|
D | inode.h | 89 static bool Parse(const std::string& str, /*out*/Inode* out, /*out*/std::string* error_msg);
|
D | main.cc | 290 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/ |
D | requisition_util.cc | 49 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/ |
D | KeystoreResponse.h | 33 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/ |
D | metadata_validate.py | 213 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) 243 … error_msg = ("Clone '%s' HAL version '%d.%d' is older than entry target HAL version '%d.%d'" \ 245 validate_error(error_msg)
|
/system/extras/simpleperf/ |
D | read_dex_file.cpp | 71 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/ |
D | test_utils.h | 91 int WaitProgram(const pid_t pid, const int pipe, std::string* error_msg);
|
D | test_utils.cpp | 183 int WaitProgram(const int pid, const int pipe, std::string* error_msg) { in WaitProgram() argument 194 error_msg->append(buf, n); in WaitProgram()
|
D | main.cpp | 1586 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()
|