Home
last modified time | relevance | path

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

/freebsd/lib/libkvm/tests/
H A Dkvm_geterr_test.c69 char *error_msg; in ATF_TC_BODY() local
77 error_msg = kvm_geterr(kd); in ATF_TC_BODY()
78 ATF_CHECK(errbuf_has_error(error_msg)); in ATF_TC_BODY()
96 char *error_msg; in ATF_TC_BODY() local
120 error_msg = kvm_geterr(kd); in ATF_TC_BODY()
121 ATF_REQUIRE_MSG(strcmp(error_msg, ALL_IS_WELL) == 0, in ATF_TC_BODY()
122 "error message changed: %s", error_msg); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp195 std::string error_msg; in Execute() local
198 error_msg.assign("ambiguous command "); in Execute()
200 error_msg.assign("invalid command "); in Execute()
202 error_msg.append("'"); in Execute()
203 error_msg.append(std::string(GetCommandName())); in Execute()
204 error_msg.append(" "); in Execute()
205 error_msg.append(std::string(sub_command)); in Execute()
206 error_msg.append("'."); in Execute()
209 error_msg.append(" Possible completions:"); in Execute()
211 error_msg in Execute()
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedInterface.h36 llvm::StringRef error_msg, Status &error,
39 error_msg.data());
42 llvm::Twine(error_msg))
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptedInterface.h
/freebsd/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c459 static char error_msg[1024]; in kadm5_check_password_quality() local
479 error_msg[0] = '\0'; in kadm5_check_password_quality()
491 error_msg, sizeof(error_msg)); in kadm5_check_password_quality()
495 proc->name, error_msg); in kadm5_check_password_quality()
496 msg = error_msg; in kadm5_check_password_quality()
/freebsd/sys/fs/ext2fs/
H A Dext2_lookup.c819 char *error_msg = NULL; in ext2_check_direntry() local
822 error_msg = "rec_len is smaller than minimal"; in ext2_check_direntry()
824 error_msg = "rec_len % 4 != 0"; in ext2_check_direntry()
826 error_msg = "reclen is too small for name_len"; in ext2_check_direntry()
828 error_msg = "directory entry across blocks"; in ext2_check_direntry()
830 error_msg = "directory entry inode out of bounds"; in ext2_check_direntry()
835 error_msg = "bad root directory entry"; in ext2_check_direntry()
837 if (error_msg != NULL) { in ext2_check_direntry()
839 error_msg, entryoffsetinblock, in ext2_check_direntry()
843 return (error_msg == NULL ? 0 : EINVAL); in ext2_check_direntry()
H A Dext2_extents.c451 char *error_msg; in ext4_ext_check_header() local
453 char *error_msg __unused; in ext4_ext_check_header()
457 error_msg = "header: invalid magic"; in ext4_ext_check_header()
463 error_msg = "header: invalid eh_depth"; in ext4_ext_check_header()
467 error_msg = "header: invalid eh_max"; in ext4_ext_check_header()
471 error_msg = "header: too large eh_max"; in ext4_ext_check_header()
475 error_msg = "header: invalid eh_entries"; in ext4_ext_check_header()
479 error_msg = "header: invalid eh_depth"; in ext4_ext_check_header()
483 error_msg = "header: invalid extent entries"; in ext4_ext_check_header()
490 SDT_PROBE2(ext2fs, , trace, extents, 1, error_msg); in ext4_ext_check_header()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2593 llvm::StringRef error_msg = tmp_result.GetErrorData(); in HandleCommands() local
2594 if (error_msg.empty()) in HandleCommands()
2595 error_msg = "<unknown error>.\n"; in HandleCommands()
2600 (uint64_t)idx, cmd, error_msg.str().c_str()); in HandleCommands()
2606 error_msg.str().c_str()); in HandleCommands()
3489 StreamString error_msg; in ResolveCommandImpl() local
3490 error_msg.Printf("Ambiguous command '%s'. Possible matches:\n", in ResolveCommandImpl()
3494 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i)); in ResolveCommandImpl()
3496 result.AppendRawError(error_msg.GetString()); in ResolveCommandImpl()
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_discovery.c945 char *error_msg; in pqisrc_raid_map_validation() local
954 error_msg = "RAID map too small\n"; in pqisrc_raid_map_validation()
966 error_msg = "invalid RAID-1 map\n"; in pqisrc_raid_map_validation()
971 error_msg = "invalid RAID-1(triple) map\n"; in pqisrc_raid_map_validation()
982 error_msg = "invalid RAID-5 or RAID-6 map\n"; in pqisrc_raid_map_validation()
992 DBG_NOTE("%s\n", error_msg); in pqisrc_raid_map_validation()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp159 SmallString<256> error_msg; in getCC1Arguments() local
160 llvm::raw_svector_ostream error_stream(error_msg); in getCC1Arguments()
/freebsd/sys/contrib/openzfs/cmd/
H A Darc_summary429 error_msg = '(ERROR: "{0}" requested)'.format(request)
430 return error_msg
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig114 std::string error_msg = "Input type is invalid: " + type_name.get();
115 PyErr_SetString(PyExc_TypeError, error_msg.c_str());