Searched refs:action (Results 1 - 25 of 1044) sorted by relevance

1234567891011>>

/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_125.c8 typedef void (*action)(void); typedef
11 less(action a, action b)
/netbsd-current/usr.bin/make/unit-tests/
H A Djobs-empty-commands.exp0 action
/netbsd-current/external/bsd/kyua-cli/dist/engine/
H A Daction.hpp29 /// \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&);
H A Daction.cpp29 #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(voi
[all...]
/netbsd-current/external/bsd/openldap/dist/libraries/liblutil/
H A Dsignal.c30 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 ) {
/netbsd-current/share/examples/wsmoused/
H A Dwsmoused.conf13 #modes = "selection action";
27 mode action {
/netbsd-current/lib/libc/stdlib/
H A Dtwalk.c29 cmp_fn_t action, int level)
32 _DIAGASSERT(action != NULL);
35 (*action)(root, leaf, level);
37 (*action)(root, preorder, level);
39 trecurse(root->llink, action, level + 1);
40 (*action)(root, postorder, level);
42 trecurse(root->rlink, action, level + 1);
43 (*action)(root, endorder, level);
49 twalk(const void *vroot, cmp_fn_t action) /* Root of the tree to be walked */ argument
51 if (vroot != NULL && action !
28 trecurse(const node_t *root, cmp_fn_t action, int level) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dbreak-interp-lib.c29 libfunc (const char *action) argument
31 assert (action != NULL);
33 if (strcmp (action, "segv") == 0)
36 if (strcmp (action, "sleep") == 0)
H A Dsiginfo.c46 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);
H A Dsigrepeat.c50 struct sigaction action; local
51 memset (&action, 0, sizeof (action));
52 action.sa_handler = SIG_IGN;
53 sigaction (sig, &action, NULL);
83 struct sigaction action; local
84 memset (&action, 0, sizeof (action));
85 action.sa_handler = handler;
86 sigaction (alarm[i], &action, NUL
[all...]
H A Dsiginfo-thread.c67 struct sigaction action; local
68 memset (&action, 0, sizeof (action));
69 action.sa_sigaction = handler;
70 action.sa_flags |= SA_SIGINFO;
71 if (sigaction (SIGSEGV, &action, NULL))
H A Dsiginfo-obj.c58 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))
H A Dsiginfo-addr.c58 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))
H A Dsigstep.c42 struct sigaction action; variable in typeref:struct:sigaction
56 memset (&action, 0, sizeof (action));
57 action.sa_handler = no_handler ? SIG_IGN : handler;
58 sigaction (SIGVTALRM, &action, NULL);
59 sigaction (SIGALRM, &action, NULL);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbreak-interp-lib.c29 libfunc (const char *action) argument
31 assert (action != NULL);
33 if (strcmp (action, "segv") == 0)
36 if (strcmp (action, "sleep") == 0)
H A Dsiginfo.c46 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);
H A Dsigrepeat.c50 struct sigaction action; local
51 memset (&action, 0, sizeof (action));
52 action.sa_handler = SIG_IGN;
53 sigaction (sig, &action, NULL);
83 struct sigaction action; local
84 memset (&action, 0, sizeof (action));
85 action.sa_handler = handler;
86 sigaction (alarm[i], &action, NUL
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dplural-eval.c72 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, (struc
[all...]
/netbsd-current/external/mit/expat/dist/xmlwf/
H A Dxmlwf_helpgen.py59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not [s]tandalone')
60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing')
61 input_related.add_argument('-p', action='store_true', help='enable processing external DTDs and [p]arameter entities')
62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entities')
63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document [e]ncoding declaration')
64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages')
65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use normal file [r]ead IO calls instead')
66 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep processing after first file with error')
69 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination directory')
71 output_mode.add_argument('-c', action
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/engine/drivers/
H A Dscan_action.hpp30 /// Driver to scan the contents of an action.
33 /// action and to notify the presentation layer as soon as data becomes
34 /// available. This is to prevent reading all the data from the action at once,
52 class action;
64 /// Callback executed when an action is found.
66 /// \param action_id The identifier of the loaded action.
67 /// \param action The action loaded from the database.
69 const engine::action& action)
[all...]
/netbsd-current/tests/usr.bin/indent/
H A Dopt_bap.c16 action();
43 action();
76 action();
/netbsd-current/external/ibm-public/postfix/dist/src/master/
H A Dmaster_sig.c182 struct sigaction action; local
193 sigemptyset(&action.sa_mask);
194 action.sa_flags = 0;
195 action.sa_handler = SIG_IGN;
196 if (sigaction(SIGTERM, &action, (struct sigaction *) 0) < 0)
222 sigemptyset(&action.sa_mask);
223 action.sa_flags = 0;
224 action.sa_handler = SIG_DFL;
225 if (sigaction(sig, &action, (struct sigaction *) 0) < 0)
236 struct sigaction action; local
[all...]
/netbsd-current/usr.sbin/user/
H A Ddefs.h33 #define NEWARRAY(type,ptr,size,action) do { \
36 action; \
40 #define RENEW(type,ptr,size,action) do { \
43 action; \
47 #define NEW(type, ptr, action) NEWARRAY(type, ptr, 1, action)
/netbsd-current/usr.bin/menuc/
H A Dmdb.h59 typedef struct action { struct
62 } action; typedef in typeref:struct:action
70 action optact;
84 action expact;
85 action postact;
86 action exitact;
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Dnewconfig.py21 for action in actions:
22 action.applyTo(config)
24 action.pretty(config, lit_config.params),
30 for action in actions:
31 action.applyTo(config)
33 action.pretty(config, lit_config.params),

Completed in 165 milliseconds

1234567891011>>