HomeSort by relevance Sort by last modified time
    Searched defs:error_name (Results 1 - 10 of 10) sorted by null

  /external/libbrillo/brillo/dbus/
utils.cc 20 const std::string& error_name,
23 method_call, error_name, error_message);
30 std::string error_name = DBUS_ERROR_FAILED; // Default error code. local
37 error_name = error->GetCode();
51 return CreateDBusErrorResponse(method_call, error_name, error_message);
  /bionic/libc/bionic/
strerror_r.cpp 56 const char* error_name = __strerror_lookup(error_number); local
57 if (error_name != NULL) {
58 length = strlcpy(buf, error_name, buf_len);
  /external/skia/src/core/
SkError.cpp 92 const char *error_name = nullptr; local
95 error_name = "No Error";
98 error_name = "Invalid Argument";
101 error_name = "Invalid Operation";
104 error_name = "Invalid Handle";
107 error_name = "Invalid Paint";
110 error_name = "Out Of Memory";
113 error_name = "Parse Error";
116 error_name = "Unknown error";
120 sprintf( str, "%s: ", error_name );
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
transport.py 97 def error_name(self): member in class:Rpc
119 def __set_state(self, state, error_message=None, error_name=None):
127 self.__error_name = error_name
139 self.__set_state(status.state, status.error_message, status.error_name)
remote.py 155 # TODO: Use error_name to map to specific exception message types.
161 error_name: Error name set by application. Only set when
190 error_name = messages.StringField(3) variable in class:RpcStatus
249 error_name: Application specific error name for exception.
254 def __init__(self, message, error_name=None):
259 error_name: Application specific error name. Must be None, string
263 self.error_name = error_name
269 if self.error_name is None:
272 error_format = ', %r' % self.error_name
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
elfcomm.c 815 const char * error_name = _("<corrupt>"); local
827 len += strlen (error_name) + 2;
845 error_name, member_name);
  /external/dbus/dbus/
dbus-marshal-validate.h 196 DECLARE_DBUS_NAME_CHECK(error_name); variable
  /toolchain/binutils/binutils-2.25/ld/
ldmain.c 1289 static char *error_name; local
    [all...]
  /external/dbus/bus/
dispatch.c 206 const char *interface_name, *member_name, *error_name; local
210 error_name = dbus_message_get_error_name (message);
215 error_name ? error_name : "(no error name)",
2318 const char *error_name; local
    [all...]
  /external/libchrome/dbus/
message.cc 261 AppendStringHeader("error_name", GetErrorName(), &headers);
288 bool Message::SetErrorName(const std::string& error_name) {
289 return dbus_message_set_error_name(raw_message_, error_name.c_str());
325 const char* error_name = dbus_message_get_error_name(raw_message_); local
326 return error_name ? error_name : "";
440 const std::string& error_name,
444 error_name.c_str(),

Completed in 773 milliseconds