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

1234567891011>>

/freebsd-current/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-current/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-current/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-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterCheckpoint.h34 RegisterCheckpoint(Reason reason) : UserID(0), m_reason(reason) {} argument
/freebsd-current/tools/regression/posixsem/
H A Dtest.h54 void skip(const char *reason);
55 void todo(const char *reason);
H A Dtest.c100 skip(const char *reason) argument
103 print_status("ok", "skip %s", reason);
107 todo(const char *reason) argument
110 print_status("not ok", "TODO %s", reason);
/freebsd-current/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
402 format_reason_ap(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, va_list ap) argument
427 format_reason_fmt(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, ...) argument
448 atf_dynstr_t reason; local
455 atf_dynstr_t reason; local
512 atf_dynstr_t reason; local
545 atf_dynstr_t reason; local
852 atf_dynstr_t reason; local
866 atf_dynstr_t reason; local
880 atf_dynstr_t reason; local
894 atf_dynstr_t reason; local
920 atf_dynstr_t reason; local
956 _atf_tc_expect_fail(struct context *ctx, const char *reason, va_list ap) argument
971 _atf_tc_expect_exit(struct context *ctx, const int exitcode, const char *reason, va_list ap) argument
988 _atf_tc_expect_signal(struct context *ctx, const int signo, const char *reason, va_list ap) argument
1005 _atf_tc_expect_death(struct context *ctx, const char *reason, va_list ap) argument
1021 _atf_tc_expect_timeout(struct context *ctx, const char *reason, va_list ap) argument
1059 atf_dynstr_t reason; local
1065 atf_dynstr_t reason; local
1206 atf_tc_expect_fail(const char *reason, ...) argument
1218 atf_tc_expect_exit(const int exitcode, const char *reason, ...) argument
1230 atf_tc_expect_signal(const int signo, const char *reason, ...) argument
1242 atf_tc_expect_death(const char *reason, ...) argument
1254 atf_tc_expect_timeout(const char *reason, ...) argument
[all...]
/freebsd-current/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-current/sys/xen/
H A Dhypervisor.h38 HYPERVISOR_shutdown(unsigned int reason) argument
41 .reason = reason
/freebsd-current/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-current/tests/examples/
H A Dtest_ktest_example.py29 @pytest.mark.skip(reason="comment me ( or delete the func) to run the test")
33 @pytest.mark.skip(reason="comment me ( or delete the func) to run the test")
H A Dtest_examples.py21 @pytest.mark.skip(reason="comment me to run the test")
31 @pytest.mark.skip(reason="comment me to run the test")
39 @pytest.mark.skip(reason="comment me to run the test")
52 @pytest.mark.skip(reason="comment me to run the test")
62 @pytest.mark.skip(reason="comment me to run the test")
70 @pytest.mark.skip(reason="comment me to run the test")
88 # @pytest.mark.skip(reason="comment me to run the test")
128 @pytest.mark.skip(reason="comment me to run the test")
134 @pytest.mark.skip(reason="comment me to run the test")
187 @pytest.mark.skip(reason
[all...]
/freebsd-current/crypto/openssl/engines/
H A De_ossltest_err.c50 static void ERR_OSSLTEST_error(int function, int reason, const char *file, int line) argument
54 ERR_raise(lib_code, reason);
H A De_dasync_err.c50 static void ERR_DASYNC_error(int function, int reason, const char *file, int line) argument
54 ERR_raise(lib_code, reason);
/freebsd-current/contrib/unbound/validator/
H A Dval_kentry.c60 if(kd->reason)
61 s += strlen(kd->reason)+1;
95 free(kd->reason);
138 if(d->reason) {
139 newd->reason = regional_strdup(region, d->reason);
140 if(!newd->reason)
193 if(copy_reason && d->reason && *d->reason != 0) {
194 newd->reason
281 key_entry_create_null(struct regional* region, uint8_t* name, size_t namelen, uint16_t dclass, time_t ttl, sldns_ede_code reason_bogus, const char* reason, time_t now) argument
303 key_entry_create_rrset(struct regional* region, uint8_t* name, size_t namelen, uint16_t dclass, struct ub_packed_rrset_key* rrset, uint8_t* sigalg, sldns_ede_code reason_bogus, const char* reason, time_t now) argument
336 key_entry_create_bad(struct regional* region, uint8_t* name, size_t namelen, uint16_t dclass, time_t ttl, sldns_ede_code reason_bogus, const char* reason, time_t now) argument
[all...]
/freebsd-current/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-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h25 const char *reason,
71 [[noreturn]] void report_fatal_error(const char *reason,
73 [[noreturn]] void report_fatal_error(StringRef reason,
75 [[noreturn]] void report_fatal_error(const Twine &reason,
/freebsd-current/sys/dev/rtwn/rtl8192c/pci/
H A Dr92ce_fw.c57 r92ce_fw_reset(struct rtwn_softc *sc, int reason) argument
60 if (reason == RTWN_FW_RESET_CHECKSUM)
63 r92c_fw_reset(sc, reason);
69 if (reason == RTWN_FW_RESET_DOWNLOAD)
/freebsd-current/crypto/openssl/test/recipes/
H A D02-test_errstr.t46 # it was outside the range that ERR looks at, ERR gives the reason string
47 # "reason(nnn)", where nnn is the errno number.
50 +1 # Checking that error 128 gives 'reason(128)'
83 "reason(256)"));
84 # Reason code 0 of any library gives the library name as reason
91 # For an error string "error:xxxxxxxx:lib:func:reason", this returns
94 # ( "xxxxxxxx", "lib", "func", "reason" )
96 # Limit to 5 items, in case the reason contains a colon
137 my $reason =
139 $reason
[all...]
/freebsd-current/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-current/crypto/openssh/
H A Dauth2-pubkeyfile.c177 const char *reason = NULL; local
200 if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) {
201 debug("%s: bad principals options: %s", loc, reason);
202 auth_debug_add("%s: bad principals options: %s", loc, reason);
272 const char *reason = NULL; local
290 reason = "invalid key option string";
301 if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) {
302 debug("%s: bad key options: %s", loc, reason);
303 auth_debug_add("%s: bad key options: %s", loc, reason);
328 reason
[all...]
/freebsd-current/tests/atf_python/
H A Datf_pytest.py117 reason: str
186 def set_report_state(self, test_name: str, state: str, reason: str):
187 self._tests_state_map[test_name] = self.ReportState(state, reason)
195 reason = data[2]
197 if reason.startswith(prefix):
198 reason = reason[len(prefix):]
199 return reason
241 reason = self._extract_report_reason(report)
249 self.set_report_state(test_name, state, reason)
[all...]
/freebsd-current/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::__anon169
90 const char * fst_reason_name(enum fst_reason reason);

Completed in 388 milliseconds

1234567891011>>