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

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_125.c 8 typedef void (*action)(void); typedef
11 less(action a, action b)
  /src/external/bsd/kyua-cli/dist/engine/
action.hpp 29 /// \file engine/action.hpp
45 /// Representation of an action.
50 class action { class in namespace:engine
57 explicit action(const context&);
58 ~action(void);
62 bool operator==(const action&) const;
63 bool operator!=(const action&) const;
67 std::ostream& operator<<(std::ostream&, const action&);
action.cpp 29 #include "engine/action.hpp"
37 /// Internal implementation of an action.
38 struct engine::action::impl {
39 /// The runtime context of the action.
63 /// Constructs a new action.
65 /// \param context_ The runtime context in which the action runs.
66 engine::action::action(const context& context_) : function in class:engine::action
73 engine::action::~action(void
    [all...]
action_test.cpp 29 #include "engine/action.hpp"
68 const engine::action action(context);
69 ATF_REQUIRE(context == action.runtime_context());
76 const engine::action action1(fake_context("foo/bar"));
77 const engine::action action2(fake_context("foo/bar"));
78 const engine::action action3(fake_context("foo/baz"));
90 const engine::action action(context);
93 str << action; local
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblutil/
signal.c 30 struct sigaction action, oaction; local
32 memset( &action, '\0', sizeof(action) );
34 action.sa_handler = func;
35 sigemptyset( &action.sa_mask );
37 action.sa_flags |= SA_RESTART;
40 if( sigaction( sig, &action, &oaction ) != 0 ) {
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
attach-into-signal.c 27 void action(int sig, siginfo_t * info, void *uc) function
37 act.sa_sigaction = action;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
attach-into-signal.c 27 void action(int sig, siginfo_t * info, void *uc) function
37 act.sa_sigaction = action;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
siginfo.c 46 struct sigaction action; local
47 memset (&action, 0, sizeof (action));
49 action.sa_sigaction = handler;
50 action.sa_flags |= SA_SIGINFO;
52 action.sa_handler = handler;
54 sigaction (SIGVTALRM, &action, NULL);
siginfo-addr.c 58 struct sigaction action; local
59 memset (&action, 0, sizeof (action));
60 action.sa_sigaction = handler;
61 action.sa_flags |= SA_SIGINFO;
62 if (sigaction (SIGSEGV, &action, NULL))
siginfo-obj.c 58 struct sigaction action; local
59 memset (&action, 0, sizeof (action));
60 action.sa_sigaction = handler;
61 action.sa_flags |= SA_SIGINFO;
62 if (sigaction (SIGSEGV, &action, NULL))
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
siginfo.c 46 struct sigaction action; local
47 memset (&action, 0, sizeof (action));
49 action.sa_sigaction = handler;
50 action.sa_flags |= SA_SIGINFO;
52 action.sa_handler = handler;
54 sigaction (SIGVTALRM, &action, NULL);
siginfo-addr.c 58 struct sigaction action; local
59 memset (&action, 0, sizeof (action));
60 action.sa_sigaction = handler;
61 action.sa_flags |= SA_SIGINFO;
62 if (sigaction (SIGSEGV, &action, NULL))
siginfo-obj.c 58 struct sigaction action; local
59 memset (&action, 0, sizeof (action));
60 action.sa_sigaction = handler;
61 action.sa_flags |= SA_SIGINFO;
62 if (sigaction (SIGSEGV, &action, NULL))
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mxm/
priv.h 13 u32 action; member in struct:nvkm_mxm
  /src/external/bsd/libfido2/dist/tools/
fido2-token.c 15 static int action; variable
42 if (action)
44 action = ch;
86 switch (action) {
  /src/external/gpl2/gettext/dist/gettext-tools/src/
plural-eval.c 72 struct sigaction action; local
73 action.sa_sigaction = sigfpe_handler;
74 action.sa_flags = SA_SIGINFO;
75 sigemptyset (&action.sa_mask);
76 sigaction (SIGFPE, &action, (struct sigaction *) NULL);
86 struct sigaction action; local
87 action.sa_handler = SIG_DFL;
88 action.sa_flags = 0;
89 sigemptyset (&action.sa_mask);
90 sigaction (SIGFPE, &action, (struct sigaction *) NULL)
    [all...]
  /src/external/bsd/kyua-cli/dist/engine/drivers/
scan_action.cpp 31 #include "engine/action.hpp"
48 /// Gets an action from the store.
51 /// \param [in,out] action_id The specific action to get, or none to fetch the
52 /// latest available action. This is updated to contain the action id of
53 /// the returned action.
55 /// \return The fetched action.
57 /// \throw error If there is any problem while loading the action.
58 static engine::action
65 const std::pair< int64_t, engine::action > latest_action
101 const engine::action action = get_action(tx, action_id); local
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
timed_wait.c 86 struct sigaction action; local
100 sigemptyset(&action.sa_mask);
101 action.sa_flags = 0;
102 action.sa_handler = timed_wait_alarm;
103 if (sigaction(SIGALRM, &action, &old_action) < 0)
  /src/distrib/utils/more/
decode.c 48 * <c1><c2>...<cN><0><action>
52 * The byte after the null byte is the action code associated
143 * Decode a command character and return the associated action.
149 int action = A_INVALID; local
157 action = cmd_search(cmdtable, cmdendtable);
160 if (action != A_PREFIX)
162 return(action);
180 * Return the action code, which is the character
  /src/sys/arch/ia64/stand/common/
pager.c 87 int action; local
102 action = 0;
103 while (action == 0) {
108 action = 1;
112 action = 1;
116 action = 2;
123 if (action == 2)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_subdev.c 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
120 const char *action = suspend ? "suspend" : "fini"; local
123 nvkm_trace(subdev, "%s running...\n", action);
129 nvkm_error(subdev, "%s failed, %d\n", action, ret);
138 nvkm_trace(subdev, "%s completed in %"PRId64"us\n", action, time);
  /src/usr.sbin/apmd/
apm-proto.h 47 enum apm_action action; member in struct:apm_command
  /src/usr.sbin/fusermount/
fusermount.c 97 int action; local
102 action = ActionMount;
122 action = ActionUnmount;
147 switch(action) {
  /src/external/apache2/llvm/dist/llvm/tools/opt-viewer/
opt-diff.py 48 action='store_true', variable
opt-stats.py 39 action='store_true', variable

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 91011>>