Searched defs:err_str (Results 1 - 25 of 32) sorted by relevance

12

/external/lldb/tools/debugserver/source/
H A DDNBError.cpp75 const char *err_str = AsString(); local
76 if (err_str == NULL)
77 err_str = "???";
78 DNBLogThreaded ("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_err);
97 const char *err_str = AsString(); local
98 if (err_str == NULL)
99 err_str = "???";
100 DNBLogThreaded ("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_err);
H A DDNBError.h78 void SetErrorString(const char *err_str) argument
80 if (err_str && err_str[0])
81 m_str = err_str;
H A DRNBContext.cpp243 const char *err_str = m_launch_status.AsString(); local
244 if (err_str)
245 s = err_str;
H A Ddebugserver.cpp347 char err_str[1024]; local
348 pid = DNBProcessAttach (attach_pid, NULL, err_str, sizeof(err_str));
354 if (err_str[0])
355 ctx.LaunchStatus().SetErrorString(err_str);
1254 char err_str[1024] = {'\0'}; local
1347 nub_process_t pid = DNBProcessAttachWait (waitfor_pid_name.c_str(), launch_flavor, ignore_existing, timeout_ptr, waitfor_interval, err_str, sizeof(err_str));
1353 if (err_str[0])
1354 ctx.LaunchStatus().SetErrorString(err_str);
[all...]
H A DDNB.cpp189 char *err_str,
204 err_str,
207 if (err_str && err_len > 0)
208 err_str[0] = '\0';
214 snprintf(err_str, err_len, "%s (%s)", stat_error, path);
233 if (err_str)
235 *err_str = '\0';
241 strncpy(err_str, launch_err_str, err_len-1);
242 err_str[err_len-1] = '\0'; // Make sure the error string is terminated
262 if (err_str
179 DNBProcessLaunch(const char *path, char const *argv[], const char *envp[], const char *working_directory, const char *stdin_path, const char *stdout_path, const char *stderr_path, bool no_stdio, nub_launch_flavor_t launch_flavor, int disable_aslr, char *err_str, size_t err_len) argument
286 DNBProcessAttachByName(const char *name, struct timespec *timeout, char *err_str, size_t err_len) argument
310 DNBProcessAttach(nub_process_t attach_pid, struct timespec *timeout, char *err_str, size_t err_len) argument
520 DNBProcessAttachWait(const char *waitfor_process_name, nub_launch_flavor_t launch_flavor, bool ignore_existing, struct timespec *timeout_abstime, useconds_t waitfor_interval, char *err_str, size_t err_len, DNBShouldCancelCallback should_cancel_callback, void *callback_data) argument
[all...]
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c93 char const *err_str = dlerror(); local
94 ALOGE("load: module=%s\n%s", path, err_str?err_str:"unknown");
/external/lldb/source/Core/
H A DRegularExpression.cpp262 RegularExpression::GetErrorAsCString (char *err_str, size_t err_str_max_len) const argument
266 if (err_str && err_str_max_len)
267 *err_str = '\0';
271 return ::regerror (m_comp_err, &m_preg, err_str, err_str_max_len);
H A DError.cpp54 Error::Error (const char* err_str): argument
59 SetErrorString(err_str);
198 const char *err_str = AsCString(); local
199 if (err_str == NULL)
200 err_str = "???";
202 SetErrorStringWithFormat("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_code);
237 const char *err_str = AsCString(); local
238 if (err_str == NULL)
239 err_str = "???";
241 SetErrorStringWithFormat("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_cod
304 SetErrorString(const char *err_str) argument
[all...]
/external/libpcap/
H A Dpcap-dbus.c271 dbus_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
273 if (pcap_add_if(alldevsp, "dbus-system", 0, "D-Bus system bus", err_str) < 0)
275 if (pcap_add_if(alldevsp, "dbus-session", 0, "D-Bus session bus", err_str) < 0)
H A Dpcap-bt-linux.c81 bt_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
94 snprintf(err_str, PCAP_ERRBUF_SIZE,
102 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't allocate %zu bytes for Bluetooth device list",
112 snprintf(err_str, PCAP_ERRBUF_SIZE,
127 dev_descr, err_str) < 0)
H A Dpcap-canusb-linux.c89 int canusb_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
132 if (pcap_add_if(alldevsp, dev_name, 0, dev_descr, err_str) < 0)
H A Dpcap-netfilter-linux.c633 netfilter_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
642 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't open netlink socket %d:%s",
648 if (pcap_add_if(alldevsp, NFLOG_IFACE, 0, "Linux netfilter log (NFLOG) interface", err_str) < 0)
650 if (pcap_add_if(alldevsp, NFQUEUE_IFACE, 0, "Linux netfilter queue (NFQUEUE) interface", err_str) < 0)
H A Dpcap-usb-linux.c147 usb_dev_add(pcap_if_t** alldevsp, int n, char *err_str) argument
155 dev_descr, err_str) < 0)
161 usb_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
182 ret = usb_dev_add(alldevsp, n, err_str);
203 ret = usb_dev_add(alldevsp, n, err_str);
/external/lldb/source/API/
H A DSBError.cpp159 SBError::SetErrorString (const char *err_str) argument
162 m_opaque_ap->SetErrorString (err_str);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp65 const std::string err_str = sys::StrError(); local
66 DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n");
75 const std::string err_str = sys::StrError(); local
77 << err_str << "\n");
/external/chromium_org/components/sync_driver/
H A Dgeneric_change_processor.cc673 std::string err_str = "Server did not create the top-level " + type_name + local
679 LOG(ERROR) << err_str;
/external/lldb/source/Target/
H A DStopInfo.cpp441 const char *err_str = condition_error.AsCString("<Unknown Error>"); local
443 log->Printf("Error evaluating condition: \"%s\"\n", err_str);
445 error_sp->PutCString (err_str);
751 const char *err_str = error.AsCString("<Unknown Error>"); local
753 log->Printf("Error evaluating condition: \"%s\"\n", err_str);
755 error_sp->PutCString (err_str);
/external/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp455 char err_str[1024]; local
456 regexp.GetErrorAsCString(err_str, sizeof(err_str));
458 err_str);
492 char err_str[1024]; local
493 regexp.GetErrorAsCString(err_str, sizeof(err_str));
495 err_str);
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp868 char err_str[err_len]; local
879 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len))
886 if ((pid = terminal.Fork(err_str, err_len)) == -1)
/external/opencv/cxcore/src/
H A Dcxconvert.cpp861 char err_str[100]; local
862 sprintf( err_str, "channel index #%d in the array of pairs is negative "
865 CV_ERROR( CV_StsOutOfRange, err_str );
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c223 /* static char err_str[ERR_STR_LEN]; */
285 char * err_str; local
288 err_str = tss->errstr;
289 SDL_strlcpy(err_str, "dlcompat: ", ERR_STR_LEN);
290 vsnprintf(err_str + 10, ERR_STR_LEN - 10, str, arg);
292 debug("ERROR: %s\n", err_str);
1176 const char * err_str = NULL; local
1181 err_str = tss->errstr;
1183 return (err_str);
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp1097 char err_str[err_len]; local
1108 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len))
1115 if ((pid = terminal.Fork(err_str, err_len)) == -1)
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp42 static CFStringRef CopyBundleIDForPath (const char *app_buncle_path, DNBError &err_str);
1458 MachProcess::AttachForDebug (pid_t pid, char *err_str, size_t err_len) argument
1470 ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "No such process");
1484 ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "unable to start the exception thread");
1507 ::snprintf (err_str, err_len, "%s", err.AsString());
1524 MachProcess::PrepareForAttach (const char *path, nub_launch_flavor_t launch_flavor, bool waitfor, DNBError &err_str) argument
1546 CFStringRef bundleIDCFStr = CopyBundleIDForPath (app_bundle_path.c_str (), err_str);
1549 DNBLogThreadedIf(LOG_PROCESS, "CopyBundleIDForPath (%s, err_str) returned @\"%s\"", app_bundle_path.c_str (), bundleIDStr.c_str());
1573 err_str.SetError(sbs_error, DNBError::SpringBoard);
1613 MachProcess::CleanupAfterAttach (const void *attach_token, bool success, DNBError &err_str) argument
2119 CopyBundleIDForPath(const char *app_bundle_path, DNBError &err_str) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_errormgr.c1237 const HChar* err_str = NULL; local
1258 # define BOMB(S) { err_str = S; goto syntax_error; }
1423 VG_(umsg)(" %s\n", err_str );
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dhttp_curl.c944 const char *err_str; local
956 err_str = X509_verify_cert_error_string(err);
975 depth, err, err_str, buf);

Completed in 470 milliseconds

12