Home
last modified time | relevance | path

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

12345678910>>...30

/netbsd/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dowl-s500.dtsi133 compatible = "actions,s500-uart", "actions,owl-uart";
141 compatible = "actions,s500-uart", "actions,owl-uart";
149 compatible = "actions,s500-uart", "actions,owl-uart";
157 compatible = "actions,s500-uart", "actions,owl-uart";
165 compatible = "actions,s500-uart", "actions,owl-uart";
173 compatible = "actions,s500-uart", "actions,owl-uart";
181 compatible = "actions,s500-uart", "actions,owl-uart";
296 compatible = "actions,s500-mmc", "actions,owl-mmc";
307 compatible = "actions,s500-mmc", "actions,owl-mmc";
318 compatible = "actions,s500-mmc", "actions,owl-mmc";
[all …]
/netbsd/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/actions/
H A Ds900.dtsi12 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";
179 compatible = "actions,s900-sps";
185 compatible = "actions,s900-cmu";
[all …]
H A Ds700.dtsi12 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";
173 compatible = "actions,s700-cmu";
181 compatible = "actions,s700-i2c";
[all …]
/netbsd/external/bsd/byacc/dist/
H A Dmkpar.c71 action *actions; in parse_actions() local
74 actions = add_reductions(stateno, actions); in parse_actions()
75 return (actions); in parse_actions()
85 actions = 0; in get_shifts()
100 temp->next = actions; in get_shifts()
106 actions = temp; in get_shifts()
110 return (actions); in get_shifts()
130 actions = add_reduce(actions, ruleno, j); in add_reductions()
133 return (actions); in add_reductions()
171 actions = temp; in add_reduce()
[all …]
/netbsd/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Dparams.py60 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, [
152 actions=lambda enabled: [] if not enabled else [
158 actions=lambda enabled: [] if enabled else [
[all …]
H A Dnewconfig.py20 actions = param.getActions(config, lit_config.params)
21 for action in actions:
29 actions = feature.getActions(config)
30 for action in actions:
H A Dfeatures.py24 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/external/bsd/libarchive/dist/libarchive/
H A Dfilter_fork_posix.c81 posix_spawn_file_actions_t actions; in __archive_create_child() local
111 r = posix_spawn_file_actions_init(&actions); in __archive_create_child()
116 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[1]); in __archive_create_child()
119 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[0]); in __archive_create_child()
123 r = posix_spawn_file_actions_adddup2(&actions, stdin_pipe[0], 0); in __archive_create_child()
127 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[0]); in __archive_create_child()
132 r = posix_spawn_file_actions_adddup2(&actions, stdout_pipe[1], 1); in __archive_create_child()
136 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[1]); in __archive_create_child()
140 r = posix_spawnp(&child, cmdline->path, &actions, NULL, in __archive_create_child()
144 posix_spawn_file_actions_destroy(&actions); in __archive_create_child()
[all …]
/netbsd/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dpipe.c247 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()
303 && (err = posix_spawn_file_actions_addopen (&actions, in create_pipe()
310 && (err = posix_spawn_file_actions_addopen (&actions, in create_pipe()
317 && (err = posix_spawn_file_actions_addopen (&actions, in create_pipe()
331 || (err = posix_spawnp (&child, prog_path, &actions, in create_pipe()
337 posix_spawn_file_actions_destroy (&actions); in create_pipe()
[all …]
H A Dexecute.c197 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 Dfatal-signal.c127 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/external/bsd/nvi/dist/motif_l/
H A Dm_menu.c408 pull_down *actions; member
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' ) {
481 if ( actions->action == NULL )
486 (XtCallbackProc) actions->action,
487 actions
489 if ( actions->accel != NULL ) {
492 XmNaccelerator, actions->accel,
[all …]
/netbsd/external/ibm-public/postfix/dist/src/util/
H A 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/external/gpl3/gcc.old/dist/libobjc/
H A 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/external/gpl3/gcc/dist/libobjc/
H A 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/external/bsd/libfido2/dist/
H A DREADME.adoc3 …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…
83 `.actions/` (Linux, macOS) and `windows/` directories.
/netbsd/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/
H A Ddeh.d678 if (actions & _UA_SEARCH_PHASE)
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;
859 actions |= state & _US_FORCE_UNWIND;
867 return __gdc_personality(actions, unwindHeader.exception_class,
889 private _Unwind_Reason_Code __gdc_personality(_Unwind_Action actions,
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/libdruntime/gcc/
H A Ddeh.d666 if (actions & _UA_SEARCH_PHASE) in scanLSDA()
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()
883 actions |= state & _US_FORCE_UNWIND; in pragma()
891 return __gdc_personality(actions, unwindHeader.exception_class, in pragma()
913 private _Unwind_Reason_Code __gdc_personality(_Unwind_Action actions, in __gdc_personality() argument
[all …]
/netbsd/tests/rump/rumpkern/h_server/
H A 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/external/mit/libuv/dist/src/unix/
H A Dprocess.c512 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()
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()
756 posix_spawn_file_actions_t actions; in uv__spawn_and_init_child_posix_spawn() local
763 err = uv__spawn_set_posix_spawn_file_actions(&actions, in uv__spawn_and_init_child_posix_spawn()
[all …]
/netbsd/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_exceptions.cpp22 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/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A 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()
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()
649 if (actions & _UA_SEARCH_PHASE) in PERSONALITY_FUNCTION()
[all …]
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A 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()
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()
649 if (actions & _UA_SEARCH_PHASE) in PERSONALITY_FUNCTION()
[all …]
/netbsd/external/bsd/libc++/dist/libcxxrt/src/
H A Dunwind-arm.h203 int actions;\
209 actions = _UA_SEARCH_PHASE;\
214 actions = _UA_CLEANUP_PHASE;\
217 actions |= _UA_HANDLER_FRAME;\
H A Dunwind-itanium.h153 _Unwind_Action actions,\
159 _Unwind_Action actions,\
165 #define CALL_PERSONALITY_FUNCTION(name) name(version, actions, exceptionClass, exceptionObject, con…

12345678910>>...30