Searched refs:reason (Results 1 - 25 of 435) sorted by relevance

1234567891011>>

/freebsd-13-stable/crypto/heimdal/lib/kadm5/
H A Dcheck-cracklib.pl84 my $reason = shift;
85 print "$reason\n";
100 my $reason;
102 $reason = check_basic($params{'principal'}, $params{'new-password'});
103 badpassword($reason) if ($reason ne "ok");
105 $reason = fascist_check($params{'new-password'}, $database);
106 badpassword($reason) if ($reason ne "ok");
108 $reason
[all...]
/freebsd-13-stable/contrib/kyua/engine/
H A Drequirements.cpp249 /// \return A string describing the reason for skipping the test, or empty if
256 std::string reason; local
258 reason = check_required_configs(md.required_configs(), cfg, test_suite);
259 if (!reason.empty())
260 return reason;
262 reason = check_allowed_architectures(md.allowed_architectures(), cfg);
263 if (!reason.empty())
264 return reason;
266 reason = check_allowed_platforms(md.allowed_platforms(), cfg);
267 if (!reason
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DCrashReason.h52 std::string GetCrashReasonString(CrashReason reason, lldb::addr_t fault_addr);
53 std::string GetCrashReasonString(CrashReason reason, const siginfo_t &info);
55 const char *CrashReasonAsString(CrashReason reason);
/freebsd-13-stable/contrib/netbsd-tests/ipf/
H A Dh_common.sh70 local reason="${1}"; shift
74 atf_expect_fail '${reason}'; \
85 local reason="${1}"; shift
91 atf_expect_fail '${reason}'; \
/freebsd-13-stable/tools/regression/posixsem/
H A Dtest.h56 void skip(const char *reason);
57 void todo(const char *reason);
H A Dtest.c102 skip(const char *reason) argument
105 print_status("ok", "skip %s", reason);
109 todo(const char *reason) argument
112 print_status("not ok", "TODO %s", reason);
/freebsd-13-stable/contrib/atf/atf-c/
H A Dtc.c194 * because the caller needs to clean up the reason object before terminating.
198 const atf_dynstr_t *reason)
207 INV(arg == -1 || reason != NULL);
213 if (reason != NULL) {
222 r = atf_dynstr_cstring(reason);
237 errno, "Failed to write results file; result %s, reason %s", result,
238 reason == NULL ? "null" : atf_dynstr_cstring(reason));
243 * The input reason is released in all cases.
250 atf_dynstr_t *reason)
197 write_resfile(const int fd, const char *result, const int arg, const atf_dynstr_t *reason) argument
249 create_resfile(struct context *ctx, const char *result, const int arg, atf_dynstr_t *reason) argument
277 atf_dynstr_t reason; local
320 expected_failure(struct context *ctx, atf_dynstr_t *reason) argument
330 fail_requirement(struct context *ctx, atf_dynstr_t *reason) argument
346 fail_check(struct context *ctx, atf_dynstr_t *reason) argument
382 skip(struct context *ctx, atf_dynstr_t *reason) argument
408 format_reason_ap(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, va_list ap) argument
433 format_reason_fmt(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, ...) argument
454 atf_dynstr_t reason; local
461 atf_dynstr_t reason; local
518 atf_dynstr_t reason; local
551 atf_dynstr_t reason; local
858 atf_dynstr_t reason; local
872 atf_dynstr_t reason; local
886 atf_dynstr_t reason; local
900 atf_dynstr_t reason; local
926 atf_dynstr_t reason; local
962 _atf_tc_expect_fail(struct context *ctx, const char *reason, va_list ap) argument
977 _atf_tc_expect_exit(struct context *ctx, const int exitcode, const char *reason, va_list ap) argument
994 _atf_tc_expect_signal(struct context *ctx, const int signo, const char *reason, va_list ap) argument
1011 _atf_tc_expect_death(struct context *ctx, const char *reason, va_list ap) argument
1027 _atf_tc_expect_timeout(struct context *ctx, const char *reason, va_list ap) argument
1065 atf_dynstr_t reason; local
1071 atf_dynstr_t reason; local
1212 atf_tc_expect_fail(const char *reason, ...) argument
1224 atf_tc_expect_exit(const int exitcode, const char *reason, ...) argument
1236 atf_tc_expect_signal(const int signo, const char *reason, ...) argument
1248 atf_tc_expect_death(const char *reason, ...) argument
1260 atf_tc_expect_timeout(const char *reason, ...) argument
[all...]
/freebsd-13-stable/contrib/apr-util/ldap/
H A Dapr_ldap_option.c71 result->reason = apr_pstrdup(pool, "LDAP: Could not get an option");
114 result->reason = "LDAP: Verify certificate not yet supported by APR on the "
140 result->reason = "LDAP: SSL/TLS not yet supported by APR on this "
150 result->reason = "LDAP: Could not set verify mode";
163 result->reason = "Unable to set LDAP_OPT_REFERRALS.";
187 result->reason = "Unable to set LDAP_OPT_REFHOPLIMIT.";
199 result->reason = "LDAP: Could not set an option";
243 result->reason = "LDAP: Could not switch SSL on for this "
248 result->reason = "LDAP: STARTTLS is not supported by the "
253 result->reason
[all...]
H A Dapr_ldap_url.c256 * The LDAP result code and reason string is returned in the
276 result->reason = "Either the LDAP URL, or the URL structure was NULL. Oops.";
285 result->reason = "The scheme was not recognised as a valid LDAP URL scheme.";
293 result->reason = "Out of memory parsing LDAP URL.";
302 result->reason = "Bad enclosure error while parsing LDAP URL.";
313 result->reason = "Out of memory parsing LDAP URL.";
330 result->reason = "Out of memory parsing LDAP URL.";
351 result->reason = "Bad LDAP URL while parsing IPV6 syntax.";
365 result->reason = "Bad LDAP URL while parsing.";
378 result->reason
[all...]
/freebsd-13-stable/contrib/kyua/model/
H A Dtest_result.cpp41 /// \param reason_ The reason explaining the result, if any. It is OK for this
61 /// Returns the reason explaining the result.
63 /// \return A textual reason, possibly empty.
65 model::test_result::reason(void) const function in class:model::test_result
133 const std::string& reason = object.reason(); local
134 if (reason.empty()) {
138 output << F("model::test_result{type=%s, reason=%s}")
139 % text::quote(result_name, '\'') % text::quote(reason, '\'');
H A Dtest_result.hpp45 /// A test result is a simple pair of (type, reason). The type indicates the
46 /// semantics of the results, and the optional reason provides an extra
49 /// In general, a 'passed' result will not have a reason attached, because a
53 /// benefits. As a result, we allow any test type to carry a reason.
65 const std::string& reason(void) const;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h26 const std::string& reason,
71 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
73 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
75 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
/freebsd-13-stable/contrib/apr/misc/unix/
H A Dotherchild.c56 void (*maintenance) (int reason, void *, int status),
104 int reason,
115 (*ocr->maintenance) (reason, ocr->data, status);
122 int reason)
147 (*ocr->maintenance) (reason, ocr->data, -1);
169 (*ocr->maintenance) (reason, ocr->data, -1);
179 APR_DECLARE(void) apr_proc_other_child_refresh_all(int reason) argument
185 apr_proc_other_child_refresh(ocr, reason);
192 void (*maintenance) (int reason, void *, int status),
204 int reason,
55 apr_proc_other_child_register(apr_proc_t *proc, void (*maintenance) (int reason, void *, int status), void *data, apr_file_t *write_fd, apr_pool_t *p) argument
121 apr_proc_other_child_refresh(apr_other_child_rec_t *ocr, int reason) argument
191 apr_proc_other_child_register(apr_proc_t *proc, void (*maintenance) (int reason, void *, int status), void *data, apr_file_t *write_fd, apr_pool_t *p) argument
210 apr_proc_other_child_refresh(apr_other_child_rec_t *ocr, int reason) argument
216 apr_proc_other_child_refresh_all(int reason) argument
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_objset_id.ksh72 reason="($TESTPOOL/$TESTFS not in zdb output)"
75 "zdb -dddddd $TESTPOOL/$id $obj failed $reason"
76 reason="(file1 not in zdb output)"
79 "zdb -dddddd $TESTPOOL/$id $obj failed $reason"
89 reason="(name $name_from_proc from proc not in zdb output)"
94 "zdb -dddddd $TESTPOOL/$objset_hex failed $reason"
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterCheckpoint.h34 RegisterCheckpoint(Reason reason) argument
35 : UserID(0), m_data_sp(), m_reason(reason) {}
/freebsd-13-stable/crypto/openssl/engines/
H A De_ossltest_err.c58 static void ERR_OSSLTEST_error(int function, int reason, char *file, int line) argument
62 ERR_PUT_error(lib_code, function, reason, file, line);
H A De_dasync_err.c68 static void ERR_DASYNC_error(int function, int reason, char *file, int line) argument
72 ERR_PUT_error(lib_code, function, reason, file, line);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_scariness_score.h41 void Scare(int add_to_score, const char *reason) { argument
44 internal_strlcat(descr, reason, sizeof(descr));
/freebsd-13-stable/contrib/kyua/utils/fs/
H A Dexceptions.cpp56 /// \param reason Description of the error in the path.
58 const std::string& reason) :
59 error(F("Invalid path '%s': %s") % textual_path % reason),
85 /// \param reason Description of the error in the join operation.
88 const std::string& reason) :
90 textual_path2_ % reason),
57 invalid_path_error(const std::string& textual_path, const std::string& reason) argument
86 join_error(const std::string& textual_path1_, const std::string& textual_path2_, const std::string& reason) argument
/freebsd-13-stable/sys/dev/rtwn/rtl8192c/pci/
H A Dr92ce_fw.c59 r92ce_fw_reset(struct rtwn_softc *sc, int reason) argument
62 if (reason == RTWN_FW_RESET_CHECKSUM)
65 r92c_fw_reset(sc, reason);
71 if (reason == RTWN_FW_RESET_DOWNLOAD)
/freebsd-13-stable/sys/xen/
H A Dhypervisor.h60 HYPERVISOR_shutdown(unsigned int reason) argument
63 .reason = reason
68 HYPERVISOR_sched_op_compat(SCHEDOP_shutdown, reason);
/freebsd-13-stable/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c283 const char *reason; local
291 reason = NULL;
294 reason = REASON_SAME;
298 if (!reason && length < params->min[4])
299 reason = REASON_SHORT;
301 if (!reason && length > params->max) {
307 reason = REASON_SAME;
309 reason = REASON_LONG;
312 if (!reason && is_simple(params, newpass)) {
314 reason
[all...]
/freebsd-13-stable/contrib/wpa/src/fst/
H A Dfst_ctrl_aux.c60 const char * fst_reason_name(enum fst_reason reason) argument
62 return fst_get_str_name(reason, reason_names, ARRAY_SIZE(reason_names));
H A Dfst_ctrl_aux.h71 enum fst_reason reason; member in struct:fst_event_extra::fst_event_extra_session_state::fst_session_state_switch_extra::__anon6515
90 const char * fst_reason_name(enum fst_reason reason);
/freebsd-13-stable/sys/dev/mpr/
H A Dmpr_mapping.h50 uint8_t reason; member in struct:_map_phy_change
72 uint8_t reason; member in struct:_map_port_change

Completed in 704 milliseconds

1234567891011>>