HomeSort by: relevance | last modified time | path
    Searched defs:actions (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
params.py 60 actions=lambda triple: filter(None, [ variable
75 actions=lambda std: [ variable
82 actions=lambda exceptions: [] if exceptions else [ variable
89 actions=lambda rtti: [] if rtti else [ variable
96 actions=lambda stdlib: [ variable
102 actions=lambda warnings: [] if not warnings else [ variable
108 actions=lambda debugLevel: [] if debugLevel == '' else [
115 actions=lambda sanitizer: filter(None, [ variable
140 actions=lambda experimental: [] if not experimental else [ variable
152 actions=lambda enabled: [] if not enabled else variable
158 actions=lambda enabled: [] if enabled else [ variable
189 actions=lambda useSystem: [ variable
    [all...]
features.py 24 actions=[AddCompileFlag('-fcoroutines-ts')]), variable
28 actions=[AddCompileFlag('-Werror=thread-safety')]), variable
32 actions=[AddCompileFlag('-Wuser-defined-warnings')]), variable
53 actions=lambda cfg: [AddCompileFlag('-fmodules-cache-path=%t/ModuleCache')]), variable
125 actions=lambda cfg, m=macro: [
167 actions=[AddSubstitution('%{gdb}', lambda cfg: shutil.which('gdb'))] variable
  /src/tests/rump/rumpkern/h_server/
h_simpleserver.c 21 } actions[] = { variable in typeref:struct:__anon7936
45 for (i = 0; i < __arraycount(actions); i++) {
46 if (strcmp(actions[i].str, argv[2]) == 0) {
48 actions[i].dofun(arg);
  /src/external/bsd/libarchive/dist/libarchive/
filter_fork_posix.c 88 posix_spawn_file_actions_t actions; local
123 r = posix_spawn_file_actions_init(&actions);
133 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[1]);
136 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[0]);
140 r = posix_spawn_file_actions_adddup2(&actions, stdin_pipe[0], 0);
144 r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[0]);
149 r = posix_spawn_file_actions_adddup2(&actions, stdout_pipe[1], 1);
153 r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[1]);
157 r = posix_spawnp(&child, cmdline->path, &actions, &attr,
161 posix_spawn_file_actions_destroy(&actions);
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
posix_signals.c 86 static struct sigaction actions[NSIG] = {}; variable in typeref:struct:sigaction
93 actions[signum].sa_handler(signum);
104 actions[i].sa_handler = SIG_DFL;
112 *oact = actions[sig];
124 actions[sig] = *act;
  /src/external/bsd/kyua-cli/dist/store/
schema_v1.sql 93 -- Actions.
97 -- Representation of user-initiated actions.
103 CREATE TABLE actions ( table
124 -- The code that performs the processing of the actions is the component in
126 -- across different actions.
138 action_id INTEGER REFERENCES actions,
schema_v2.sql 95 -- Actions.
99 -- Representation of user-initiated actions.
105 CREATE TABLE actions ( table
126 -- The code that performs the processing of the actions is the component in
128 -- across different actions.
172 action_id INTEGER REFERENCES actions,
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
fatal-signal.c 1 /* Emergency actions in case of a fatal signal.
116 /* Type of an entry in the actions array.
125 /* The registered cleanup actions. */
127 static actions_entry_t * volatile actions = static_actions; variable
157 action = actions[n].action;
202 /* Extend the actions array. Note that we cannot use xrealloc(),
205 actions_entry_t *old_actions = actions;
217 actions = new_actions;
219 /* Now we can free the old actions array. */
226 actions[actions_count]. *
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
scache.c 325 static struct action actions[] = { variable in typeref:struct:action
344 for (ap = actions; ap->command != 0; ap++)
387 for (ap = actions; ap->command != 0; ap++) {
  /src/tests/usr.bin/xlint/lint1/
init.c 64 } actions[1] = { variable in typeref:struct:__anon8026
  /src/external/bsd/byacc/dist/
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; local
73 actions = get_shifts(stateno);
74 actions = add_reductions(stateno, actions);
75 return (actions);
81 action *actions, *temp; local
85 actions = NULL;
100 temp->next = actions;
    [all...]
  /src/external/bsd/nvi/dist/motif_l/
m_menu.c 47 * part, those actions will simply call vi_send with vi commands.
49 * vi commands, and other will have to have special actions.
53 * change VI_STRING to VI_COMMAND so that menu actions cannot
76 * Change VI_STRING to VI_COMMAND so that menu actions cannot be confusing
414 pull_down *actions;
472 static void add_entries( Widget parent, pull_down *actions )
474 static void add_entries( parent, actions )
476 pull_down *actions;
482 for ( ; actions->title != NULL; actions++ )
408 pull_down *actions; member in struct:__anon7600
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
pex-unix.c 578 posix_spawn_file_actions_t actions; local
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO)
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
pex-unix.c 578 posix_spawn_file_actions_t actions; local
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO)
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
pex-unix.c 578 posix_spawn_file_actions_t actions; local
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO)
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/
exception.c 238 _Unwind_Action actions,
257 _Unwind_Action actions;
262 actions = _UA_SEARCH_PHASE;
266 actions = _UA_CLEANUP_PHASE;
269 actions |= _UA_HANDLER_FRAME;
279 actions |= state & _US_FORCE_UNWIND;
301 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
429 else if ((actions & _UA_FORCE_UNWIND) || foreign_exception)
460 if (actions & _UA_SEARCH_PHASE)
485 if (!(actions & _UA_SEARCH_PHASE)
255 _Unwind_Action actions; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
exception.c 238 _Unwind_Action actions,
257 _Unwind_Action actions;
262 actions = _UA_SEARCH_PHASE;
266 actions = _UA_CLEANUP_PHASE;
269 actions |= _UA_HANDLER_FRAME;
279 actions |= state & _US_FORCE_UNWIND;
301 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
429 else if ((actions & _UA_FORCE_UNWIND) || foreign_exception)
460 if (actions & _UA_SEARCH_PHASE)
485 if (!(actions & _UA_SEARCH_PHASE)
255 _Unwind_Action actions; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
pex-unix.c 578 posix_spawn_file_actions_t actions; local
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO)
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
pex-unix.c 578 posix_spawn_file_actions_t actions; local
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 ret = posix_spawn_file_actions_adddup2 (&actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO)
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
eh_personality.cc 361 _Unwind_Action actions,
386 _Unwind_Action actions;
397 actions = _UA_SEARCH_PHASE;
401 actions = _UA_CLEANUP_PHASE;
405 actions |= _UA_HANDLER_FRAME;
415 actions |= state & _US_FORCE_UNWIND;
438 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
557 if (actions & _UA_FORCE_UNWIND)
566 if (actions & _UA_FORCE_UNWIND)
596 else if (actions == _UA_CLEANUP_PHASE
385 _Unwind_Action actions; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
eh_personality.cc 361 _Unwind_Action actions,
386 _Unwind_Action actions;
397 actions = _UA_SEARCH_PHASE;
401 actions = _UA_CLEANUP_PHASE;
405 actions |= _UA_HANDLER_FRAME;
415 actions |= state & _US_FORCE_UNWIND;
438 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME)
557 if (actions & _UA_FORCE_UNWIND)
566 if (actions & _UA_FORCE_UNWIND)
621 && !(actions & _UA_FORCE_UNWIND
385 _Unwind_Action actions; local
    [all...]
  /src/external/mit/libuv/dist/src/unix/
process.c 496 * the file actions
542 posix_spawn_file_actions_t* actions,
552 err = posix_spawn_file_actions_init(actions);
565 err = posix_spawn_fncs->file_actions.addchdir_np(actions, options->cwd);
591 actions,
609 actions,
622 err = posix_spawn_file_actions_addinherit_np(actions, fd);
624 err = posix_spawn_file_actions_adddup2(actions, use_fd, fd);
648 err = posix_spawn_file_actions_addclose(actions, use_fd);
657 (void) posix_spawn_file_actions_destroy(actions);
786 posix_spawn_file_actions_t actions; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
tracepoint.h 43 and assigned to by tracepoint actions and conditionals, but is not
183 actions. */
184 std::vector<gdb::unique_xmalloc_ptr<char[]>> actions; member in struct:uploaded_tp
193 /* List of original strings defining the tracepoint's actions. */
  /src/external/gpl3/gdb/dist/gdb/
tracepoint.h 43 and assigned to by tracepoint actions and conditionals, but is not
183 actions. */
184 std::vector<gdb::unique_xmalloc_ptr<char[]>> actions; member in struct:uploaded_tp
193 /* List of original strings defining the tracepoint's actions. */
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-actions.h 33 // This file implements some commonly used actions.
350 // New code should create Actions from functors instead.
908 template <typename... Actions>
913 return {std::get<I>(actions)...};
917 std::tuple<Actions...> actions; member in struct:testing::DoAllAction
932 return Op{Convert<Args...>(MakeIndexSequence<sizeof...(Actions) - 1>()),
933 std::get<sizeof...(Actions) - 1>(actions)};
940 // This is handy when defining actions that ignore some or all of th
    [all...]

Completed in 52 milliseconds

1 2