Searched defs:err_msg (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/socket/
H A Dtcp_socket_unittest.cc228 std::string err_msg; local
229 EXPECT_EQ(net::OK, socket->Listen("127.0.0.1", 9999, 10, &err_msg));
/external/chromium_org/mojo/tools/package_manager/
H A Dmanifest.cc20 bool Manifest::Parse(const std::string& str, std::string* err_msg) { argument
25 &err_code, err_msg));
31 *err_msg = "Manifest is not a dictionary.";
35 if (!PopulateDeps(root_dict, err_msg))
42 std::string* err_msg) {
45 *err_msg = "Couldn't read manifest file " + file_name.AsUTF8Unsafe();
48 return Parse(data, err_msg);
52 std::string* err_msg) {
59 *err_msg = "Deps is not a list. Should be \"deps\": [ \"...\", \"...\" ]";
67 *err_msg
41 ParseFromFile(const base::FilePath& file_name, std::string* err_msg) argument
51 PopulateDeps(const base::DictionaryValue* root, std::string* err_msg) argument
[all...]
H A Dpackage_manager_application.cc95 std::string err_msg; local
96 if (!manifest.ParseFromFile(manifest_path, &err_msg)) {
97 printf("%s\n", err_msg.c_str());
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunserver.cc90 StunMessage err_msg; local
91 err_msg.SetType(GetStunErrorResponseType(msg.type()));
92 err_msg.SetTransactionID(msg.transaction_id());
97 err_msg.AddAttribute(err_code);
99 SendResponse(err_msg, addr);
H A Drelayserver.cc75 RelayMessage err_msg; local
76 err_msg.SetType(GetStunErrorResponseType(msg.type()));
77 err_msg.SetTransactionID(msg.transaction_id());
87 err_msg.AddAttribute(magic_cookie_attr);
93 err_msg.AddAttribute(err_code);
95 SendStun(err_msg, socket, remote_addr);
/external/chromium_org/chrome/browser/themes/
H A Dtheme_syncable_service.cc141 string err_msg = base::StringPrintf("Received %d theme changes: ", local
144 base::StringAppendF(&err_msg, "[%s] ", change_list[i].ToString().c_str());
146 sync_error_handler_->CreateAndUploadError(FROM_HERE, err_msg);
/external/opencv/cxcore/src/
H A Dcxerror.cpp63 char err_msg[4096]; member in struct:CvContext
150 cvStdErrReport( int code, const char *func_name, const char *err_msg, argument
157 cvErrorStr(code), err_msg ? err_msg : "no description" );
173 cvGuiBoxReport( int code, const char *func_name, const char *err_msg, argument
177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 );
181 size_t msg_len = strlen(err_msg ? err_msg : "") + 1024;
189 cvErrorStr(code), err_msg ? err_msg
333 cvError( int code, const char* func_name, const char* err_msg, const char* file_name, int line ) argument
[all...]
H A Dcxpersistence.cpp238 const char* err_msg, const char* source_file, int source_line )
241 sprintf( buf, "%s(%d): %s", fs->filename, fs->lineno, err_msg );
237 icvParseError( CvFileStorage* fs, const char* func_name, const char* err_msg, const char* source_file, int source_line ) argument
/external/oprofile/libopagent/
H A Dopagent.c129 char err_msg[PATH_MAX + 16]; local
148 snprintf(err_msg, PATH_MAX + 16, "Error opening %s\n", dump_path);
152 fprintf(stderr, "%s\n", err_msg);
157 fprintf(stderr, "%s\n", err_msg);
176 snprintf(err_msg, PATH_MAX + 16, "Error writing to %s", dump_path);
178 fprintf(stderr, "%s\n", err_msg);
183 fprintf(stderr, "%s\n", err_msg);
188 fprintf(stderr, "%s\n", err_msg);
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_input_renderer_host.cc473 std::string err_msg = local
475 LogMessage(stream_id, err_msg, true);
/external/qemu/include/qapi/qmp/
H A Dqerror.h25 char *err_msg; member in struct:QError
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers.c1416 char *err_msg = NULL; local
1430 err_msg = "Invalid blob name.";
1433 err_msg = "Error removing blob.";
1439 if (err_msg)
1441 err_msg);
H A Ddbus_new_handlers_p2p.c438 char *err_msg = NULL; local
522 err_msg = "connect failed due to channel "
528 err_msg = "connect failed due to unsupported channel.";
533 err_msg = "connect failed due to unspecified error.";
544 reply = dbus_message_new_error(message, iface, err_msg);
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_sqlite3.cc82 static void ExecErrorCheck(int status, char *err_msg) { argument
84 fprintf(stderr, "SQL error: %s\n", err_msg);
85 sqlite3_free(err_msg);
422 char* err_msg = NULL; local
442 status = sqlite3_exec(db_, cache_size, NULL, NULL, &err_msg);
443 ExecErrorCheck(status, err_msg);
450 status = sqlite3_exec(db_, page_size, NULL, NULL, &err_msg);
451 ExecErrorCheck(status, err_msg);
460 status = sqlite3_exec(db_, WAL_stmt.c_str(), NULL, NULL, &err_msg);
461 ExecErrorCheck(status, err_msg);
498 char* err_msg = NULL; local
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp2127 char err_msg[PATH_MAX]; local
2132 snprintf(err_msg, sizeof(err_msg), "%s: \"%s\"", err_str.AsString(), app_bundle_path);
2133 err_str.SetErrorString(err_msg);
2134 DNBLogThreadedIf(LOG_PROCESS, "%s() error: %s", __FUNCTION__, err_msg);
2139 snprintf(err_msg, sizeof(err_msg), "failed to extract CFBundleIdentifier from %s", app_bundle_path);
2140 err_str.SetErrorString(err_msg);
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp2974 std::string err_msg; local
/external/chromium_org/third_party/libxml/src/
H A Dxmlregexp.c5789 xmlChar err_msg[200]; local
5819 snprintf((char *) err_msg, 199, "not %s", (const char *) atom->valuep);
5820 err_msg[199] = 0;
5821 atom->valuep2 = xmlStrdup(err_msg);
/external/libxml2/
H A Dxmlregexp.c5803 xmlChar err_msg[200]; local
5833 snprintf((char *) err_msg, 199, "not %s", (const char *) atom->valuep);
5834 err_msg[199] = 0;
5835 atom->valuep2 = xmlStrdup(err_msg);

Completed in 776 milliseconds