Searched refs:err_str (Results 1 - 25 of 47) sorted by relevance

12

/external/libpcap/
H A Dpcap-bt-linux.h39 int bt_findalldevs(pcap_if_t **alldevsp, char *err_str);
H A Dpcap-netfilter-linux.h34 int netfilter_findalldevs(pcap_if_t **alldevsp, char *err_str);
H A Dpcap-usb-linux.h39 int usb_findalldevs(pcap_if_t **alldevsp, char *err_str);
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-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)
/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 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...]
H A DRNBContext.cpp243 const char *err_str = m_launch_status.AsString(); local
244 if (err_str)
245 s = err_str;
H A DDNB.h43 char *err_str,
46 nub_process_t DNBProcessAttach (nub_process_t pid, struct timespec *timeout, char *err_str, size_t err_len) DNB_EXPORT;
47 nub_process_t DNBProcessAttachByName (const char *name, struct timespec *timeout, char *err_str, size_t err_len) DNB_EXPORT;
48 nub_process_t DNBProcessAttachWait (const char *wait_name, nub_launch_flavor_t launch_flavor, bool ignore_existing, struct timespec *timeout, useconds_t interval, char *err_str, size_t err_len, DNBShouldCancelCallback should_cancel = NULL, void *callback_data = NULL) DNB_EXPORT;
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...]
/external/lldb/source/Core/
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...]
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);
/external/lldb/include/lldb/Core/
H A DError.h73 Error (const char* err_str);
247 /// Set the current error string to \a err_str.
256 /// @param err_str
260 SetErrorString (const char *err_str);
H A DRegularExpression.h180 GetErrorAsCString (char *err_str, size_t err_str_max_len) const;
/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/scripts/Python/interface/
H A DSBError.i95 SetErrorString (const char *err_str);
/external/lldb/include/lldb/API/
H A DSBError.h56 SetErrorString (const char *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/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dsingle_test_runner.py333 diff, err_str = self._port.diff_image(expected_driver_output.image, driver_output.image)
334 if err_str:
335 _log.warning(' %s : %s' % (self._test_name, err_str))
337 driver_output.error = (driver_output.error or '') + err_str
408 diff, err_str = self._port.diff_image(reference_driver_output.image, actual_driver_output.image)
411 elif err_str:
412 _log.error(err_str)
417 diff, err_str = self._port.diff_image(reference_driver_output.image, actual_driver_output.image)
420 elif err_str:
421 _log.error(err_str)
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parse.y319 const char *const err_str = (state->mode == ARB_vertex)
323 yyerror(& @2, state, err_str);
1055 char *const err_str =
1058 yyerror(& @1, state, (err_str != NULL)
1059 ? err_str : "invalid condition code");
1061 if (err_str != NULL) {
1062 free(err_str);
1078 char *const err_str =
1081 yyerror(& @1, state, (err_str != NULL)
1082 ? err_str
[all...]
/external/mesa3d/src/mesa/program/
H A Dprogram_parse.y319 const char *const err_str = (state->mode == ARB_vertex)
323 yyerror(& @2, state, err_str);
1055 char *const err_str =
1058 yyerror(& @1, state, (err_str != NULL)
1059 ? err_str : "invalid condition code");
1061 if (err_str != NULL) {
1062 free(err_str);
1078 char *const err_str =
1081 yyerror(& @1, state, (err_str != NULL)
1082 ? err_str
[all...]
/external/lldb/source/API/
H A DSBError.cpp159 SBError::SetErrorString (const char *err_str) argument
162 m_opaque_ap->SetErrorString (err_str);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
H A Dprogram_parse.tab.c2331 const char *const err_str = (state->mode == ARB_vertex) local
2335 yyerror(& (yylsp[(2) - (3)]), state, err_str);
3296 char *const err_str = local
3299 yyerror(& (yylsp[(1) - (1)]), state, (err_str != NULL)
3300 ? err_str : "invalid condition code");
3302 if (err_str != NULL) {
3303 free(err_str);
3322 char *const err_str = local
3325 yyerror(& (yylsp[(1) - (1)]), state, (err_str != NULL)
3326 ? err_str
4706 char *const err_str = local
5807 char *err_str; local
[all...]
/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);

Completed in 298 milliseconds

12