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

/freebsd-current/lib/libc/stdlib/
H A Dhcreate.c59 hsearch(ENTRY item, ACTION action)
H A Dhsearch_r.c73 hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch_data *htab)
/freebsd-current/include/
H A Dsearch.h26 } ACTION; typedef in typeref:enum:__anon78
59 ENTRY *hsearch(ENTRY, ACTION);
79 int hsearch_r(ENTRY, ACTION, ENTRY **, struct hsearch_data *);
/freebsd-current/sbin/devd/
H A Dparse.y49 %token OPTIONS SET DIRECTORY PID_FILE DEVICE_NAME ACTION MATCH
149 : ACTION STRING SEMICOLON { $$ = new_action($2); }
/freebsd-current/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-current/usr.sbin/acpi/acpidump/
H A Dacpidump.h100 ACTION, enumerator in enum:TCPAevent_types
H A Dacpi.c1123 case ACTION:
/freebsd-current/lib/libipsec/
H A Dpolicy_parse.y105 %token DIR ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY
109 %type <num> DIR ACTION PROTOCOL MODE LEVEL
114 : DIR ACTION
/freebsd-current/contrib/bearssl/mk/
H A DDefaults.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
H A DNMake.mk19 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
/freebsd-current/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc980 // The ACTION*() macros trigger warning C4100 (unreferenced formal
987 // Tests the ACTION*() macro family.
989 // Tests that ACTION() can define an action that doesn't reference the
991 ACTION(Return5) { return 5; } function in namespace:testing::gmock_more_actions_test
1001 // Tests that ACTION() can define an action that returns void.
1002 ACTION(IncrementArg1) { (*arg1)++; } function in namespace:testing::gmock_more_actions_test
1011 // Tests that the body of ACTION() can reference the type of the
1013 ACTION(IncrementArg2) { function in namespace:testing::gmock_more_actions_test
1026 // Tests that the body of ACTION() can reference the argument tuple
1028 ACTION(Sum function in namespace:testing::gmock_more_actions_test
1048 ACTION(InvokeDummy) { function in namespace:testing::gmock_more_actions_test
1062 ACTION(InvokeDummy2) { function in namespace:testing::gmock_more_actions_test
1075 ACTION(ReturnAddrOfConstBoolReferenceArg) { function in namespace:testing::gmock_more_actions_test
1087 ACTION(ReturnAddrOfIntReferenceArg) { function in namespace:testing::gmock_more_actions_test
1100 ACTION(Sum) { return arg0 + arg1; } function in namespace:testing::gmock_more_actions_test::action_test
1110 ACTION(PlusTwo) { return arg0 + 2; } function in namespace:testing::gmock_more_actions_test
1154 ACTION(OverloadedAction) { return arg0 ? arg1 : "hello"; } function in namespace:testing::gmock_more_actions_test
1329 ACTION(DoFoo) {} function in namespace:testing::gmock_more_actions_test
1514 ACTION(ReturnSum) { return 0; } function in namespace:testing::gmock_more_actions_test
[all...]
H A Dgmock_link_test.h60 // ACTION()-generated
421 // The ACTION*() macros trigger warning C4100 (unreferenced formal
428 // Tests the linkage of actions created using ACTION macro.
430 ACTION(Return1) { return 1; } function in namespace:__anon20
H A Dgmock-actions_test.cc2144 ACTION(ReturnArity) { return std::tuple_size<args_type>::value; } function
/freebsd-current/contrib/ntp/sntp/libevent/build-aux/
H A Dar-lib105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
/freebsd-current/lib/libc/db/hash/
H A Dhash.h38 } ACTION; typedef in typeref:enum:__anon88
H A Dhash.c57 static int hash_access(HTAB *, ACTION, DBT *, DBT *);
569 hash_access(HTAB *hashp, ACTION action, DBT *key, DBT *val)
/freebsd-current/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-current/sys/dev/hwpmc/
H A Dhwpmc_logging.c113 #define _PMCLOG_RESERVE_SAFE(PO,TYPE,LEN,ACTION, TSC) do { \
118 ACTION; \
126 #define _PMCLOG_RESERVE(PO,TYPE,LEN,ACTION) do { \
135 ACTION; \
/freebsd-current/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-current/contrib/ncurses/
H A Ddist.mk20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
/freebsd-current/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h32 // The ACTION* family of macros can be used in a namespace scope to
35 // ACTION(name) { statements; }
43 // ACTION(IncrementArg1) {
105 // While it's tempting to always use the ACTION* macros when defining
117 // ACTION*() can only be used in a namespace scope as templates cannot be
124 // To learn more about using these macros, please search for 'ACTION' on
2070 // A macro from the ACTION* family (defined later in gmock-generated-actions.h)
2087 // a class defined by an ACTION* macro.
2238 #define ACTION(name) \

Completed in 371 milliseconds