/freebsd/tools/tools/ath/athregs/ |
H A D | dumpregs.c | 60 static int ath_hal_anyregs(int what); 61 static int ath_hal_setupregs(struct ath_diag *atd, int what); 63 static void ath_hal_dumpregs(FILE *fd, int what); 66 static void ath_hal_dumpint(FILE *fd, int what); 67 static void ath_hal_dumpqcu(FILE *fd, int what); 68 static void ath_hal_dumpdcu(FILE *fd, int what); 69 static void ath_hal_dumpbb(FILE *fd, int what); 96 int what, c, i; in main() local 105 what = 0; in main() 111 what |= DUMP_ALL; in main() [all …]
|
/freebsd/usr.bin/posixmqcontrol/ |
H A D | posixmqcontrol.c | 457 errno_t what = errno; in create() local 459 warnc(what, "mq_open(create)"); in create() 460 return (what); in create() 471 errno_t what = errno; in create() local 473 warnc(what, "mq_getfd_np(create)"); in create() 475 return (what); in create() 480 errno_t what = errno; in create() local 482 warnc(what, "fstat(create)"); in create() 484 return (what); in create() 495 errno_t what = errno; in create() local [all …]
|
/freebsd/sys/fs/cuse/ |
H A D | cuse_defs.h | 81 #define CUSE_ID_DEFAULT(what) CUSE_MAKE_ID(0,0,what,0) argument 82 #define CUSE_ID_WEBCAMD(what) CUSE_MAKE_ID('W','C',what,0) /* Used by Webcamd. */ argument 83 #define CUSE_ID_SUNDTEK(what) CUSE_MAKE_ID('S','K',what,0) /* Used by Sundtek. */ argument 84 #define CUSE_ID_CX88(what) CUSE_MAKE_ID('C','X',what,0) /* Used by cx88 driver. */ argument 85 #define CUSE_ID_UHIDD(what) CUSE_MAKE_ID('U','D',what,0) /* Used by uhidd. */ argument
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/ |
H A D | tst.procpriv.ksh | 35 # specifics of context. This test therefore asserts that we can read what we 36 # think we should be able to, that we can't read what we think we shouldn't be 38 # what we cannot assert one way or the other. 42 #define CANREAD(what, field) \ 43 BEGIN { errmsg = "can't read field from what"; printf("field: "); \ 44 trace(what->field); printf("\n"); } 46 #define CANTREAD(what, field) \ 47 BEGIN { errmsg = ""; trace(what->field); \ 48 printf("\nable to successfully read field from what!"); exit(1); } 50 #define MIGHTREAD(what, field) \ [all …]
|
/freebsd/sys/contrib/openzfs/module/zcommon/ |
H A D | zfs_namecheck.c | 99 zfs_component_namecheck(const char *path, namecheck_err_t *why, char *what) in zfs_component_namecheck() argument 119 *what = *loc; in zfs_component_namecheck() 136 permset_namecheck(const char *path, namecheck_err_t *why, char *what) in permset_namecheck() argument 147 *what = path[0]; in permset_namecheck() 152 return (zfs_component_namecheck(&path[1], why, what)); in permset_namecheck() 183 entity_namecheck(const char *path, namecheck_err_t *why, char *what) in entity_namecheck() argument 187 EQUIV(why == NULL, what == NULL); in entity_namecheck() 232 *what = *loc; in entity_namecheck() 301 dataset_namecheck(const char *path, namecheck_err_t *why, char *what) in dataset_namecheck() argument 303 int ret = entity_namecheck(path, why, what); in dataset_namecheck() [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/ntlm/man/man3/ |
H A D | ntlm_core.3 | 89 In case of success 0 is return, an errors, a errno in what went wrong. 112 In case of success 0 is return, an errors, a errno in what went wrong. 139 In case of success 0 is return, an errors, a errno in what went wrong. 160 In case of success 0 is return, an errors, a errno in what went wrong. 189 In case of success 0 is return, an errors, a errno in what went wrong. 208 In case of success 0 is return, an errors, a errno in what went wrong. 227 In case of success 0 is return, an errors, a errno in what went wrong. 244 In case of success 0 is return, an errors, a errno in what went wrong. 261 In case of success 0 is return, an errors, a errno in what went wrong. 278 In case of success 0 is return, an errors, a errno in what went wrong. [all …]
|
/freebsd/contrib/googletest/.github/ISSUE_TEMPLATE/ |
H A D | 00-bug_report.yml | 6 id: what-happened 9 description: What happened, and what did you expect to happen? 22 label: What version of GoogleTest are you using? 29 label: What operating system and version are you using? 36 label: What compiler and version are you using? 43 label: What build system are you using?
|
/freebsd/crypto/openssl/apps/ |
H A D | CA.pl.in | 46 my $WHAT = shift @ARGV || ""; 121 if ( $WHAT =~ /^(-\?|-h|-help)$/ ) { 132 if ($WHAT eq '-newcert' ) { 137 } elsif ($WHAT eq '-precert' ) { 142 } elsif ($WHAT =~ /^\-newreq(\-nodes)?$/ ) { 146 } elsif ($WHAT eq '-newca' ) { 186 } elsif ($WHAT eq '-pkcs12' ) { 193 } elsif ($WHAT eq '-xsign' ) { 195 } elsif ($WHAT eq '-sign' ) { 199 } elsif ($WHAT eq '-signCA' ) { [all …]
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | bufferevent_async.c | 105 be_async_run_eventcb(struct bufferevent *bev, short what, int options) in be_async_run_eventcb() argument 106 { bufferevent_run_eventcb_(bev, what, options|BEV_TRIG_DEFER_CALLBACKS); } in be_async_run_eventcb() 109 be_async_trigger_nolock(struct bufferevent *bev, short what, int options) in be_async_trigger_nolock() argument 110 { bufferevent_trigger_nolock_(bev, what, options|BEV_TRIG_DEFER_CALLBACKS); } in be_async_trigger_nolock() 345 be_async_enable(struct bufferevent *buf, short what) in be_async_enable() argument 357 if (what & EV_READ) in be_async_enable() 359 if (what & EV_WRITE) in be_async_enable() 365 if (what & EV_READ) in be_async_enable() 367 if (what & EV_WRITE) in be_async_enable() 373 be_async_disable(struct bufferevent *bev, short what) in be_async_disable() argument [all …]
|
/freebsd/contrib/libevent/ |
H A D | bufferevent_async.c | 105 be_async_run_eventcb(struct bufferevent *bev, short what, int options) in be_async_run_eventcb() argument 106 { bufferevent_run_eventcb_(bev, what, options|BEV_TRIG_DEFER_CALLBACKS); } in be_async_run_eventcb() 109 be_async_trigger_nolock(struct bufferevent *bev, short what, int options) in be_async_trigger_nolock() argument 110 { bufferevent_trigger_nolock_(bev, what, options|BEV_TRIG_DEFER_CALLBACKS); } in be_async_trigger_nolock() 345 be_async_enable(struct bufferevent *buf, short what) in be_async_enable() argument 357 if (what & EV_READ) in be_async_enable() 359 if (what & EV_WRITE) in be_async_enable() 365 if (what & EV_READ) in be_async_enable() 367 if (what & EV_WRITE) in be_async_enable() 373 be_async_disable(struct bufferevent *bev, short what) in be_async_disable() argument [all …]
|
/freebsd/contrib/atf/atf-c++/ |
H A D | macros_test.cpp | 189 if (get_config_var("what") == "throw_int") in ATF_TEST_CASE_BODY() 191 else if (get_config_var("what") == "throw_rt") in ATF_TEST_CASE_BODY() 194 else if (get_config_var("what") == "no_throw_rt") in ATF_TEST_CASE_BODY() 210 if (get_config_var("what") == "throw_int") in ATF_TEST_CASE_BODY() 212 else if (get_config_var("what") == "throw_rt_match") in ATF_TEST_CASE_BODY() 215 else if (get_config_var("what") == "throw_rt_no_match") in ATF_TEST_CASE_BODY() 218 else if (get_config_var("what") == "no_throw_rt") in ATF_TEST_CASE_BODY() 247 if (get_config_var("what") == "no_error") in ATF_TEST_CASE_BODY() 249 else if (get_config_var("what") == "errno_ok") in ATF_TEST_CASE_BODY() 251 else if (get_config_var("what") == "errno_fail") in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/crypto/openssl/ |
H A D | configdata.pm.in | 20 # Unix form /VOLUME/DIR1/DIR2/FILE, which is what VMS perl supports 265 foreach my $what (@disablables) { 266 $longest = length($what) if $longest < length($what); 267 $longest2 = length($disabled{$what}) 268 if $disabled{$what} && $longest2 < length($disabled{$what}); 271 foreach my $what (@disablables) { 272 print " $what\n" unless $disabled{$what}; 275 foreach my $what (@disablables) { 276 if ($disabled{$what}) { 277 print " $what", ' ' x ($longest - length($what) + 1), [all …]
|
/freebsd/contrib/sendmail/libsm/ |
H A D | syslogio.c | 161 ** what -- what information is being set 173 sm_syslogsetinfo(fp, what, valp) in sm_syslogsetinfo() argument 175 int what; 178 switch (what) 194 ** what -- the information type being queried 206 sm_sysloggetinfo(fp, what, valp) in sm_sysloggetinfo() argument 208 int what; 211 switch (what)
|
/freebsd/crypto/openssh/regress/ |
H A D | modpipe.c | 45 enum { MOD_XOR, MOD_AND_OR } what; member 53 char what[16+1]; in parse_modification() local 58 what, &m->offset, &m1, &m2)) < 3) in parse_modification() 60 if (strcasecmp(what, "xor") == 0) { in parse_modification() 65 m->what = MOD_XOR; in parse_modification() 67 } else if (strcasecmp(what, "andor") == 0) { in parse_modification() 74 m->what = MOD_AND_OR; in parse_modification() 78 errx(1, "Invalid modification type \"%s\"", what); in parse_modification() 119 switch (mods[i].what) { in main()
|
/freebsd/contrib/kyua/utils/config/ |
H A D | exceptions_test.cpp | 45 ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0); in ATF_TEST_CASE_BODY() 57 ATF_REQUIRE(std::strcmp("Failed to combine 'first.second'", e.what()) == 0); in ATF_TEST_CASE_BODY() 65 ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0); in ATF_TEST_CASE_BODY() 78 e.what()) == 0); in ATF_TEST_CASE_BODY() 86 ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0); in ATF_TEST_CASE_BODY() 99 e.what()) == 0); in ATF_TEST_CASE_BODY() 111 ATF_REQUIRE(std::strcmp("The test '1.two' string", e.what()) == 0); in ATF_TEST_CASE_BODY() 119 ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/sendmail/src/ |
H A D | shmticklib.c | 28 ** what -- which variable to increment 35 shmtick(inc_me, what) 37 int what; variable 66 if (what >= STATUSD_LONGS) 67 what = STATUSD_LONGS - 1; 76 ++(sp->ul[what]);
|
/freebsd/crypto/heimdal/doc/ |
H A D | intro.texi | 3 @node Introduction, What is Kerberos?, Top, Top 4 @c @node Introduction, What is Kerberos?, Top, Top 8 @heading What is Heimdal? 79 include information on what machine and operating system (including 80 version) you are running, what you are trying to do, what happens, what
|
/freebsd/crypto/openssh/contrib/hpux/ |
H A D | sshd.rc | 25 WHAT='OpenSSH' 52 echo "Starting $WHAT" 56 echo "Stopping $WHAT" 67 $WHAT_PATH $SSHD_ARGS && echo "$WHAT started" 76 echo "$WHAT stopped" 79 echo "Unable to stop $WHAT"
|
H A D | egd.rc | 27 WHAT='EGD (entropy gathering daemon)' 54 echo "Starting $WHAT" 58 echo "Stopping $WHAT" 72 echo $WHAT started 83 echo "$WHAT stopped" 86 echo "Unable to stop $WHAT"
|
/freebsd/share/man/man9/ |
H A D | module.9 | 54 .Fa what 59 .Fa what 66 .Fa what 83 .Fa what 90 .Fa what . 97 static int foo_handler(module_t mod, int /*modeventtype_t*/ what,
|
/freebsd/sys/sys/ |
H A D | rangelock.h | 70 void _rangelock_cookie_assert(void *cookie, int what, const char *file, 75 #define rangelock_cookie_assert_(cookie, what, file, line) \ argument 76 _rangelock_cookie_assert((cookie), (what), (file), (line)) 78 #define rangelock_cookie_assert_(cookie, what, file, line) (void)0 argument 81 #define rangelock_cookie_assert(cookie, what) \ argument 82 rangelock_cookie_assert_((cookie), (what), __FILE__, __LINE__)
|
/freebsd/usr.bin/stat/ |
H A D | stat.c | 420 int flags, size, prec, ofmt, hilo, what; in output() local 558 fmtcase(what, SHOW_realpath); in output() 559 fmtcase(what, SHOW_st_dev); in output() 560 fmtcase(what, SHOW_st_ino); in output() 561 fmtcase(what, SHOW_st_mode); in output() 562 fmtcase(what, SHOW_st_nlink); in output() 563 fmtcase(what, SHOW_st_uid); in output() 564 fmtcase(what, SHOW_st_gid); in output() 565 fmtcase(what, SHOW_st_rdev); in output() 566 fmtcase(what, SHOW_st_atime); in output() [all …]
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_for_dummies.md | 3 ## What Is gMock? 8 be used and what it should do (which methods will be called? in which order? how 9 many times? with what arguments? what will they return? etc). 28 cool) for creating mock classes and using them. It does to C++ what 96 tests like this are expensive to run and fragile (What if you just upgraded to a 130 check what drawing primitives your program is calling, with what arguments, and 216 With what arguments? What should it do? etc.). 346 ### Matchers: What Arguments Do We Expect? 348 When a mock function takes arguments, we may specify what arguments we are 358 intent of tests. Therefore we encourage you to specify only what's necessary—no [all …]
|
H A D | gmock_faq.md | 3 ### When I call a method on my mock object, the method for the real object is invoked instead. What… 14 many arguments are passed to the variadic method, and what the arguments' types 82 ### I can't figure out why gMock thinks my expectations are not satisfied. What should I do? 137 ### I get a heapcheck failure when using a mock object, but using a real object is fine. What can b… 325 well, a pain to use. So, what's wrong in the latter case? 331 Mocks are great for what some call "interaction-based" testing: instead of 348 What it means is that you have a mock function, you haven't set any expectations 353 What if you actually meant to disallow this function to be called, but forgot to 358 uninteresting calls, you should investigate what's going on. To make your life 370 `MakePolymorphicAction()` is easiest. Sometimes you want precise control on what [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/support/runtime/ |
H A D | exception_fallback.ipp | 63 const char* exception::what() const noexcept { return "std::exception"; } 67 const char* bad_exception::what() const noexcept { return "std::bad_exception"; } 73 const char* bad_alloc::what() const noexcept { return "std::bad_alloc"; } 79 const char* bad_array_new_length::what() const noexcept { return "bad_array_new_length"; } 87 const char* bad_cast::what() const noexcept { return "std::bad_cast"; } 91 const char* bad_typeid::what() const noexcept { return "std::bad_typeid"; }
|