| /freebsd-10-stable/crypto/openssh/ |
| D | auth-krb5.c | 61 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 …]
|
| D | gss-serv-krb5.c | 66 krb5_error_code problem; in ssh_gssapi_krb5_init() local 71 problem = krb5_init_context(&krb_context); in ssh_gssapi_krb5_init() 72 if (problem) { in ssh_gssapi_krb5_init() 121 krb5_error_code problem; local 137 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix, 139 errmsg = krb5_get_error_message(krb_context, problem); 142 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) { 144 krb5_get_err_text(krb_context, problem)); 150 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) { 151 errmsg = krb5_get_error_message(krb_context, problem); [all …]
|
| /freebsd-10-stable/contrib/gcc/ |
| D | df-core.c | 330 df_add_problem (struct df *df, struct df_problem *problem, int flags) in df_add_problem() argument 335 if (problem->dependent_problem_fun) in df_add_problem() 336 (problem->dependent_problem_fun) (df, 0); in df_add_problem() 341 dflow = df->problems_by_index[problem->id]; in df_add_problem() 349 dflow->problem = problem; in df_add_problem() 351 df->problems_by_index[dflow->problem->id] = dflow; in df_add_problem() 365 gcc_assert (!(mask & (~dflow->problem->changeable_flags))); in df_set_flags() 380 gcc_assert (!(mask & (~dflow->problem->changeable_flags))); in df_clear_flags() 404 if (dflow->problem->reset_fun) in df_set_blocks() 405 dflow->problem->reset_fun (dflow, df->blocks_to_analyze); in df_set_blocks() [all …]
|
| D | tree-loop-linear.c | 258 bool problem = false; in linear_transform_loops() local 283 problem = true; in linear_transform_loops() 288 if (problem) in linear_transform_loops()
|
| /freebsd-10-stable/contrib/libyaml/tests/ |
| D | example-reformatter-alt.c | 123 fprintf(stderr, "Reader error: %s: #%X at %d\n", parser.problem, in main() 127 fprintf(stderr, "Reader error: %s at %d\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()
|
| D | example-reformatter.c | 123 fprintf(stderr, "Reader error: %s: #%X at %d\n", parser.problem, in main() 127 fprintf(stderr, "Reader error: %s at %d\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() 184 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main() 188 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
|
| D | test-reader.c | 148 parser.problem, parser.problem_value, parser.problem_offset); in check_utf8_sequences() 152 parser.problem, parser.problem_offset); in check_utf8_sequences() 183 printf("- (reader error: %s at %d)\n", parser.problem, parser.problem_offset); in check_boms() 235 printf("\treader error: %s at %d\n", parser.problem, parser.problem_offset); in check_long_utf8() 265 printf("\treader error: %s at %d\n", parser.problem, parser.problem_offset); in check_long_utf8() 306 printf("\treader error: %s at %d\n", parser.problem, parser.problem_offset); in check_long_utf16() 336 printf("\treader error: %s at %d\n", parser.problem, parser.problem_offset); in check_long_utf16()
|
| D | example-deconstructor.c | 1036 fprintf(stderr, "Reader error: %s: #%X at %d\n", parser.problem, in main() 1040 fprintf(stderr, "Reader error: %s at %d\n", parser.problem, in main() 1050 parser.problem, parser.problem_mark.line+1, in main() 1055 parser.problem, parser.problem_mark.line+1, in main() 1065 parser.problem, parser.problem_mark.line+1, in main() 1070 parser.problem, parser.problem_mark.line+1, in main() 1099 fprintf(stderr, "Writer error: %s\n", emitter.problem); in main() 1103 fprintf(stderr, "Emitter error: %s\n", emitter.problem); in main()
|
| D | example-deconstructor-alt.c | 706 fprintf(stderr, "Reader error: %s: #%X at %d\n", parser.problem, in main() 710 fprintf(stderr, "Reader error: %s at %d\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-10-stable/crypto/heimdal/lib/gssapi/krb5/ |
| D | address_to_krb5addr.c | 48 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-10-stable/contrib/ntp/scripts/build/ |
| D | genAuthors.in | 40 my $problem = 0; 54 $problem = 1; 61 die "Fix the problem(s) noted above!\n" if $problem; 72 $problem = 1; 80 die "Fix the problem(s) noted above!\n" if $problem;
|
| /freebsd-10-stable/contrib/libyaml/src/ |
| D | loader.c | 17 const char *problem, yaml_mark_t problem_mark); 22 const char *problem, yaml_mark_t problem_mark); 120 const char *problem, yaml_mark_t problem_mark) in yaml_parser_set_composer_error() argument 123 parser->problem = problem; in yaml_parser_set_composer_error() 136 const char *problem, yaml_mark_t problem_mark) in yaml_parser_set_composer_error_context() argument 141 parser->problem = problem; in yaml_parser_set_composer_error_context()
|
| D | writer.c | 9 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()
|
| D | reader.c | 9 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-10-stable/contrib/llvm/lib/CodeGen/ |
| D | RegAllocPBQP.cpp | 147 bool mapPBQPToRegAlloc(const PBQPRAProblem &problem, 467 bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQPRAProblem &problem, in mapPBQPToRegAlloc() argument 475 const PBQP::Graph &g = problem.getGraph(); in mapPBQPToRegAlloc() 481 unsigned vreg = problem.getVRegForNode(*nodeItr); in mapPBQPToRegAlloc() 484 if (problem.isPRegOption(vreg, alloc)) { in mapPBQPToRegAlloc() 485 unsigned preg = problem.getPRegForOption(vreg, alloc); in mapPBQPToRegAlloc() 490 } else if (problem.isSpillOption(vreg, alloc)) { in mapPBQPToRegAlloc() 590 OwningPtr<PBQPRAProblem> problem( in runOnMachineFunction() local 602 problem->getGraph().dump(os); in runOnMachineFunction() 608 problem->getGraph()); in runOnMachineFunction() [all …]
|
| /freebsd-10-stable/crypto/openssl/ |
| D | PROBLEMS | 4 NOTE: The problem described here only applies when OpenSSL isn't built 38 As long as Apple doesn't fix the problem with ld, this problem building 39 OpenSSL will remain as is. Well, the problem was addressed in 0.9.8f by 55 - According to a problem report, there are bugs in gcc 3.0 that are 68 - According to multiple problem reports, some of our message digest 79 The problem can be worked around by patching the environment according to 87 perform shift operations:-( To work the problem around configure 95 The problem manifests itself by the BN_kronecker test hanging in an 118 The cause of the problem seems to be that isxdigit(), called from 138 NOTE: building non-shared doesn't come with this problem. [all …]
|
| /freebsd-10-stable/contrib/opie/ |
| D | BUG-REPORT | 5 sure that your "bug" is not a known problem. 37 us in fixing the problem and improve the chances that we'll get back to you: 39 7. A diagnosis of what is causing the problem. 41 8. A test case that can repeatably demonstrate the problem. 43 9. A fix for the problem.
|
| /freebsd-10-stable/cddl/contrib/dtracetoolkit/Notes/ |
| D | iotop_notes.txt | 23 understate the problem. 27 the problem (consider all ten disks at 10% utilisation, this would also be 37 a block disk device. A problem happens when a metadevice contains physical
|
| /freebsd-10-stable/contrib/amd/ |
| D | FAQ | 44 problem exists if you use the userland "automount" daemon instead of 46 address this serious problem. 53 older than kernel." Is it a problem? 60 really bothers you, then one way to "fix" the problem is to recompile
|
| /freebsd-10-stable/sys/contrib/dev/acpica/ |
| D | changes.txt | 116 iASL/Disassembler: Fixed a problem with the ASL+ code disassembly where 188 will completely solve this problem as it is deployed (automatically) in 265 problem above). 299 Fixed a problem with the compilation of the GpioIo and GpioInt resource 362 Fixed an AML interpreter problem where control method invocations were 380 problem and corrects it before the package is returned to the caller that 470 Fixed a problem where the method auto-serialization could interfere with 695 AcpiExec: Fixed a problem where any more than 32 ACPI tables in the XSDT 739 Debugger: Fixed a problem with the "!!" command (get last command 784 the compiler input file). Also fixed a problem with // comments that [all …]
|
| /freebsd-10-stable/contrib/ntp/sntp/m4/ |
| D | sntp_problemtests.m4 | 18 [problem-tests], 20 [--enable-problem-tests],
|
| D | ntp_problemtests.m4 | 18 [problem-tests], 20 [--enable-problem-tests],
|
| /freebsd-10-stable/contrib/groff/ |
| D | BUG-REPORT | 26 [Include all the files necessary to reproduce the problem that are not 33 any macro package, but obviously if you're reporting a problem with a 53 [If you can suggest a fix for the problem, include a context diff here.
|
| /freebsd-10-stable/contrib/sendmail/src/ |
| D | collect.c | 813 char *problem; local 821 problem = "unexpected close"; 823 problem = "I/O error"; 825 problem = "read timeout"; 829 problem, host, 833 problem, host, 837 problem, host,
|
| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | TODO | 15 Wow, three bug reports for the same problem in one day! We should 28 There should really be a test in the testsuite for this problem, since 56 The z8k has suffered bit rot and is known to not build. The problem 72 Solaris 8 x86 CURSES_H problem 75 The original problem was worked around with: 82 When building both GDB and SID using the same source tree the problem
|