| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | owl-s500.dtsi | 8 #include <dt-bindings/clock/actions,s500-cmu.h> 12 #include <dt-bindings/reset/actions,s500-reset.h> 15 compatible = "actions,s500"; 34 enable-method = "actions,s500-smp"; 41 enable-method = "actions,s500-smp"; 48 enable-method = "actions,s500-smp"; 56 enable-method = "actions,s500-smp"; 133 compatible = "actions,s500-uart", "actions,owl-uart"; 141 compatible = "actions,s500-uart", "actions,owl-uart"; 149 compatible = "actions,s500-uart", "actions,owl-uart"; [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/actions/ |
| H A D | s900.dtsi | 6 #include <dt-bindings/clock/actions,s900-cmu.h> 9 #include <dt-bindings/reset/actions,s900-reset.h> 12 compatible = "actions,s900"; 123 compatible = "actions,s900-uart", "actions,owl-uart"; 131 compatible = "actions,s900-uart", "actions,owl-uart"; 139 compatible = "actions,s900-uart", "actions,owl-uart"; 147 compatible = "actions,s900-uart", "actions,owl-uart"; 155 compatible = "actions,s900-uart", "actions,owl-uart"; 163 compatible = "actions,s900-uart", "actions,owl-uart"; 171 compatible = "actions,s900-uart", "actions,owl-uart"; [all …]
|
| H A D | s700.dtsi | 6 #include <dt-bindings/clock/actions,s700-cmu.h> 9 #include <dt-bindings/reset/actions,s700-reset.h> 12 compatible = "actions,s700"; 117 compatible = "actions,s900-uart", "actions,owl-uart"; 125 compatible = "actions,s900-uart", "actions,owl-uart"; 133 compatible = "actions,s900-uart", "actions,owl-uart"; 141 compatible = "actions,s900-uart", "actions,owl-uart"; 149 compatible = "actions,s900-uart", "actions,owl-uart"; 157 compatible = "actions,s900-uart", "actions,owl-uart"; 165 compatible = "actions,s900-uart", "actions,owl-uart"; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/ |
| H A D | params.py | 60 actions=lambda triple: filter(None, [ 75 actions=lambda std: [ 82 actions=lambda exceptions: [] if exceptions else [ 89 actions=lambda rtti: [] if rtti else [ 96 actions=lambda stdlib: [ 102 actions=lambda warnings: [] if not warnings else [ 108 actions=lambda debugLevel: [] if debugLevel == '' else [ 115 actions=lambda sanitizer: filter(None, [ 140 actions=lambda experimental: [] if not experimental else [ 152 actions=lambda enabled: [] if not enabled else [ [all …]
|
| H A D | newconfig.py | 20 actions = param.getActions(config, lit_config.params) 21 for action in actions: 29 actions = feature.getActions(config) 30 for action in actions:
|
| H A D | features.py | 24 actions=[AddCompileFlag('-fcoroutines-ts')]), 28 actions=[AddCompileFlag('-Werror=thread-safety')]), 32 actions=[AddCompileFlag('-Wuser-defined-warnings')]), 53 actions=lambda cfg: [AddCompileFlag('-fmodules-cache-path=%t/ModuleCache')]), 125 actions=lambda cfg, m=macro: [ 167 actions=[AddSubstitution('%{gdb}', lambda cfg: shutil.which('gdb'))]
|
| /netbsd-src/external/bsd/libarchive/dist/libarchive/ |
| H A 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/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| H A D | pipe.c | 247 posix_spawn_file_actions_t actions; in create_pipe() 280 if ((err = posix_spawn_file_actions_init (&actions)) != 0 in create_pipe() 283 && (err = posix_spawn_file_actions_adddup2 (&actions, in create_pipe() 287 && (err = posix_spawn_file_actions_adddup2 (&actions, in create_pipe() 291 && (err = posix_spawn_file_actions_addclose (&actions, ofd[0])) in create_pipe() 294 && (err = posix_spawn_file_actions_addclose (&actions, ifd[1])) in create_pipe() 297 && (err = posix_spawn_file_actions_addclose (&actions, ofd[1])) in create_pipe() 300 && (err = posix_spawn_file_actions_addclose (&actions, ifd[0])) in create_pipe() 303 && (err = posix_spawn_file_actions_addopen (&actions, in create_pipe() 310 && (err = posix_spawn_file_actions_addopen (&actions, in create_pipe() [all …]
|
| H A D | execute.c | 197 posix_spawn_file_actions_t actions; in execute() 215 if ((err = posix_spawn_file_actions_init (&actions)) != 0 in execute() 218 && (err = posix_spawn_file_actions_addopen (&actions, in execute() 224 && (err = posix_spawn_file_actions_addopen (&actions, in execute() 230 && (err = posix_spawn_file_actions_addopen (&actions, in execute() 244 || (err = posix_spawnp (&child, prog_path, &actions, in execute() 250 posix_spawn_file_actions_destroy (&actions); in execute() 260 posix_spawn_file_actions_destroy (&actions); in execute()
|
| H A D | fatal-signal.c | 127 static actions_entry_t * volatile actions = static_actions; variable 157 action = actions[n].action; in fatal_signal_handler() 205 actions_entry_t *old_actions = actions; in at_fatal_signal() 217 actions = new_actions; in at_fatal_signal() 227 actions[actions_count].action = action; in at_fatal_signal()
|
| /netbsd-src/external/bsd/nvi/dist/motif_l/ |
| H A 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/ |
| H A 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.old/dist/libobjc/ |
| H A 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/external/gpl3/gcc/dist/libobjc/ |
| H A 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/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/ |
| H A D | deh.d | 537 _Unwind_Action actions, _Unwind_Exception* unwindHeader, 668 handler = actionTableLookup(actions, unwindHeader, actionRecord, 678 if (actions & _UA_SEARCH_PHASE) 696 int actionTableLookup(_Unwind_Action actions, _Unwind_Exception* unwindHeader, 720 else if (actions & _UA_FORCE_UNWIND) 749 if (actions & _UA_SEARCH_PHASE) 833 _Unwind_Action actions; 843 actions = _UA_SEARCH_PHASE; 847 actions = _UA_CLEANUP_PHASE; 850 actions |= _UA_HANDLER_FRAME; [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/gcc/ |
| H A D | deh.d | 525 _Unwind_Action actions, _Unwind_Exception* unwindHeader, in scanLSDA() argument 656 handler = actionTableLookup(actions, unwindHeader, actionRecord, in scanLSDA() 666 if (actions & _UA_SEARCH_PHASE) in scanLSDA() 684 int actionTableLookup(_Unwind_Action actions, _Unwind_Exception* unwindHeader, in actionTableLookup() argument 709 else if (actions & _UA_FORCE_UNWIND) in actionTableLookup() 738 if (actions & _UA_SEARCH_PHASE) in actionTableLookup() 857 _Unwind_Action actions; in pragma() local 867 actions = _UA_SEARCH_PHASE; in pragma() 871 actions = _UA_CLEANUP_PHASE; in pragma() 874 actions |= _UA_HANDLER_FRAME; in pragma() [all …]
|
| /netbsd-src/tests/rump/rumpkern/h_server/ |
| H A 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/mit/libuv/dist/src/unix/ |
| H A D | process.c | 512 posix_spawn_file_actions_t* actions, in uv__spawn_set_posix_spawn_file_actions() argument 522 err = posix_spawn_file_actions_init(actions); in uv__spawn_set_posix_spawn_file_actions() 535 err = posix_spawn_fncs->file_actions.addchdir_np(actions, options->cwd); in uv__spawn_set_posix_spawn_file_actions() 561 actions, in uv__spawn_set_posix_spawn_file_actions() 579 actions, in uv__spawn_set_posix_spawn_file_actions() 592 err = posix_spawn_file_actions_addinherit_np(actions, fd); in uv__spawn_set_posix_spawn_file_actions() 594 err = posix_spawn_file_actions_adddup2(actions, use_fd, fd); in uv__spawn_set_posix_spawn_file_actions() 618 err = posix_spawn_file_actions_addclose(actions, use_fd); in uv__spawn_set_posix_spawn_file_actions() 627 (void) posix_spawn_file_actions_destroy(actions); in uv__spawn_set_posix_spawn_file_actions() 650 posix_spawn_file_actions_t* actions, in uv__spawn_resolve_and_spawn() argument [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| H A D | hwasan_exceptions.cpp | 22 typedef _Unwind_Reason_Code PersonalityFn(int version, _Unwind_Action actions, 36 __hwasan_personality_wrapper(int version, _Unwind_Action actions, in __hwasan_personality_wrapper() argument 44 rc = real_personality(version, actions, exception_class, unwind_exception, in __hwasan_personality_wrapper() 54 if ((actions & _UA_CLEANUP_PHASE) && rc == _URC_CONTINUE_UNWIND) { in __hwasan_personality_wrapper()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| H A 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/gcc/dist/libstdc++-v3/libsupc++/ |
| H A 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/bsd/libfido2/dist/ |
| H A D | README.adoc | 3 …ws/linux/badge.svg["Linux Build Status (github actions)", link="https://github.com/Yubico/libfido2… 4 …ws/macos/badge.svg["macOS Build Status (github actions)", link="https://github.com/Yubico/libfido2… 5 …indows/badge.svg["Windows Build Status (github actions)", link="https://github.com/Yubico/libfido2… 6 …orkflows/fuzzer/badge.svg["Fuzz Status (github actions)", link="https://github.com/Yubico/libfido2… 104 OS-specific build instructions, please refer to the `.actions/`
|
| /netbsd-src/external/gpl3/binutils/dist/libiberty/ |
| H A 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/ |
| H A D | unwind-arm.h | 203 int actions;\ 209 actions = _UA_SEARCH_PHASE;\ 214 actions = _UA_CLEANUP_PHASE;\ 217 actions |= _UA_HANDLER_FRAME;\
|
| H A D | unwind-itanium.h | 153 _Unwind_Action actions,\ 159 _Unwind_Action actions,\ 165 #define CALL_PERSONALITY_FUNCTION(name) name(version, actions, exceptionClass, exceptionObject, con…
|