Home
last modified time | relevance | path

Searched refs:err_msg (Results 1 – 12 of 12) sorted by relevance

/external/lldb/test/functionalities/process_launch/
DTestProcessLaunch.py64 err_msg = ""
71 err_msg = err_msg + " ERROR: stdout file was not created.\n"
77 err_msg = err_msg + " ERROR: stdout file does not contain correct output.\n"
91 err_msg = err_msg + " ERROR: stderr file was not created.\n"
97 err_msg = err_msg + " ERROR: stderr file does not contain correct output.\n\
108 self.fail (err_msg)
167 err_msg = ""
174 err_msg = err_msg + "ERROR: stdout file was not created.\n"
182 err_msg = err_msg + "The current working directory was not set correctly.\n"
194 self.fail(err_msg)
/external/opencv/cxcore/src/
Dcxerror.cpp63 char err_msg[4096]; member
150 cvStdErrReport( int code, const char *func_name, const char *err_msg, in cvStdErrReport() argument
157 cvErrorStr(code), err_msg ? err_msg : "no description" ); in cvStdErrReport()
173 cvGuiBoxReport( int code, const char *func_name, const char *err_msg, in cvGuiBoxReport() argument
177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 ); in cvGuiBoxReport()
181 size_t msg_len = strlen(err_msg ? err_msg : "") + 1024; in cvGuiBoxReport()
189 cvErrorStr(code), err_msg ? err_msg : "no description", in cvGuiBoxReport()
259 *description = ctx->err_msg; in cvGetErrInfo()
334 const char* err_msg, in cvError() argument
345 char* message = context->err_msg; in cvError()
[all …]
Dcxpersistence.cpp238 const char* err_msg, const char* source_file, int source_line ) in icvParseError() argument
241 sprintf( buf, "%s(%d): %s", fs->filename, fs->lineno, err_msg ); in icvParseError()
/external/lldb/test/logging/
DTestLogging.py79 err_msg = ""
84err_msg = "Wrong number of lines in log file; expected: " + repr (len (expected_log_lines)) + " fo…
89 err_msg = "Expected '" + line2 + "'; Found '" + line1 + "'"
93 self.fail (err_msg)
/external/wpa_supplicant_8/wpa_supplicant/dbus/
Ddbus_old_handlers.c1343 char *err_msg = NULL; in wpas_dbus_iface_remove_blobs() local
1357 err_msg = "Invalid blob name."; in wpas_dbus_iface_remove_blobs()
1359 err_msg = "Error removing blob."; in wpas_dbus_iface_remove_blobs()
1365 if (err_msg) in wpas_dbus_iface_remove_blobs()
1367 err_msg); in wpas_dbus_iface_remove_blobs()
Ddbus_new_handlers_p2p.c512 char *err_msg = NULL; in wpas_dbus_handler_p2p_connect() local
599 err_msg = in wpas_dbus_handler_p2p_connect()
605 err_msg = "connect failed due to unsupported channel."; in wpas_dbus_handler_p2p_connect()
610 err_msg = "connect failed due to unspecified error."; in wpas_dbus_handler_p2p_connect()
621 reply = dbus_message_new_error(message, iface, err_msg); in wpas_dbus_handler_p2p_connect()
/external/lldb/tools/debugserver/source/MacOSX/
DMachProcess.cpp2127 char err_msg[PATH_MAX]; in CopyBundleIDForPath() local
2132 snprintf(err_msg, sizeof(err_msg), "%s: \"%s\"", err_str.AsString(), app_bundle_path); in CopyBundleIDForPath()
2133 err_str.SetErrorString(err_msg); in CopyBundleIDForPath()
2134 DNBLogThreadedIf(LOG_PROCESS, "%s() error: %s", __FUNCTION__, err_msg); in CopyBundleIDForPath()
2139 …snprintf(err_msg, sizeof(err_msg), "failed to extract CFBundleIdentifier from %s", app_bundle_path… in CopyBundleIDForPath()
2140 err_str.SetErrorString(err_msg); in CopyBundleIDForPath()
/external/opencv/cxcore/include/
Dcxcore.h1512 const char* err_msg, const char* file_name, int line );
1525 const char* err_msg, const char* file_name, int line, void* userdata );
1538 CVAPI(int) cvNulDevReport( int status, const char* func_name, const char* err_msg,
1541 CVAPI(int) cvStdErrReport( int status, const char* func_name, const char* err_msg,
1544 CVAPI(int) cvGuiBoxReport( int status, const char* func_name, const char* err_msg,
/external/wpa_supplicant_8/wpa_supplicant/
Dwmm_ac.c707 goto err_msg; in wmm_ac_handle_addts_resp()
734 err_msg: in wmm_ac_handle_addts_resp()
/external/libxml2/
Drngparser.c171 xmlCRNGErr(xmlCRelaxNGParserCtxtPtr ctxt, int err_no, const char *err_msg) { in xmlCRNGErr() argument
180 if (err_msg != NULL) { in xmlCRNGErr()
181 fprintf(stderr, "error: %s\n", err_msg); in xmlCRNGErr()
Dxmlregexp.c5803 xmlChar err_msg[200]; in xmlAutomataNewNegTrans() local
5833 snprintf((char *) err_msg, 199, "not %s", (const char *) atom->valuep); in xmlAutomataNewNegTrans()
5834 err_msg[199] = 0; in xmlAutomataNewNegTrans()
5835 atom->valuep2 = xmlStrdup(err_msg); in xmlAutomataNewNegTrans()
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp2974 std::string err_msg; in RunScriptBasedCommand() local