| /freebsd-11-stable/crypto/heimdal/lib/krb5/ |
| HD | error_string.c | 51 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 …]
|
| HD | Makefile.am | 147 error_string.c \ 262 error_string.c \
|
| HD | krb5_locl.h | 284 char *error_string; member
|
| HD | Makefile.in | 165 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 …error_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-11-stable/crypto/openssl/apps/ |
| HD | tsget | 96 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/ |
| HD | archive_util.c | 161 archive_string_empty(&a->error_string); in archive_clear_error() 177 archive_string_empty(&(a->error_string)); in archive_set_error() 179 archive_string_vsprintf(&(a->error_string), fmt, ap); in archive_set_error() 181 a->error = a->error_string.s; in archive_set_error() 189 archive_string_copy(&dest->error_string, &src->error_string); in archive_copy_error() 190 dest->error = dest->error_string.s; in archive_copy_error()
|
| HD | archive_write_disk_posix.c | 2264 struct archive_string error_string; in create_filesystem_object() local 2274 archive_string_init(&error_string); in create_filesystem_object() 2284 &error_string, a->flags); in create_filesystem_object() 2287 error_string.s); in create_filesystem_object() 2289 archive_string_free(&error_string); in create_filesystem_object() 2297 &error_string, a->flags, 1); in create_filesystem_object() 2300 error_string.s); in create_filesystem_object() 2302 archive_string_free(&error_string); in create_filesystem_object() 2310 archive_string_free(&error_string); in create_filesystem_object() 2633 archive_string_free(&a->archive.error_string); in _archive_write_disk_free() [all …]
|
| HD | archive_private.h | 120 struct archive_string error_string; member
|
| HD | archive_write.c | 692 archive_string_free(&a->archive.error_string); in _archive_write_free()
|
| HD | archive_read.c | 1122 archive_string_free(&a->archive.error_string); in _archive_read_free()
|
| HD | archive_read_disk_posix.c | 492 archive_string_free(&a->archive.error_string); in _archive_read_free()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/bindings/python/ |
| HD | python-wrapper.swig | 267 std::string &error_string, 284 error_string.append("could not find script class: "); 285 error_string.append(python_class_name); 299 error_string.append(E.ReadBacktrace()); 302 error_string.append(E.message()); 310 error_string.assign("args passed, but __init__ does not take an args dictionary"); 319 …error_string.assign("wrong number of arguments in __init__, should be 2 or 3 (not including self)"…
|
| /freebsd-11-stable/contrib/binutils/gas/ |
| HD | symbols.c | 484 register const char *error_string; in symbol_table_insert() local 491 error_string = hash_jam (local_hash, S_GET_NAME (symbolP), in symbol_table_insert() 493 if (error_string != NULL) in symbol_table_insert() 495 S_GET_NAME (symbolP), error_string); in symbol_table_insert() 499 if ((error_string = hash_jam (sy_hash, S_GET_NAME (symbolP), (PTR) symbolP))) in symbol_table_insert() 502 S_GET_NAME (symbolP), error_string); in symbol_table_insert()
|
| /freebsd-11-stable/contrib/binutils/gas/config/ |
| HD | obj-coff.c | 130 const char *error_string; in tag_insert() local 132 if ((error_string = hash_jam (tag_hash, name, (char *) symbolP))) in tag_insert() 134 name, error_string); in tag_insert()
|
| HD | tc-ia64.c | 11882 const char *error_string; in dot_alias() local 11965 error_string = hash_jam (ahash, alias, (PTR) h); in dot_alias() 11966 if (error_string) in dot_alias() 11969 alias, kind, error_string); in dot_alias() 11973 error_string = hash_jam (nhash, name, (PTR) alias); in dot_alias() 11974 if (error_string) in dot_alias() 11977 alias, kind, error_string); in dot_alias()
|
| /freebsd-11-stable/crypto/heimdal/ |
| HD | ChangeLog | 91 * 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
|
| HD | ChangeLog.2001 | 769 * 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
|
| HD | ChangeLog.2003 | 3 * lib/krb5/error_string.c: protect error_string with mutex 7 * lib/krb5/krb5.h (krb5_context_data): add mutex for error_string
|
| HD | ChangeLog.2006 | 1962 * lib/krb5/error_string.c: Change indentation, update (c) 1991 * lib/krb5/error_string.c (krb5_get_error_message): new function,
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/ |
| HD | IRExecutionUnit.cpp | 247 std::string error_string; in GetRunnableInfo() local 267 .setErrorStr(&error_string) in GetRunnableInfo() 290 error_string.c_str()); in GetRunnableInfo()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ |
| HD | Process.cpp | 2520 const char *error_string = error.AsCString(); in Launch() local 2521 if (error_string == nullptr) in Launch() 2522 error_string = "launch failed"; in Launch() 2523 SetExitStatus(-1, error_string); in Launch() 2851 const char *error_string = error.AsCString(); in Attach() local 2852 if (error_string == nullptr) in Attach() 2853 error_string = "attach failed"; in Attach() 2855 SetExitStatus(-1, error_string); in Attach()
|
| /freebsd-11-stable/kerberos5/lib/libkrb5/ |
| HD | Makefile | 530 error_string.c \
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| HD | GDBRemoteCommunicationClient.cpp | 1516 std::string error_string; in GetMemoryRegionInfo() local 1518 error_extractor.GetHexByteString(error_string); in GetMemoryRegionInfo() 1519 error.SetErrorString(error_string.c_str()); in GetMemoryRegionInfo()
|
| HD | ProcessGDBRemote.cpp | 3416 const char *error_string = error.AsCString(); in EstablishConnectionIfNeeded() local 3417 if (error_string == nullptr) in EstablishConnectionIfNeeded() 3418 error_string = "unable to launch " DEBUGSERVER_BASENAME; in EstablishConnectionIfNeeded()
|
| /freebsd-11-stable/sbin/camcontrol/ |
| HD | camcontrol.c | 1081 const char error_string[] = "error getting transfer settings"; in camxferrate() local 1084 warn(error_string); in camxferrate() 1086 warnx(error_string); in camxferrate()
|