HomeSort by relevance Sort by last modified time
    Searched refs:error_name (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/chromeos/network/
network_handler_callbacks.cc 26 const std::string& error_name,
28 return CreateDBusErrorData(path, error_name, error_detail, "", "");
33 const std::string& error_name,
38 error_name,
39 make_scoped_ptr(CreateErrorData(path, error_name, error_detail)));
44 const std::string& error_name,
49 error_data->SetString(kErrorName, error_name);
58 void ShillErrorCallbackFunction(const std::string& error_name,
69 NET_LOG_ERROR(error_name, detail);
74 CreateDBusErrorData(path, error_name, detail
    [all...]
network_handler_callbacks.h 33 void(const std::string& error_name,
46 const std::string& error_name,
53 const std::string& error_name,
58 const std::string& error_name,
64 // |error_name| is the error name passed to |error_callback|.
69 const std::string& error_name,
network_connection_handler.h 52 // Constants for |error_name| from |error_callback| for Connect.
88 // Constants for |error_name| from |error_callback| for Disconnect.
98 // On failure, |error_callback| will be called with |error_name| one of the
113 // On failure, |error_callback| will be called with |error_name| one of:
184 const std::string& error_name,
190 const std::string& error_name,
197 const std::string& error_name);
  /external/chromium_org/third_party/skia/src/core/
SkError.cpp 104 const char *error_name = NULL; local
107 error_name = "No Error";
110 error_name = "Invalid Argument";
113 error_name = "Invalid Operation";
116 error_name = "Invalid Handle";
119 error_name = "Invalid Paint";
122 error_name = "Out Of Memory";
125 error_name = "Parse Error";
128 error_name = "Unknown error";
132 sprintf( str, "%s: ", error_name );
    [all...]
  /external/skia/src/core/
SkError.cpp 104 const char *error_name = NULL; local
107 error_name = "No Error";
110 error_name = "Invalid Argument";
113 error_name = "Invalid Operation";
116 error_name = "Invalid Handle";
119 error_name = "Invalid Paint";
122 error_name = "Out Of Memory";
125 error_name = "Parse Error";
128 error_name = "Unknown error";
132 sprintf( str, "%s: ", error_name );
    [all...]
  /external/chromium_org/chrome/browser/services/gcm/
chromeos_gcm_connection_observer.cc 22 const std::string& error_name,
24 LOG(ERROR) << "GCM D-Bus method error " << error_name << ": " << error;
chromeos_gcm_connection_observer.h 23 const std::string& error_name,
  /external/chromium_org/ash/system/chromeos/network/
network_state_notifier.h 47 // Show a connection error notification. If |error_name| matches an error
51 void ShowNetworkConnectError(const std::string& error_name,
56 const std::string& error_name,
60 const std::string& error_name,
65 const std::string& error_name,
network_state_notifier.cc 49 // Error messages based on |error_name|, not network_state->error().
50 base::string16 GetConnectErrorString(const std::string& error_name) {
51 if (error_name == NetworkConnectionHandler::kErrorNotFound)
53 if (error_name == NetworkConnectionHandler::kErrorConfigureFailed) {
57 if (error_name == NetworkConnectionHandler::kErrorCertLoadTimeout) {
61 if (error_name == ash::network_connect::kErrorActivateFailed) {
207 const std::string& error_name,
211 ShowConnectErrorNotification(error_name, service_path, shill_properties);
218 weak_ptr_factory_.GetWeakPtr(), error_name),
220 weak_ptr_factory_.GetWeakPtr(), error_name, service_path))
    [all...]
network_connect.cc 62 void ShowErrorNotification(const std::string& error_name,
65 ShowNetworkConnectError(error_name, service_path);
138 const std::string& error_name,
140 NET_LOG_ERROR("Connect Failed: " + error_name, service_path);
146 if (error_name == NetworkConnectionHandler::kErrorConnectCanceled)
149 if (error_name == shill::kErrorBadPassphrase ||
150 error_name == NetworkConnectionHandler::kErrorPassphraseRequired ||
151 error_name == NetworkConnectionHandler::kErrorConfigurationRequired ||
152 error_name == NetworkConnectionHandler::kErrorAuthenticationRequired) {
157 if (error_name == NetworkConnectionHandler::kErrorCertificateRequired)
    [all...]
  /bionic/libc/bionic/
strerror_r.cpp 51 const char* error_name = __strerror_lookup(error_number); local
52 if (error_name != NULL) {
53 length = strlcpy(buf, error_name, buf_len);
  /external/chromium_org/device/bluetooth/
bluetooth_device_chromeos.h 133 const std::string& error_name,
140 const std::string& error_name,
146 void OnCancelPairingError(const std::string& error_name,
160 const std::string& error_name,
167 const std::string& error_name,
174 const std::string& error_name,
bluetooth_device_chromeos.cc 589 const std::string& error_name,
596 << error_name << ": " << error_message;
600 // Determine the error code from error_name.
602 if (error_name == bluetooth_device::kErrorFailed) {
604 } else if (error_name == bluetooth_device::kErrorInProgress) {
606 } else if (error_name == bluetooth_device::kErrorNotSupported) {
627 const std::string& error_name,
634 << error_name << ": " << error_message;
640 // Determine the error code from error_name.
642 if (error_name == bluetooth_device::kErrorConnectionAttemptFailed)
    [all...]
bluetooth_remote_gatt_characteristic_chromeos.h 103 const std::string& error_name,
113 const std::string& error_name,
123 const std::string& error_name,
bluetooth_socket_chromeos.h 95 const std::string& error_name,
101 const std::string& error_name,
111 void OnInternalRegisterProfileError(const std::string& error_name,
157 const std::string& error_name,
  /external/chromium_org/chromeos/dbus/
bluetooth_agent_manager_client.cc 114 std::string error_name; local
118 error_name = response->GetErrorName();
121 error_name = kNoResponseError;
124 error_callback.Run(error_name, error_message);
bluetooth_agent_manager_client.h 26 // It receives two arguments: the name of the error in |error_name| and
28 typedef base::Callback<void(const std::string& error_name,
bluetooth_gatt_manager_client.cc 101 std::string error_name; local
105 error_name = response->GetErrorName();
108 error_name = kNoResponseError;
110 error_callback.Run(error_name, error_message);
bluetooth_gatt_manager_client.h 30 // receives two arguments: the name of the error in |error_name| and an
32 typedef base::Callback<void(const std::string& error_name,
  /external/chromium_org/extensions/shell/browser/
shell_network_controller_chromeos.h 62 void HandleConnectionError(const std::string& error_name,
shell_network_controller_chromeos.cc 27 void HandleEnableWifiError(const std::string& error_name,
29 LOG(WARNING) << "Unable to enable wifi: " << error_name;
202 const std::string& error_name,
204 LOG(WARNING) << "Unable to connect to network: " << error_name;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
network_config_message_handler.h 53 const std::string& error_name,
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 382 const char* error_name = NULL; local
391 error_name = "bluetoothConnectUnknownError";
394 error_name = "bluetoothConnectInProgress";
397 error_name = "bluetoothConnectFailed";
400 error_name = "bluetoothConnectAuthFailed";
403 error_name = "bluetoothConnectAuthCanceled";
406 error_name = "bluetoothConnectAuthRejected";
409 error_name = "bluetoothConnectAuthTimeout";
412 error_name = "bluetoothConnectUnsupportedDevice";
416 if (error_name)
    [all...]
  /external/chromium_org/device/nfc/
nfc_adapter_chromeos.h 89 const std::string& error_name,
95 const std::string& error_name,
  /external/chromium_org/athena/system/
network_selector.cc 107 void OnKnownError(const std::string& error_name,
112 message = error_name;
262 const std::string& error_name,
264 if (error_name == NetworkConnectionHandler::kErrorConnectCanceled)
266 if (error_name == shill::kErrorBadPassphrase ||
267 error_name == NetworkConnectionHandler::kErrorPassphraseRequired ||
268 error_name == NetworkConnectionHandler::kErrorConfigurationRequired ||
269 error_name == NetworkConnectionHandler::kErrorAuthenticationRequired) {

Completed in 817 milliseconds

1 2 3 4 5