/system/tools/aidl/ |
D | type_namespace.cpp | 102 string error_msg; in GetReturnType() local 103 const ValidatableType* return_type = GetValidatableType(raw_type, &error_msg); in GetReturnType() 108 << error_msg; in GetReturnType() 122 string error_msg; in GetArgType() local 123 const ValidatableType* t = GetValidatableType(a.GetType(), &error_msg); in GetArgType() 125 LOG(ERROR) << error_prefix << error_msg; in GetArgType()
|
D | type_namespace.h | 133 const AidlType& type, std::string* error_msg) const = 0; 185 const AidlType& type, std::string* error_msg) const override; 383 const AidlType& aidl_type, std::string* error_msg) const { in GetValidatableType() argument 388 *error_msg = "unknown type"; in GetValidatableType() 394 *error_msg = "void type cannot be an array"; in GetValidatableType() 399 *error_msg = "void type cannot be annotated"; in GetValidatableType() 408 *error_msg = StringPrintf("Type cannot be marked as both %s and %s.", in GetValidatableType() 423 *error_msg = StringPrintf("type '%s' may not be annotated as %s.", in GetValidatableType() 436 *error_msg = StringPrintf( in GetValidatableType() 444 *error_msg = "type cannot be marshalled"; in GetValidatableType() [all …]
|
/system/core/libnativeloader/ |
D | native_loader.cpp | 130 std::string error_msg; in Initialize() local 131 LOG_ALWAYS_FATAL_IF(!ReadConfig(public_native_libraries_system_config, &sonames, &error_msg), in Initialize() 133 public_native_libraries_system_config.c_str(), error_msg.c_str()); in Initialize() 171 std::string* error_msg = nullptr) { in ReadConfig() argument 175 if (error_msg) *error_msg = strerror(errno); in ReadConfig() 190 if (error_msg) *error_msg = "Malformed line: " + line; in ReadConfig()
|
/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)
|
/system/webservd/webservd/ |
D | dbus_request_handler.cc | 35 std::string error_msg{"Internal Server Error"}; in OnError() local 37 error_msg += "\r\n" + error->GetMessage(); in OnError() 40 brillo::mime::text::kPlain, error_msg); in OnError()
|
D | config.cc | 115 std::string error_msg; in LoadConfigFromString() local 118 config_json, base::JSON_ALLOW_TRAILING_COMMAS, nullptr, &error_msg) in LoadConfigFromString() 126 error_msg.c_str()); in LoadConfigFromString()
|
/system/netd/tests/dns_responder/ |
D | dns_responder.cpp | 39 char error_msg[512] = { 0 }; in errno2str() local 40 if (strerror_r(errno, error_msg, sizeof(error_msg))) in errno2str() 42 return std::string(error_msg); in errno2str() 616 char error_msg[512] = { 0 }; in startServer() local 617 if (strerror_r(errno, error_msg, sizeof(error_msg))) in startServer() 618 strncpy(error_msg, "UNKNOWN", sizeof(error_msg)); in startServer() 619 APLOGI("epoll_create() failed: %s", error_msg); in startServer()
|
/system/connectivity/shill/ |
D | icmp_session.cc | 238 void IcmpSession::OnEchoReplyError(const std::string& error_msg) { in OnEchoReplyError() argument 239 LOG(ERROR) << __func__ << ": " << error_msg; in OnEchoReplyError()
|
D | icmp_session.h | 123 void OnEchoReplyError(const std::string& error_msg);
|
D | crypto_util_proxy.h | 122 void HandleShimReadError(const std::string& error_msg);
|
D | http_request.h | 113 void OnServerReadError(const std::string& error_msg);
|
D | http_proxy.h | 110 void OnReadError(const std::string& error_msg);
|
D | crypto_util_proxy.cc | 318 void CryptoUtilProxy::HandleShimReadError(const string& error_msg) { in HandleShimReadError() argument 319 Error e(Error::kOperationFailed, error_msg); in HandleShimReadError()
|
D | http_request_unittest.cc | 277 void GetDNSResultFailure(const string& error_msg) { in GetDNSResultFailure() argument 278 Error error(Error::kOperationFailed, error_msg); in GetDNSResultFailure()
|
/system/connectivity/apmanager/ |
D | hostapd_monitor.cc | 225 void HostapdMonitor::OnReadError(const string& error_msg) { in OnReadError() argument 227 << error_msg; in OnReadError()
|
D | hostapd_monitor.h | 82 void OnReadError(const std::string& error_msg);
|
/system/connectivity/dhcp_client/ |
D | dhcpv4.h | 54 void OnReadError(const std::string& error_msg);
|
/system/connectivity/shill/net/ |
D | rtnl_handler.h | 167 void OnReadError(const std::string& error_msg);
|
D | rtnl_handler.cc | 506 void RTNLHandler::OnReadError(const string& error_msg) { in OnReadError() argument 508 << error_msg; in OnReadError()
|
D | netlink_manager.h | 366 void OnReadError(const std::string& error_msg);
|
D | netlink_manager.cc | 823 void NetlinkManager::OnReadError(const string& error_msg) { in OnReadError() argument 828 << error_msg; in OnReadError()
|
/system/update_engine/ |
D | update_engine_client.cc | 522 string error_msg = chromeos_update_engine::utils::ErrorCodeToString(code); in ProcessFlags() local 525 last_attempt_error, error_msg.c_str()); in ProcessFlags()
|
/system/connectivity/shill/vpn/ |
D | openvpn_management_server.h | 104 void OnInputError(const std::string& error_msg);
|
D | openvpn_management_server.cc | 203 void OpenVPNManagementServer::OnInputError(const std::string& error_msg) { in OnInputError() argument 204 LOG(ERROR) << error_msg; in OnInputError()
|
/system/core/adb/ |
D | sockets.cpp | 779 std::string error_msg = "unknown failure"; in smart_socket_enqueue() local 780 s->transport = acquire_one_transport(kTransportAny, nullptr, nullptr, &error_msg); in smart_socket_enqueue() 782 SendFail(s->peer->fd, error_msg); in smart_socket_enqueue()
|