Home
last modified time | relevance | path

Searched refs:ErrorMessage (Results 1 – 6 of 6) sorted by relevance

/system/tools/aidl/
Doptions.h36 class ErrorMessage {
38 ErrorMessage() = default;
39 ErrorMessage(const ErrorMessage&) {} in ErrorMessage() function
43 ErrorMessage& operator<<(T& t) {
49 ErrorMessage& operator<<(const T& t) {
55 ErrorMessage& operator<<(std::ostream& (*f)(std::ostream&)) {
64 std::vector<const char*> Parse(int argc, const char* const argv[], ErrorMessage& error_message);
192 ErrorMessage error_message_;
Doptions.cpp540 ErrorMessage& error_message) { in Parse()
/system/gsid/
Dgsi_tool.cpp72 static std::string ErrorMessage(const android::binder::Status& status, in ErrorMessage() function
271 std::cerr << "Could not open DSU installation: " << ErrorMessage(status, error) << "\n"; in Install()
277 std::cerr << "Could not start live image install: " << ErrorMessage(status, error) in Install()
283 std::cerr << "Could not closePartition(userdata): " << ErrorMessage(status, error) in Install()
291 std::cerr << "Could not start live image install: " << ErrorMessage(status, error) << "\n"; in Install()
300 std::cerr << "Could not commit live image data: " << ErrorMessage(status) << "\n"; in Install()
307 << "): " << ErrorMessage(status, error) << std::endl; in Install()
313 std::cerr << "Could not close DSU installation: " << ErrorMessage(status, error) << "\n"; in Install()
320 std::cerr << "Could not get the active DSU slot: " << ErrorMessage(status) << "\n"; in Install()
325 std::cerr << "Could not make live image bootable: " << ErrorMessage(status, error) << "\n"; in Install()
[all …]
/system/iorap/src/inode2filename/
Dinode_result.cc21 std::optional<std::string_view> InodeResult::ErrorMessage() const { in ErrorMessage() function in iorap::inode2filename::InodeResult
55 os << " (" << *result.ErrorMessage() << ")"; in operator <<()
Dinode_result.h75 std::optional<std::string_view> ErrorMessage() const;
Dmain.cc416 << " '" << *result.ErrorMessage() << "'" << std::endl; in main()