Searched refs:ACTION (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/lib/libc/stdlib/
H A Dhcreate.c62 hsearch(ENTRY item, ACTION action)
H A Dhsearch_r.c76 hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch_data *htab)
/freebsd-13-stable/include/
H A Dsearch.h27 } ACTION; typedef in typeref:enum:__anon7379
60 ENTRY *hsearch(ENTRY, ACTION);
80 int hsearch_r(ENTRY, ACTION, ENTRY **, struct hsearch_data *);
/freebsd-13-stable/sbin/devd/
H A Dparse.y51 %token OPTIONS SET DIRECTORY PID_FILE DEVICE_NAME ACTION MATCH
151 : ACTION STRING SEMICOLON { $$ = new_action($2); }
/freebsd-13-stable/contrib/flex/src/
H A Dscan.l128 %x FIRSTCCL CCL ACTION RECOVER COMMENT ACTION_STRING PERCENT_BRACE_ACTION
267 <ACTION,CODEBLOCK,ACTION_STRING,PERCENT_BRACE_ACTION,CHARACTER_CONSTANT,COMMENT,CODE_COMMENT>{
577 BEGIN(ACTION);
594 BEGIN(ACTION);
613 BEGIN(ACTION);
614 unput( '\n' ); /* so <ACTION> sees it */
906 <ACTION>"/*" ACTION_ECHO; yy_push_state( CODE_COMMENT );
908 <CODEBLOCK,ACTION>{
935 <ACTION>{
959 \" ACTION_ECHO; BEGIN(ACTION);
[all...]
/freebsd-13-stable/usr.sbin/acpi/acpidump/
H A Dacpidump.h99 ACTION, enumerator in enum:TCPAevent_types
H A Dacpi.c1101 case ACTION:
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc590 // The ACTION*() macros trigger warning C4100 (unreferenced formal
600 // Tests the ACTION*() macro family.
602 // Tests that ACTION() can define an action that doesn't reference the
604 ACTION(Return5) { return 5; } function in namespace:testing::gmock_generated_actions_test
614 // Tests that ACTION() can define an action that returns void.
615 ACTION(IncrementArg1) { (*arg1)++; } function in namespace:testing::gmock_generated_actions_test
624 // Tests that the body of ACTION() can reference the type of the
626 ACTION(IncrementArg2) { function in namespace:testing::gmock_generated_actions_test
639 // Tests that the body of ACTION() can reference the argument tuple
641 ACTION(Sum function in namespace:testing::gmock_generated_actions_test
657 ACTION(InvokeDummy) { function in namespace:testing::gmock_generated_actions_test
671 ACTION(InvokeDummy2) { function in namespace:testing::gmock_generated_actions_test
684 ACTION(ReturnAddrOfConstBoolReferenceArg) { function in namespace:testing::gmock_generated_actions_test
696 ACTION(ReturnAddrOfIntReferenceArg) { function in namespace:testing::gmock_generated_actions_test
709 ACTION(Sum) { return arg0 + arg1; } function in namespace:testing::gmock_generated_actions_test::action_test
719 ACTION(PlusTwo) { return arg0 + 2; } function in namespace:testing::gmock_generated_actions_test
763 ACTION(OverloadedAction) { return arg0 ? arg1 : "hello"; } function in namespace:testing::gmock_generated_actions_test
937 ACTION(DoFoo) {} function in namespace:testing::gmock_generated_actions_test
1189 ACTION(ReturnSum) { return 0; } function in namespace:testing::gmock_generated_actions_test
[all...]
H A Dgmock_link_test.h61 // ACTION()-generated
421 // The ACTION*() macros trigger warning C4100 (unreferenced formal
431 // Tests the linkage of actions created using ACTION macro.
433 ACTION(Return1) { return 1; } function in namespace:__anon803
/freebsd-13-stable/lib/libipsec/
H A Dpolicy_parse.y107 %token DIR ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY
111 %type <num> DIR ACTION PROTOCOL MODE LEVEL
116 : DIR ACTION
/freebsd-13-stable/contrib/bearssl/mk/
H A DDefaults.mk19 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
H A DNMake.mk19 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
H A DSingleUnix.mk19 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
/freebsd-13-stable/lib/libc/db/hash/
H A Dhash.h41 } ACTION; typedef in typeref:enum:__anon7413
H A Dhash.c63 static int hash_access(HTAB *, ACTION, DBT *, DBT *);
575 hash_access(HTAB *hashp, ACTION action, DBT *key, DBT *val)
/freebsd-13-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dar-lib105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
/freebsd-13-stable/usr.bin/lex/
H A Dinitscan.c1984 #define ACTION 12 macro
3268 BEGIN(ACTION); variable
3291 BEGIN(ACTION); variable
3314 BEGIN(ACTION); variable
3315 unput( '\n' ); /* so <ACTION> sees it */
3993 ACTION_ECHO; BEGIN(ACTION); variable
4005 ACTION_ECHO; BEGIN(ACTION); variable
4025 ++linenum; ACTION_ECHO; if (bracelevel <= 0) { BEGIN(SECT2); } else { BEGIN(ACTION); } variable
4036 case YY_STATE_EOF(ACTION):
/freebsd-13-stable/sys/dev/hwpmc/
H A Dhwpmc_logging.c124 #define _PMCLOG_RESERVE_SAFE(PO,TYPE,LEN,ACTION, TSC) do { \
129 ACTION; \
137 #define _PMCLOG_RESERVE(PO,TYPE,LEN,ACTION) do { \
146 ACTION; \
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua20 --* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
H A Dtst.lib_coroutine.lua20 --* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
H A Dtst.lib_strings.lua20 --* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
H A Dtst.lib_base.lua20 --* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
/freebsd-13-stable/contrib/ncurses/
H A Ddist.mk20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-actions.h570 // A macro from the ACTION* family (defined later in this file)
586 // A helper class needed for implementing the ACTION* macros.
860 // The ACTION* family of macros can be used in a namespace scope to
863 // ACTION(name) { statements; }
871 // ACTION(IncrementArg1) {
933 // While it's tempting to always use the ACTION* macros when defining
945 // ACTION*() can only be used in a namespace scope. The reason is
948 // Once that's done, we'll consider supporting using ACTION*() inside
953 // To learn more about using these macros, please search for 'ACTION'
956 // An internal macro needed for implementing ACTION*()
1422 #define ACTION macro
[all...]

Completed in 198 milliseconds