Home
last modified time | relevance | path

Searched refs:error_string (Results 1 – 24 of 24) sorted by relevance

/freebsd-14.2/crypto/heimdal/lib/krb5/
H A Derror_string.c51 if (context->error_string) in krb5_clear_error_message()
52 free(context->error_string); in krb5_clear_error_message()
54 context->error_string = NULL; in krb5_clear_error_message()
109 if (context->error_string) { in krb5_vset_error_message()
110 free(context->error_string); in krb5_vset_error_message()
111 context->error_string = NULL; in krb5_vset_error_message()
116 context->error_string = NULL; in krb5_vset_error_message()
178 if (context->error_string) { in krb5_vprepend_error_message()
182 free(context->error_string); in krb5_vprepend_error_message()
189 context->error_string = str; in krb5_vprepend_error_message()
[all …]
H A DMakefile.am147 error_string.c \
262 error_string.c \
H A Dkrb5_locl.h285 char *error_string; member
H A DMakefile.in165 libkrb5_la-eai_to_heim_errno.lo libkrb5_la-error_string.lo \
226 librfc3961_la-data.lo librfc3961_la-error_string.lo \
836 error_string.c \
944 error_string.c \
1332 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libkrb5_la-error_string.Plo@am__quote@
1746 libkrb5_la-error_string.lo: error_string.c
1747error_string.lo -MD -MP -MF $(DEPDIR)/libkrb5_la-error_string.Tpo -c -o libkrb5_la-error_string.lo…
1748 …am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libkrb5_la-error_string.Tpo $(DEPDIR)/libkrb5_la-error_str…
2432 librfc3961_la-error_string.lo: error_string.c
2433error_string.lo -MD -MP -MF $(DEPDIR)/librfc3961_la-error_string.Tpo -c -o librfc3961_la-error_str…
[all …]
/freebsd-14.2/crypto/openssl/apps/
H A Dtsget.in101 my $error_string;
104 $error_string = "could not get timestamp";
105 $error_string .= ", http code: $http_code" unless $http_code == 0;
106 $error_string .= ", curl code: $error_code";
107 $error_string .= " ($::error_buf)" if defined($::error_buf);
112 $error_string = "unexpected content type returned: $ct";
115 return ($ts_body, $error_string);
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_util.c171 archive_string_empty(&a->error_string); in archive_clear_error()
187 archive_string_empty(&(a->error_string)); in archive_set_error()
189 archive_string_vsprintf(&(a->error_string), fmt, ap); in archive_set_error()
191 a->error = a->error_string.s; in archive_set_error()
199 archive_string_copy(&dest->error_string, &src->error_string); in archive_copy_error()
200 dest->error = dest->error_string.s; in archive_copy_error()
H A Darchive_write_disk_posix.c2280 struct archive_string error_string; in create_filesystem_object() local
2300 &error_string, a->flags); in create_filesystem_object()
2303 error_string.s); in create_filesystem_object()
2313 &error_string, a->flags, 1); in create_filesystem_object()
2316 error_string.s); in create_filesystem_object()
3124 struct archive_string error_string; in check_symlinks() local
3127 archive_string_init(&error_string); in check_symlinks()
3132 error_string.s); in check_symlinks()
3134 archive_string_free(&error_string); in check_symlinks()
3313 struct archive_string error_string; in cleanup_pathname() local
[all …]
H A Darchive_private.h122 struct archive_string error_string; member
H A Darchive_write.c719 archive_string_free(&a->archive.error_string); in _archive_write_free()
H A Darchive_read.c1121 archive_string_free(&a->archive.error_string); in _archive_read_free()
H A Darchive_read_disk_posix.c491 archive_string_free(&a->archive.error_string); in _archive_read_free()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h124 std::string error_string; in CreatePluginObject() local
129 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); }, in CreatePluginObject()
131 error_string.append(E.message()); in CreatePluginObject()
134 error_string); in CreatePluginObject()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig235 std::string &error_string, const lldb::ThreadPlanSP &thread_plan_sp) {
248 error_string.append("could not find script class: ");
249 error_string.append(python_class_name);
259 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); },
261 error_string.append(E.message());
270 error_string.assign(
278 error_string.assign("wrong number of arguments in __init__, should be 2 or "
/freebsd-14.2/crypto/heimdal/
H A DChangeLog91 * lib/krb5/error_string.c (krb5_free_error_message): constify
93 * lib/krb5/error_string.c: Add krb5_get_error_message().
163 * lib/krb5/error_string.c: Cast krb5_error_code to int to avoid
H A DChangeLog.2001769 * lib/krb5/warn.c (_warnerr): print error_string in context in
775 * lib/krb5/krb5.h (krb5_context_data): add error_string and
777 * lib/krb5/Makefile.am (libkrb5_la_SOURCES): add error_string.c
778 * lib/krb5/error_string.c: new file
H A DChangeLog.20033 * lib/krb5/error_string.c: protect error_string with mutex
7 * lib/krb5/krb5.h (krb5_context_data): add mutex for error_string
H A DChangeLog.20061962 * lib/krb5/error_string.c: Change indentation, update (c)
1991 * lib/krb5/error_string.c (krb5_get_error_message): new function,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h151 const StructuredDataImpl &args_data, std::string &error_string,
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp264 std::string error_string; in GetRunnableInfo() local
284 .setErrorStr(&error_string) in GetRunnableInfo()
305 error_string.c_str()); in GetRunnableInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2569 const char *error_string = error.AsCString(); in LaunchPrivate() local
2570 if (error_string == nullptr) in LaunchPrivate()
2571 error_string = "launch failed"; in LaunchPrivate()
2572 SetExitStatus(-1, error_string); in LaunchPrivate()
2919 const char *error_string = error.AsCString(); in Attach() local
2920 if (error_string == nullptr) in Attach()
2921 error_string = "attach failed"; in Attach()
2923 SetExitStatus(-1, error_string); in Attach()
/freebsd-14.2/kerberos5/lib/libkrb5/
H A DMakefile531 error_string.c \
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1634 std::string error_string; in GetMemoryRegionInfo() local
1636 error_extractor.GetHexByteString(error_string); in GetMemoryRegionInfo()
1637 error.SetErrorString(error_string.c_str()); in GetMemoryRegionInfo()
H A DProcessGDBRemote.cpp3323 const char *error_string = error.AsCString(); in EstablishConnectionIfNeeded() local
3324 if (error_string == nullptr) in EstablishConnectionIfNeeded()
3325 error_string = "unable to launch " DEBUGSERVER_BASENAME; in EstablishConnectionIfNeeded()
/freebsd-14.2/sbin/camcontrol/
H A Dcamcontrol.c1330 const char error_string[] = "error getting transfer settings"; in camxferrate() local
1333 warn(error_string); in camxferrate()
1335 warnx(error_string); in camxferrate()