Home
last modified time | relevance | path

Searched refs:problem (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/freebsd/crypto/openssh/
H A Dauth-krb5.c61 krb5_error_code problem; in krb5_init() local
64 problem = krb5_init_context(&authctxt->krb5_ctx); in krb5_init()
65 if (problem) in krb5_init()
66 return (problem); in krb5_init()
78 krb5_error_code problem; in auth_krb5_password() local
90 problem = krb5_init(authctxt); in auth_krb5_password()
91 if (problem) in auth_krb5_password()
94 problem = krb5_parse_name(authctxt->krb5_ctx, client, in auth_krb5_password()
96 if (problem) in auth_krb5_password()
101 problem = krb5_cc_new_unique(authctxt->krb5_ctx, in auth_krb5_password()
[all …]
H A Dgss-serv-krb5.c65 krb5_error_code problem; in ssh_gssapi_krb5_init() local
70 problem = krb5_init_context(&krb_context); in ssh_gssapi_krb5_init()
71 if (problem) { in ssh_gssapi_krb5_init()
120 krb5_error_code problem; local
136 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix,
138 errmsg = krb5_get_error_message(krb_context, problem);
141 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) {
143 krb5_get_err_text(krb_context, problem));
149 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) {
150 errmsg = krb5_get_error_message(krb_context, problem);
[all …]
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Drecvauth.c56 krb5_error_code retval, problem; in recvauth_common() local
71 problem = 0; in recvauth_common()
82 problem = KRB5_SENDAUTH_BADAUTHVERS; in recvauth_common()
88 problem = KRB5_SENDAUTH_BADAUTHVERS; in recvauth_common()
97 if (appl_version != NULL && !problem) { in recvauth_common()
100 problem = KRB5_SENDAUTH_BADAPPLVERS; in recvauth_common()
104 if (version && !problem) in recvauth_common()
114 return(problem); /* We'll return the top-level problem */ in recvauth_common()
116 if (problem) in recvauth_common()
117 return(problem); in recvauth_common()
[all …]
/freebsd/contrib/libyaml/tests/
H A Dexample-reformatter-alt.c123 fprintf(stderr, "Reader error: %s: #%X at %zd\n", parser.problem, in main()
127 fprintf(stderr, "Reader error: %s at %lu\n", parser.problem, in main()
137 parser.problem, parser.problem_mark.line+1, in main()
142 parser.problem, parser.problem_mark.line+1, in main()
152 parser.problem, parser.problem_mark.line+1, in main()
157 parser.problem, parser.problem_mark.line+1, in main()
167 parser.problem, parser.problem_mark.line+1, in main()
172 parser.problem, parser.problem_mark.line+1, in main()
199 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main()
203 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
H A Dexample-reformatter.c123 fprintf(stderr, "Reader error: %s: #%X at %ld\n", parser.problem, in main()
127 fprintf(stderr, "Reader error: %s at %ld\n", parser.problem, in main()
137 parser.problem, (int)parser.problem_mark.line+1, in main()
142 parser.problem, (int)parser.problem_mark.line+1, in main()
152 parser.problem, (int)parser.problem_mark.line+1, in main()
157 parser.problem, (int)parser.problem_mark.line+1, in main()
184 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main()
188 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
H A Dtest-reader.c148 parser.problem, parser.problem_value, (long)parser.problem_offset); in check_utf8_sequences()
152 parser.problem, (long)parser.problem_offset); in check_utf8_sequences()
183 printf("- (reader error: %s at %ld)\n", parser.problem, (long)parser.problem_offset); in check_boms()
235 printf("\treader error: %s at %ld\n", parser.problem, (long)parser.problem_offset); in check_long_utf8()
265 printf("\treader error: %s at %ld\n", parser.problem, (long)parser.problem_offset); in check_long_utf8()
306 printf("\treader error: %s at %ld\n", parser.problem, (long)parser.problem_offset); in check_long_utf16()
336 printf("\treader error: %s at %ld\n", parser.problem, (long)parser.problem_offset); in check_long_utf16()
H A Dexample-deconstructor.c1036 fprintf(stderr, "Reader error: %s: #%X at %ld\n", parser.problem, in main()
1040 fprintf(stderr, "Reader error: %s at %ld\n", parser.problem, in main()
1050 parser.problem, (int)parser.problem_mark.line+1, in main()
1055 parser.problem, (int)parser.problem_mark.line+1, in main()
1065 parser.problem, (int)parser.problem_mark.line+1, in main()
1070 parser.problem, (int)parser.problem_mark.line+1, in main()
1098 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main()
1102 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
H A Dexample-deconstructor-alt.c706 fprintf(stderr, "Reader error: %s: #%X at %zd\n", parser.problem, in main()
710 fprintf(stderr, "Reader error: %s at %zd\n", parser.problem, in main()
720 parser.problem, parser.problem_mark.line+1, in main()
725 parser.problem, parser.problem_mark.line+1, in main()
735 parser.problem, parser.problem_mark.line+1, in main()
740 parser.problem, parser.problem_mark.line+1, in main()
769 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main()
773 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
/freebsd/crypto/heimdal/lib/gssapi/krb5/
H A Daddress_to_krb5addr.c48 krb5_error_code problem; in _gsskrb5i_address_to_krb5addr() local
65 problem = krb5_h_addr2sockaddr (context, in _gsskrb5i_address_to_krb5addr()
71 if (problem) in _gsskrb5i_address_to_krb5addr()
74 problem = krb5_sockaddr2address (context, &sa, address); in _gsskrb5i_address_to_krb5addr()
76 return problem; in _gsskrb5i_address_to_krb5addr()
/freebsd/contrib/ntp/scripts/build/
H A DgenAuthors.in41 my $problem = 0;
55 $problem = 1;
62 die "Fix the problem(s) noted above!\n" if $problem;
73 $problem = 1;
81 die "Fix the problem(s) noted above!\n" if $problem;
/freebsd/contrib/libpcap/
H A DCONTRIBUTING.md8 To report a non-security problem (failure to compile, failure to capture packets
11 please check that the problem reproduces with the current git master branch of
12 libpcap. If it does (and it is not a security-related problem, otherwise see
14 and check if the problem has already been reported. If it has not, please open
21 * statement of the problem
24 Please note that if you know exactly how to solve the problem and the solution
/freebsd/contrib/libyaml/src/
H A Dwriter.c9 yaml_emitter_set_writer_error(yaml_emitter_t *emitter, const char *problem);
19 yaml_emitter_set_writer_error(yaml_emitter_t *emitter, const char *problem) in yaml_emitter_set_writer_error() argument
22 emitter->problem = problem; in yaml_emitter_set_writer_error()
H A Dloader.c17 const char *problem, yaml_mark_t problem_mark);
22 const char *problem, yaml_mark_t problem_mark);
140 const char *problem, yaml_mark_t problem_mark) in yaml_parser_set_composer_error() argument
143 parser->problem = problem; in yaml_parser_set_composer_error()
156 const char *problem, yaml_mark_t problem_mark) in yaml_parser_set_composer_error_context() argument
161 parser->problem = problem; in yaml_parser_set_composer_error_context()
H A Dreader.c9 yaml_parser_set_reader_error(yaml_parser_t *parser, const char *problem,
26 yaml_parser_set_reader_error(yaml_parser_t *parser, const char *problem, in yaml_parser_set_reader_error() argument
30 parser->problem = problem; in yaml_parser_set_reader_error()
/freebsd/crypto/krb5/src/lib/krb5/unicode/ucdata/
H A DREADME109 3. Fixed a problem with weak sequences containing non-spacing marks in the
112 4. Fixed a problem with text runs of the opposite direction of the string
126 1. Fixed a problem with the bidi algorithm locating directional section
129 2. Fixed a problem with the bidi algorithm starting the reordering correctly.
131 3. Fixed a problem with the bidi algorithm determining end boundaries for LTR
134 4. Fixed a problem with the bidi algorithm reordering weak (digits and number
162 2. Fixed a problem with choosing the correct field when mapping case.
170 1. Fixed a problem with an incorrect amount of storage being allocated for the
181 1. Fixed a problem with adding certain ranges.
189 1. Fixed a problem with looking up decompositions in "ucgendat."
[all …]
/freebsd/contrib/bc/project/
H A Dissue10.md5 I just hit a (small and unlikely to be triggered) problem when using the `-l` flag:
22 …irst command and other kinds of errors (like say a divide by zero) don't seem to cause the problem.
72 …ally has to be the FIRST input, even entering an empty line before it makes the problem not happen.
74 I thought it could be an editline(3) problem since some programs end up using that pretty much only…
84 …rsion `4.0.1`. Since it is the port, and not the system one, I think the problem may lie with some…
90 I found the problem!
/freebsd/contrib/lyaml/ext/yaml/
H A Demitter.c360 if (emitter->emitter.problem) in emit()
361 luaL_addstring (&emitter->errbuff, emitter->emitter.problem); in emit()
427 if (!emitter->emitter.problem) in Pemitter()
428 emitter->emitter.problem = "cannot initialize emitter"; in Pemitter()
429 return luaL_error (L, "%s", emitter->emitter.problem); in Pemitter()
/freebsd/crypto/openssl/
H A DSUPPORT.md26 the problem has already been reported.
27 - Download the latest version from the repository to see if the problem
30 problem persists.
48 - Problem Description (steps that will reproduce the problem, if known)
/freebsd/contrib/ntp/sntp/m4/
H A Dsntp_problemtests.m418 [problem-tests],
20 [--enable-problem-tests],
/freebsd/tools/test/stress2/tools/
H A Dfail.sh64 mountu.sh 20170321 Known NFS problem
68 nfssillyrename.sh 20170321 Known problem
/freebsd/sys/contrib/openzfs/.github/ISSUE_TEMPLATE/
H A Dbug_report.md40 ### Describe the problem you're observing
42 ### Describe how to reproduce the problem
/freebsd/contrib/sendmail/src/
H A Dcollect.c928 char *problem; local
932 problem = "unexpected close";
934 problem = "I/O error";
936 problem = BARE_LF_MSG;
938 problem = BARE_CR_MSG;
940 problem = "read timeout";
951 #define CONN_ERR_ARGS LOG_CLT, CONN_LOG_FROM, problem, \
/freebsd/sys/contrib/dev/acpica/
H A Dchanges.txt95 a problem with the second from last release (before this)20240322 (aka
168 Fixed a problem with the ASL/AML Timer() operator. Discovered by UBSAN:
376 Data Table Compiler: Fixed a problem with support for the SDEV table,
429 iASL/NHLT table: Fixed a reported problem where a fault would occur
887 iASL: Fixed a problem where method names in "Alias ()" statement could be
1086 Fixed a problem with the local version of sprint(): On 32-bit, the
1114 problem by enabling the sleep button in ACPI legacy wake. From Anchal
1124 machines. Avoid this problem by renaming this variable from HOST to
1141 Fixes a problem with the External operator where extra/extraneous bytes
1429 Dispatch active GPEs at init time") to get undone, so the problem
[all …]
/freebsd/contrib/nvi/cl/
H A DREADME.signal28 that doesn't seem like a problem.
33 creates a key mapping with an infinite loop. This problem will become
46 input buffer might solve the latter problem, but it's not going to be
70 The second problem is that vi permits you to enter literal signal
91 work well for trying to detect infinite maps. The problem is that
117 literal character. To some extent, we have this problem already,
136 The problem with this is that if we do our own SIGTSTP handling, in either
149 how it left them), and starts prompting the user for input. The problem is
/freebsd/contrib/ntp/html/hints/
H A Daix4 file when processing the refclock_report() routine. The problem, which
31 Details of the problem report follow.
61 > Reported as a Highly pervasive problem: NO

12345678910>>...15