Home
last modified time | relevance | path

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

/freebsd-src/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()
114 r = vasprintf(&context->error_string, fmt, args); 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()
181 e = asprintf(&str2, "%s: %s", str, context->error_string); 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@
1430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/librfc3961_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…
1751 …(AM_CFLAGS) $(CFLAGS) -c -o libkrb5_la-error_string.lo `test -f 'error_string.c' || echo '$(srcdir…
[all …]
/freebsd-src/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-src/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
2290 archive_string_init(&error_string); in create_filesystem_object()
2300 &error_string, a->flags); in create_filesystem_object()
2303 error_string.s); in create_filesystem_object()
2305 archive_string_free(&error_string); in create_filesystem_object()
2313 &error_string, a->flags, 1); in create_filesystem_object()
2316 error_string.s); in create_filesystem_object()
2318 archive_string_free(&error_string); in create_filesystem_object()
2326 archive_string_free(&error_string); in create_filesystem_object()
2659 archive_string_free(&a->archive.error_string); in _archive_write_disk_free()
3124 struct archive_string error_string; check_symlinks() local
3313 struct archive_string error_string; cleanup_pathname() local
[all...]
H A Darchive_private.h122 struct archive_string error_string;
120 struct archive_string error_string; global() 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-src/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-src/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig
/freebsd-src/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-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h
/freebsd-src/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp263 std::string error_string; in GetRunnableInfo()
283 .setErrorStr(&error_string) in GetRunnableInfo()
304 error_string.c_str()); in GetRunnableInfo()
264 std::string error_string; GetRunnableInfo() local
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2732 const char *error_string = error.AsCString(); in PerformAction()
2733 if (error_string == nullptr) in PerformAction()
2734 error_string = "launch failed"; in PerformAction()
2735 SetExitStatus(-1, error_string); in PerformAction()
3082 const char *error_string = error.AsCString(); in ConnectRemote()
3083 if (error_string == nullptr) in ConnectRemote()
3084 error_string = "attach failed"; in ConnectRemote()
3086 SetExitStatus(-1, error_string); in ConnectRemote()
2569 const char *error_string = error.AsCString(); LaunchPrivate() local
2919 const char *error_string = error.AsCString(); Attach() local
/freebsd-src/kerberos5/lib/libkrb5/
H A DMakefile530 error_string.c \
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1646 std::string error_string; in GetMemoryRegionInfo()
1648 error_extractor.GetHexByteString(error_string); in GetMemoryRegionInfo()
1649 error.SetErrorString(error_string.c_str()); in GetMemoryRegionInfo()
1634 std::string error_string; GetMemoryRegionInfo() local
H A DProcessGDBRemote.cpp3334 const char *error_string = error.AsCString(); in SetCloexecFlag()
3335 if (error_string == nullptr) in SetCloexecFlag()
3336 error_string = "unable to launch " DEBUGSERVER_BASENAME; in SetCloexecFlag()
3323 const char *error_string = error.AsCString(); EstablishConnectionIfNeeded() local
/freebsd-src/sbin/camcontrol/
H A Dcamcontrol.c1332 const char error_string[] = "error getting transfer settings"; in camxferrate()
1335 warn(error_string); in camxferrate()
1337 warnx(error_string); in camxferrate()
1331 const char error_string[] = "error getting transfer settings"; camxferrate() local