Home
last modified time | relevance | path

Searched refs:actions (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/netbsd/src/external/bsd/byacc/dist/
Dmkpar.c21 static action *add_reduce(action *actions, int ruleno, int symbol);
22 static action *add_reductions(int stateno, action *actions);
71 action *actions; in parse_actions() local
73 actions = get_shifts(stateno); in parse_actions()
74 actions = add_reductions(stateno, actions); in parse_actions()
75 return (actions); in parse_actions()
81 action *actions, *temp; in get_shifts() local
85 actions = 0; in get_shifts()
100 temp->next = actions; in get_shifts()
106 actions = temp; in get_shifts()
[all …]
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Dfilter_fork_posix.c80 posix_spawn_file_actions_t actions; in __archive_create_child() local
110 r = posix_spawn_file_actions_init(&actions); in __archive_create_child()
115 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[1]); in __archive_create_child()
118 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[0]); in __archive_create_child()
122 r = posix_spawn_file_actions_adddup2(&actions, stdin_pipe[0], 0); in __archive_create_child()
126 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[0]); in __archive_create_child()
131 r = posix_spawn_file_actions_adddup2(&actions, stdout_pipe[1], 1); in __archive_create_child()
135 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[1]); in __archive_create_child()
139 r = posix_spawnp(&child, cmdline->path, &actions, NULL, in __archive_create_child()
143 posix_spawn_file_actions_destroy(&actions); in __archive_create_child()
[all …]
/netbsd/src/external/bsd/nvi/dist/motif_l/
Dm_menu.c408 pull_down *actions; member
466 static void add_entries( Widget parent, pull_down *actions ) in add_entries() argument
468 static void add_entries( parent, actions ) in add_entries()
470 pull_down *actions;
476 for ( ; actions->title != NULL; actions++ ) {
479 if ( *actions->title != '\0' ) {
480 w = XmCreatePushButton( parent, actions->title, NULL, 0 );
481 if ( actions->action == NULL )
486 (XtCallbackProc) actions->action,
487 actions
[all …]
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dposix_signals.c86 static struct sigaction actions[NSIG] = {}; variable
93 actions[signum].sa_handler(signum); in sighandle()
104 actions[i].sa_handler = SIG_DFL; in sigaction()
112 *oact = actions[sig]; in sigaction()
124 actions[sig] = *act; in sigaction()
/netbsd/src/external/gpl3/gcc/dist/libobjc/
Dexception.c236 _Unwind_Action actions, in PERSONALITY_FUNCTION()
255 _Unwind_Action actions; in PERSONALITY_FUNCTION() local
260 actions = _UA_SEARCH_PHASE; in PERSONALITY_FUNCTION()
264 actions = _UA_CLEANUP_PHASE; in PERSONALITY_FUNCTION()
267 actions |= _UA_HANDLER_FRAME; in PERSONALITY_FUNCTION()
277 actions |= state & _US_FORCE_UNWIND; in PERSONALITY_FUNCTION()
299 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME) in PERSONALITY_FUNCTION()
427 else if ((actions & _UA_FORCE_UNWIND) || foreign_exception) in PERSONALITY_FUNCTION()
458 if (actions & _UA_SEARCH_PHASE) in PERSONALITY_FUNCTION()
483 if (!(actions & _UA_SEARCH_PHASE)) in PERSONALITY_FUNCTION()
/netbsd/src/tests/rump/rumpkern/h_server/
Dh_simpleserver.c21 } actions[] = { variable
45 for (i = 0; i < __arraycount(actions); i++) { in main()
46 if (strcmp(actions[i].str, argv[2]) == 0) { in main()
48 actions[i].dofun(arg); in main()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
Deh_personality.cc360 _Unwind_Action actions, in PERSONALITY_FUNCTION()
385 _Unwind_Action actions; in PERSONALITY_FUNCTION() local
396 actions = _UA_SEARCH_PHASE; in PERSONALITY_FUNCTION()
400 actions = _UA_CLEANUP_PHASE; in PERSONALITY_FUNCTION()
404 actions |= _UA_HANDLER_FRAME; in PERSONALITY_FUNCTION()
414 actions |= state & _US_FORCE_UNWIND; in PERSONALITY_FUNCTION()
437 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME) in PERSONALITY_FUNCTION()
556 if (actions & _UA_FORCE_UNWIND) in PERSONALITY_FUNCTION()
565 if (actions & _UA_FORCE_UNWIND) in PERSONALITY_FUNCTION()
620 && !(actions & _UA_FORCE_UNWIND) in PERSONALITY_FUNCTION()
[all …]
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dpex-unix.c578 posix_spawn_file_actions_t actions; in pex_unix_exec_child() local
603 ret = posix_spawn_file_actions_init (&actions); in pex_unix_exec_child()
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO); in pex_unix_exec_child()
622 ret = posix_spawn_file_actions_addclose (&actions, in); in pex_unix_exec_child()
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO); in pex_unix_exec_child()
641 ret = posix_spawn_file_actions_addclose (&actions, out); in pex_unix_exec_child()
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO); in pex_unix_exec_child()
660 ret = posix_spawn_file_actions_addclose (&actions, errdes); in pex_unix_exec_child()
671 ret = posix_spawn_file_actions_addclose (&actions, toclose); in pex_unix_exec_child()
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO); in pex_unix_exec_child()
[all …]
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dpex-unix.c578 posix_spawn_file_actions_t actions; in pex_unix_exec_child() local
603 ret = posix_spawn_file_actions_init (&actions); in pex_unix_exec_child()
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO); in pex_unix_exec_child()
622 ret = posix_spawn_file_actions_addclose (&actions, in); in pex_unix_exec_child()
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO); in pex_unix_exec_child()
641 ret = posix_spawn_file_actions_addclose (&actions, out); in pex_unix_exec_child()
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO); in pex_unix_exec_child()
660 ret = posix_spawn_file_actions_addclose (&actions, errdes); in pex_unix_exec_child()
671 ret = posix_spawn_file_actions_addclose (&actions, toclose); in pex_unix_exec_child()
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO); in pex_unix_exec_child()
[all …]
/netbsd/src/external/bsd/libc++/dist/libcxxrt/src/
Dunwind-arm.h203 int actions;\
209 actions = _UA_SEARCH_PHASE;\
214 actions = _UA_CLEANUP_PHASE;\
217 actions |= _UA_HANDLER_FRAME;\
Dunwind-itanium.h153 _Unwind_Action actions,\
159 _Unwind_Action actions,\
165 #define CALL_PERSONALITY_FUNCTION(name) name(version, actions, exceptionClass, exceptionObject, con…
/netbsd/src/external/ibm-public/postfix/dist/src/postscreen/
Dpostscreen.c1011 const NAME_CODE actions[] = { in post_jail_init() local
1056 if ((psc_dnlist_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
1060 if ((psc_dnsbl_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
1064 if ((psc_pregr_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
1068 if ((psc_pipel_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
1072 if ((psc_nsmtp_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
1076 if ((psc_barlf_action = name_code(actions, NAME_CODE_FLAG_NONE, in post_jail_init()
/netbsd/src/external/bsd/kyua-cli/dist/store/
Dtestdata_v1.sql45 INSERT INTO actions (action_id, context_id) VALUES (1, 1);
64 INSERT INTO actions (action_id, context_id) VALUES (2, 2);
166 INSERT INTO actions (action_id, context_id) VALUES (3, 3);
276 INSERT INTO actions (action_id, context_id) VALUES (4, 4);
Dtestdata_v2.sql45 INSERT INTO actions (action_id, context_id) VALUES (1, 1);
64 INSERT INTO actions (action_id, context_id) VALUES (2, 2);
221 INSERT INTO actions (action_id, context_id) VALUES (3, 3);
366 INSERT INTO actions (action_id, context_id) VALUES (4, 4);
Dschema_v1.sql103 CREATE TABLE actions ( table
138 action_id INTEGER REFERENCES actions,
Dschema_v2.sql105 CREATE TABLE actions ( table
172 action_id INTEGER REFERENCES actions,
/netbsd/src/external/ibm-public/postfix/dist/src/global/
Dscache.c325 static struct action actions[] = { variable
344 for (ap = actions; ap->command != 0; ap++) in help()
387 for (ap = actions; ap->command != 0; ap++) { in main()
/netbsd/src/crypto/external/bsd/openssl/dist/
DREADME.md6 [![github actions ci badge]][github actions ci]
198 [github actions ci badge]:
202 [github actions ci]:
203 <https://github.com/openssl/openssl/actions?query=workflow%3A%22GitHub+CI%22>
/netbsd/src/external/gpl3/gcc/dist/libgcc/
Dunwind-c.c123 _Unwind_Action actions,
149 if ((actions & _UA_CLEANUP_PHASE) == 0)
/netbsd/src/external/bsd/openldap/dist/doc/rfc/
Drfc3703.txt194 rule-specific and reusable policy conditions and policy actions
444 policy conditions and policy actions in an LDAP directory. This
579 policy actions: those associated with a single policy rule, and
589 implementing rule-specific vs. reusable policy conditions and actions
596 It is just the opposite for reusable conditions and actions.
604 hand, access permissions of reusable conditions and actions must
606 3. Rule-specific conditions and actions require fewer accesses,
607 because the conditions and actions are "attached" to the rule.
608 In contrast, reusable conditions and actions require more
611 4. Rule-specific conditions and actions are designed for use by a
[all …]
/netbsd/src/external/mit/xorg/lib/libxcb/files/
Ddbe.h573 const xcb_dbe_swap_info_t *actions);
589 const xcb_dbe_swap_info_t *actions);
Ddbe.c383 const xcb_dbe_swap_info_t *actions) in xcb_dbe_swap_buffers_checked() argument
403 xcb_parts[4].iov_base = (char *) actions; in xcb_dbe_swap_buffers_checked()
415 const xcb_dbe_swap_info_t *actions) in xcb_dbe_swap_buffers() argument
435 xcb_parts[4].iov_base = (char *) actions; in xcb_dbe_swap_buffers()
/netbsd/src/external/ibm-public/postfix/dist/
DRELEASE_NOTES-2.1035 logs "reject" actions but not "permit" actions). Specify
37 actions, or specify a list of explicit action names. More details
128 To fix this safety net, take one of the following actions:
/netbsd/src/external/mit/xorg/bin/xcalc/
DMakefile6 SRCS= actions.c math.c xcalc.c
/netbsd/src/external/ibm-public/postfix/dist/conf/
Daccess172 # For other accept actions, see "OTHER ACTIONS" below.
179 # reject actions, and "4.7.1" in the case of defer actions.
244 # For other reject actions, see "OTHER ACTIONS" below.
255 # If multiple BCC actions are specified within the
298 # actions fire, only the last one is executed.
349 # recipient(s). When multiple REDIRECT actions fire,

12345678910>>...12