Searched refs:error_string (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Derror_string.c51 if (context->error_string)
52 free(context->error_string);
54 context->error_string = NULL;
109 if (context->error_string) {
110 free(context->error_string);
111 context->error_string = NULL;
114 r = vasprintf(&context->error_string, fmt, args);
116 context->error_string = NULL;
178 if (context->error_string) {
181 e = asprintf(&str2, "%s: %s", str, context->error_string);
[all...]
H A DMakefile.am147 error_string.c \
262 error_string.c \
H A Dkrb5_locl.h284 char *error_string; member in struct:krb5_context_data
290 void *mutex; /* protects error_string/error_buf */
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
1747 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libkrb5_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-error_string.lo -MD -MP -MF $(DEPDIR)/libkrb5_la-error_string
[all...]
/freebsd-11-stable/crypto/openssl/apps/
H A Dtsget96 my $error_string;
99 $error_string = "could not get timestamp";
100 $error_string .= ", http code: $http_code" unless $http_code == 0;
101 $error_string .= ", curl code: $error_code";
102 $error_string .= " ($::error_buf)" if defined($::error_buf);
107 $error_string = "unexpected content type returned: $ct";
110 return ($ts_body, $error_string);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_util.c161 archive_string_empty(&a->error_string);
177 archive_string_empty(&(a->error_string));
179 archive_string_vsprintf(&(a->error_string), fmt, ap);
181 a->error = a->error_string.s;
189 archive_string_copy(&dest->error_string, &src->error_string);
190 dest->error = dest->error_string.s;
H A Darchive_private.h123 struct archive_string error_string; member in struct:archive
H A Darchive_write_disk_posix.c2233 struct archive_string error_string; local
2243 archive_string_init(&error_string);
2253 &error_string, a->flags);
2256 error_string.s);
2258 archive_string_free(&error_string);
2266 &error_string, a->flags, 1);
2269 error_string.s);
2271 archive_string_free(&error_string);
2279 archive_string_free(&error_string);
2581 archive_string_free(&a->archive.error_string);
3043 struct archive_string error_string; local
3232 struct archive_string error_string; local
[all...]
H A Darchive_write.c694 archive_string_free(&a->archive.error_string);
H A Darchive_read.c1134 archive_string_free(&a->archive.error_string);
H A Darchive_read_disk_posix.c496 archive_string_free(&a->archive.error_string);
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dobj-coff.c132 const char *error_string;
134 if ((error_string = hash_jam (tag_hash, name, (char *) symbolP)))
136 name, error_string);
130 const char *error_string; local
H A Dtc-ia64.c11882 const char *error_string; local
11965 error_string = hash_jam (ahash, alias, (PTR) h);
11966 if (error_string)
11969 alias, kind, error_string);
11973 error_string = hash_jam (nhash, name, (PTR) alias);
11974 if (error_string)
11977 alias, kind, error_string);
/freebsd-11-stable/contrib/binutils/gas/
H A Dsymbols.c487 register const char *error_string;
494 error_string = hash_jam (local_hash, S_GET_NAME (symbolP),
496 if (error_string != NULL)
498 S_GET_NAME (symbolP), error_string);
502 if ((error_string = hash_jam (sy_hash, S_GET_NAME (symbolP), (PTR) symbolP))) local
505 S_GET_NAME (symbolP), error_string);
484 register const char *error_string; local
495 S_GET_NAME (symbolP), error_string); local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp247 std::string error_string; local
267 .setErrorStr(&error_string)
290 error_string.c_str());
/freebsd-11-stable/kerberos5/lib/libkrb5/
H A DMakefile530 error_string.c \
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2520 const char *error_string = error.AsCString();
2521 if (error_string == nullptr)
2522 error_string = "launch failed";
2523 SetExitStatus(-1, error_string);
2851 const char *error_string = error.AsCString();
2852 if (error_string == nullptr)
2853 error_string = "attach failed";
2855 SetExitStatus(-1, error_string);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1516 std::string error_string;
1518 error_extractor.GetHexByteString(error_string);
1519 error.SetErrorString(error_string.c_str());
H A DProcessGDBRemote.cpp3416 const char *error_string = error.AsCString();
3417 if (error_string == nullptr)
3418 error_string = "unable to launch " DEBUGSERVER_BASENAME;
/freebsd-11-stable/sbin/camcontrol/
H A Dcamcontrol.c1081 const char error_string[] = "error getting transfer settings"; local
1084 warn(error_string);
1086 warnx(error_string);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp119 std::string &error_string,

Completed in 725 milliseconds