Searched refs:error_msg (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/lib/libkvm/tests/
H A Dkvm_geterr_test.c72 char *error_msg; local
80 error_msg = kvm_geterr(kd);
81 ATF_CHECK(errbuf_has_error(error_msg));
99 char *error_msg; local
123 error_msg = kvm_geterr(kd);
124 ATF_REQUIRE_MSG(strcmp(error_msg, ALL_IS_WELL) == 0,
125 "error message changed: %s", error_msg); local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp125 std::string error_msg; local
128 error_msg.assign("ambiguous command ");
130 error_msg.assign("invalid command ");
132 error_msg.append("'");
133 error_msg.append(GetCommandName());
134 error_msg.append(" ");
135 error_msg.append(sub_command);
136 error_msg.append("'.");
139 error_msg.append(" Possible completions:");
141 error_msg
[all...]
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c459 static char error_msg[1024]; local
479 error_msg[0] = '\0';
491 error_msg, sizeof(error_msg));
495 proc->name, error_msg);
496 msg = error_msg;
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_lookup.c833 char *error_msg = NULL; local
836 error_msg = "rec_len is smaller than minimal";
838 error_msg = "rec_len % 4 != 0";
840 error_msg = "reclen is too small for name_len";
842 error_msg = "directory entry across blocks";
845 error_msg = "inode out of bounds";
848 if (error_msg != NULL) {
849 printf("bad directory entry: %s\n", error_msg);
854 return error_msg == NULL ? 0 : 1;
/freebsd-11-stable/contrib/xz/src/xz/
H A Dfile_io.c658 goto error_msg;
661 goto error_msg;
732 error_msg:
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.cpp363 InternalScopedString error_msg(256);
364 error_msg.append("%s: global '%s' at %s", scariness.GetDescription(),
366 ReportErrorSummary(error_msg.data());
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_discovery.c676 char *error_msg; local
686 error_msg = "RAID map too small\n";
691 error_msg = "RAID map too large\n";
702 error_msg = "invalid number of map entries in RAID map\n";
708 error_msg = "invalid RAID-1 map\n";
713 error_msg = "invalid RAID-1(ADM) map\n";
724 error_msg = "invalid RAID-5 or RAID-6 map\n";
734 DBG_ERR("%s\n", error_msg);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2254 llvm::StringRef error_msg = tmp_result.GetErrorData(); local
2255 if (error_msg.empty())
2256 error_msg = "<unknown error>.\n";
2261 (uint64_t)idx, cmd, error_msg.str().c_str());
2268 error_msg.str().c_str());
3033 StreamString error_msg; local
3034 error_msg.Printf("Ambiguous command '%s'. Possible matches:\n",
3038 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i));
3040 result.AppendRawError(error_msg.GetString());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp122 SmallString<256> error_msg; local
123 llvm::raw_svector_ostream error_stream(error_msg);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dminimon.h596 struct error_msg_t error_msg; member in union:msg_t
/freebsd-11-stable/contrib/gcc/cp/
H A Dsemantics.c2607 const char **error_msg)
2611 *error_msg = NULL;
2687 *error_msg = "missing template arguments";
2693 *error_msg = "expected primary-expression";
2596 finish_id_expression(tree id_expression, tree decl, tree scope, cp_id_kind *idk, bool integral_constant_expression_p, bool allow_non_integral_constant_expression_p, bool *non_integral_constant_expression_p, bool template_p, bool done, bool address_p, bool template_arg_p, const char **error_msg) argument
H A Ddecl.c7254 const char* error_msg;
7261 error_msg = NULL;
7267 error_msg = "array of void";
7271 error_msg = "array of functions";
7275 error_msg = "array of references";
7279 error_msg = "array of function members";
7287 if (error_msg)
7290 error ("declaration of %qD as %s", name, error_msg);
7292 error ("creating %s", error_msg);
7240 const char* error_msg; local
H A Dparser.c3340 const char *error_msg;
3445 &error_msg));
3446 if (error_msg)
3447 cp_parser_error (parser, error_msg);
17114 dyn_string_t error_msg;
17117 error_msg = dyn_string_new (0);
17118 dyn_string_append_cstr (error_msg, "expected ");
17119 dyn_string_append_cstr (error_msg, token_desc);
17120 cp_parser_error (parser, error_msg->s);
17121 dyn_string_delete (error_msg);
3338 const char *error_msg; local
17112 dyn_string_t error_msg; local
[all...]
H A Dpt.c8916 const char *error_msg;
8941 &error_msg);
8942 if (error_msg)
8943 error ("%s", error_msg);
8915 const char *error_msg; local

Completed in 200 milliseconds