| /netbsd/src/external/bsd/byacc/dist/ |
| D | mkpar.c | 21 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/ |
| D | filter_fork_posix.c | 80 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/ |
| D | m_menu.c | 408 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/ |
| D | posix_signals.c | 86 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/ |
| D | exception.c | 236 _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/ |
| D | h_simpleserver.c | 21 } 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++/ |
| D | eh_personality.cc | 360 _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/ |
| D | pex-unix.c | 578 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/ |
| D | pex-unix.c | 578 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/ |
| D | unwind-arm.h | 203 int actions;\ 209 actions = _UA_SEARCH_PHASE;\ 214 actions = _UA_CLEANUP_PHASE;\ 217 actions |= _UA_HANDLER_FRAME;\
|
| D | unwind-itanium.h | 153 _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/ |
| D | postscreen.c | 1011 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/ |
| D | testdata_v1.sql | 45 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);
|
| D | testdata_v2.sql | 45 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);
|
| D | schema_v1.sql | 103 CREATE TABLE actions ( table 138 action_id INTEGER REFERENCES actions,
|
| D | schema_v2.sql | 105 CREATE TABLE actions ( table 172 action_id INTEGER REFERENCES actions,
|
| /netbsd/src/external/ibm-public/postfix/dist/src/global/ |
| D | scache.c | 325 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/ |
| D | README.md | 6 [![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/ |
| D | unwind-c.c | 123 _Unwind_Action actions, 149 if ((actions & _UA_CLEANUP_PHASE) == 0)
|
| /netbsd/src/external/bsd/openldap/dist/doc/rfc/ |
| D | rfc3703.txt | 194 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/ |
| D | dbe.h | 573 const xcb_dbe_swap_info_t *actions); 589 const xcb_dbe_swap_info_t *actions);
|
| D | dbe.c | 383 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/ |
| D | RELEASE_NOTES-2.10 | 35 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/ |
| D | Makefile | 6 SRCS= actions.c math.c xcalc.c
|
| /netbsd/src/external/ibm-public/postfix/dist/conf/ |
| D | access | 172 # 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,
|