Searched defs:error_string (Results 1 - 14 of 14) sorted by relevance

/external/valgrind/exp-bbv/tests/x86/
H A Drep_prefix.S251 pushl $error_string
255 mov $error_string, %ecx # string to print
275 error_string: .asciz "Error detected!\n" label
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Drep_prefix.S328 mov $error_string, %rsi # string to print
342 error_string: .asciz "Error detected!\n" label
/external/google-breakpad/src/processor/
H A Dlogging.cc104 int ErrnoString(string *error_string) { argument
105 assert(error_string);
111 error_string->assign(strerror(errno));
H A Dsource_line_resolver_base.cc99 string error_string; local
100 error_code = ErrnoString(&error_string);
102 ", error " << error_code << ": " << error_string; local
122 string error_string; local
123 error_code = ErrnoString(&error_string);
125 ", error " << error_code << ": " << error_string; local
138 string error_string; local
139 error_code = ErrnoString(&error_string);
141 ", error " << error_code << ": " << error_string; local
H A Dminidump.cc4028 string error_string; local
4029 int error_code = ErrnoString(&error_string);
4031 ", error " << error_code << ": " << error_string; local
4435 string error_string; local
4436 int error_code = ErrnoString(&error_string);
4437 BPLOG(ERROR) << "ReadBytes: error " << error_code << ": " << error_string; local
4466 string error_string; local
4467 int error_code = ErrnoString(&error_string);
4468 BPLOG(ERROR) << "SeekSet: error " << error_code << ": " << error_string; local
/external/mesa3d/src/glx/apple/
H A Dapple_cgl.h59 const char *(*error_string) (CGLError error); member in struct:apple_cgl_api
/external/lldb/source/Expression/
H A DIRExecutionUnit.cpp268 std::string error_string; local
304 .setErrorStr(&error_string)
329 error.SetErrorStringWithFormat("Couldn't JIT the function: %s", error_string.c_str());
/external/ppp/pppd/plugins/
H A Dwinbind.c252 char **error_string)
290 if (error_string) {
291 *error_string = strdup("fork failed!");
422 if (error_string)
423 *error_string = strdup(parameter);
426 if (error_string)
427 *error_string = strdup(parameter);
549 char *error_string = NULL; local
584 &error_string) == AUTHENTICATED) {
590 if (error_string) {
241 run_ntlm_auth(const char *username, const char *domain, const char *full_username, const char *plaintext_password, const u_char *challenge, size_t challenge_length, const u_char *lm_response, size_t lm_response_length, const u_char *nt_response, size_t nt_response_length, u_char nt_key[16], char **error_string) argument
605 char *error_string = NULL; local
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java550 public static native String error_string(int error_code); method in class:Database
/external/mesa3d/src/mesa/main/
H A Derrors.c855 error_string( GLenum error ) function
894 error_string(ctx->ErrorValue));
1028 len = _mesa_snprintf(s2, MAXSTRING, "%s in %s", error_string(error), s);
/external/vboot_reference/cgpt/
H A Dcgpt_common.c802 const char *error_string[] = { local
811 if (errnum < 0 || errnum >= ARRAY_COUNT(error_string))
813 return error_string[errnum];
/external/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc1590 PyObject* error_string = PyString_FromStringAndSize( local
1592 if (error_string == NULL) {
1596 PyList_SET_ITEM(error_list, i, error_string);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp961 const char *error_string = error.AsCString(); local
962 if (error_string == NULL)
963 error_string = "unable to launch " DEBUGSERVER_BASENAME;
965 SetExitStatus (-1, error_string);
1025 const char *error_string = error.AsCString(); local
1026 if (error_string == NULL)
1027 error_string = "unable to launch " DEBUGSERVER_BASENAME;
1029 SetExitStatus (-1, error_string);
/external/v8/src/
H A Djsregexp.cc412 Object* error_string = re->DataAt(JSRegExp::saved_code_index(is_one_byte)); local
413 DCHECK(error_string->IsString());
414 Handle<String> error_message(String::cast(error_string));

Completed in 477 milliseconds