Searched defs:error_str (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/base/json/
H A Djson_string_value_serializer.cc39 std::string* error_str) {
46 error_code, error_str);
38 Deserialize(int* error_code, std::string* error_str) argument
H A Djson_file_value_serializer.cc84 std::string* error_str) {
90 if (error_str)
91 *error_str = GetErrorMessageForCode(error);
97 return serializer.Deserialize(error_code, error_str);
83 Deserialize(int* error_code, std::string* error_str) argument
/external/lldb/source/Utility/
H A DPseudoTerminal.cpp86 PseudoTerminal::OpenFirstAvailableMaster (int oflag, char *error_str, size_t error_len) argument
88 if (error_str)
89 error_str[0] = '\0';
95 if (error_str)
96 ::strerror_r (errno, error_str, error_len);
103 if (error_str)
104 ::strerror_r (errno, error_str, error_len);
112 if (error_str)
113 ::strerror_r (errno, error_str, error_len);
133 PseudoTerminal::OpenSlave (int oflag, char *error_str, size_ argument
172 GetSlaveName(char *error_str, size_t error_len) const argument
214 Fork(char *error_str, size_t error_len) argument
[all...]
/external/oprofile/libutil++/
H A Dchild_reader.cpp257 string child_reader::error_str() const function in class:child_reader
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_finder.cc163 std::string error_str; local
168 &error_str));
170 DLOG(ERROR) << error_str;
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.cpp69 void RDebug_Print_b(char* error_str, void* param) argument
71 TBuf8<128> error8((TUint8*)error_str);
89 extern "C" void RDebug_Print(char* error_str, void* param) argument
91 RDebug_Print_b(error_str, param);
/external/strace/
H A Dcount.c165 char error_str[sizeof(int)*3]; local
203 error_str[0] = '\0';
205 sprintf(error_str, "%u", cc->errors);
215 error_str, sysent[idx].sys_name);
222 error_str[0] = '\0';
224 sprintf(error_str, "%u", error_cum);
227 call_cum, error_str, "total");
/external/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp332 std::string error_str; local
333 if (m_gdb_client.GetLaunchSuccess (error_str))
341 error.SetErrorString (error_str.c_str());
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp920 GDBRemoteCommunicationClient::GetLaunchSuccess (std::string &error_str) argument
922 error_str.clear();
931 error_str = response.GetStringRef().substr(1);
935 error_str.assign ("unknown error occurred launching process");
940 error_str.assign ("timed out waiting for app to launch");
H A DProcessGDBRemote.cpp735 std::string error_str; local
736 if (m_gdb_comm.GetLaunchSuccess (error_str))
742 error.SetErrorString (error_str.c_str());
2661 char error_str[1024]; local
2666 ::snprintf (error_str, sizeof (error_str), DEBUGSERVER_BASENAME " died with signal %s", signal_cstr);
2668 ::snprintf (error_str, sizeof (error_str), DEBUGSERVER_BASENAME " died with signal %i", signo);
2672 ::snprintf (error_str, sizeof (error_str), DEBUGSERVER_BASENAM
[all...]
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp1372 const char *error_str = remote->Context().LaunchStatus().AsString(); local
1373 RNBLogSTDERR ("error: failed to attach process %i: %s\n", attach_pid, error_str ? error_str : "unknown error.");
1453 const char *error_str = remote->Context().LaunchStatus().AsString(); local
1454 RNBLogSTDERR ("error: failed to launch process %s: %s\n", argv_sub_zero, error_str ? error_str : "unknown error.");
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocvideo.cpp77 void RDebug_Print_b(char* error_str, void* param) argument
79 TBuf8<128> error8((TUint8*)error_str);
97 extern "C" void RDebug_Print(char* error_str, void* param) argument
99 RDebug_Print_b(error_str, param);
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Dparse-filter.c43 static void show_error(char **error_str, const char *fmt, ...) argument
52 if (!error_str)
75 *error_str = error;
337 enum event_type type, char **error_str)
380 show_error(error_str, "expected a value but found %s",
425 char **error_str)
456 show_error(error_str,
503 show_error(error_str,
521 show_error(error_str,
528 show_error(error_str,
336 create_arg_item(struct event_format *event, const char *token, enum event_type type, char **error_str) argument
424 add_right(struct filter_arg *op, struct filter_arg *arg, char **error_str) argument
888 process_filter(struct event_format *event, struct filter_arg **parg, char **error_str, int not) argument
1106 process_event(struct event_format *event, const char *filter_str, struct filter_arg **parg, char **error_str) argument
1132 filter_event(struct event_filter *filter, struct event_format *event, const char *filter_str, char **error_str) argument
1173 pevent_filter_add_filter_str(struct event_filter *filter, const char *filter_str, char **error_str) argument
[all...]
/external/lldb/tools/driver/
H A DDriver.cpp1224 char error_str[1024]; local
1225 if (m_editline_pty.OpenFirstAvailableMaster(O_RDWR|O_NOCTTY, error_str, sizeof(error_str)) == false)
1227 ::fprintf (stderr, "error: failed to open driver pseudo terminal : %s", error_str);
1232 const char *driver_slave_name = m_editline_pty.GetSlaveName (error_str, sizeof(error_str));
1235 ::fprintf (stderr, "error: failed to get slave name for driver pseudo terminal : %s", error_str);
1257 if (editline_output_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str, sizeof (error_str)) == false)
1259 ::fprintf (stderr, "error: failed to open output pseudo terminal : %s", error_str);
[all...]
/external/chromium_org/ui/base/x/
H A Dx11_util.cc1382 char error_str[256]; local
1385 XGetErrorText(dpy, error_event.error_code, error_str, sizeof(error_str));
1416 << " (" << error_str << "), "
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp721 char error_str[64]; local
722 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
723 return ErrorV(error_str);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1263 char error_str[64]; local
1264 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
1265 return ErrorV(error_str);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp703 char error_str[64]; local
704 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
705 return ErrorV(error_str);
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp318 char error_str[1024]; local
319 if (script_interpreter->m_embedded_thread_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str,
320 sizeof(error_str)))
327 char error_str[1024]; local
328 const char *pty_slave_name = script_interpreter->m_embedded_thread_pty.GetSlaveName (error_str, sizeof (error_str));
440 char error_str[1024]; local
441 const char *pty_slave_name = script_interpreter->m_embedded_thread_pty.GetSlaveName (error_str, sizeof (error_str));
896 char error_str[102 local
2326 char error_str[1024]; local
[all...]
/external/stressapptest/src/
H A Dworker.cc2907 const char *error_str; member in struct:__anon30506
2949 os_->ErrorReport(device_name_.c_str(), operations[op].error_str, 1);
2980 os_->ErrorReport(device_name_.c_str(), operations[op].error_str, 1);

Completed in 568 milliseconds