| /src/tests/usr.bin/xlint/lint1/ |
| msg_125.c | 8 typedef void (*action)(void); typedef 11 less(action a, action b)
|
| /src/usr.bin/make/unit-tests/ |
| jobs-empty-commands.exp | 0 action
|
| /src/usr.bin/menuc/testm/ |
| menus.mc | 53 error action { fprintf (stderr, "Testm: Could not initialize curses.\n"); 57 display action { 66 action { } 84 action { do_dynamic (); } 90 action (endwin) { system ("/bin/sh"); } 92 exit action (endwin) { printf ("Thanks for playing\n"); }; 195 option "first", action {}; 196 option "second", action {}; 197 option "third", action {}; 200 option "option 1", action {}; [all...] |
| /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...] |
| /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/share/examples/wsmoused/ |
| wsmoused.conf | 13 #modes = "selection action"; 27 mode action {
|
| /src/lib/libc/stdlib/ |
| twalk.c | 29 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 */ 51 if (vroot != NULL && action != NULL [all...] |
| /src/usr.sbin/sysinst/arch/prep/ |
| menus.md.en | 38 option "com0 (S1)", exit, action { *((int*)arg) = 1; }; 39 option "VGA", exit, action { *((int*)arg) = 0; };
|
| menus.md.es | 38 option "COM0 (S1)", exit, action { yesno = 1; }; 39 option "VGA", exit, action { yesno = 0; };
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| break-interp-lib.c | 29 libfunc (const char *action) 31 assert (action != NULL); 33 if (strcmp (action, "segv") == 0) 36 if (strcmp (action, "sleep") == 0)
|
| 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);
|
| sigrepeat.c | 50 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, NULL) [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| break-interp-lib.c | 29 libfunc (const char *action) 31 assert (action != NULL); 33 if (strcmp (action, "segv") == 0) 36 if (strcmp (action, "sleep") == 0)
|
| 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);
|
| sigrepeat.c | 50 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, NULL) [all...] |
| /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/tests/usr.bin/indent/ |
| opt_bap.c | 16 action(); 43 action(); 76 action();
|
| /src/external/bsd/kyua-cli/dist/engine/drivers/ |
| scan_action.hpp | 30 /// 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) = 0 [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-objc-gnustep/ |
| main.m | 22 SEL action = @selector(method:); 26 action: action 29 action: action 32 action: @selector(showHelloWindow:) 35 action: action 38 action: action [all...] |
| /src/external/mit/expat/dist/xmlwf/ |
| xmlwf_helpgen.py | 28 # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 59 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 of 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 [r]ead calls instead') 67 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep processing after first file with error') 70 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination directory' [all...] |
| /src/external/ibm-public/postfix/dist/src/master/ |
| master_sig.c | 182 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...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/util/ |
| array.d | 20 const char[] action, Args args) @trusted 23 snprintf(&_store[0], _store.sizeof, format, &action[0], args); 29 void enforceTypedArraysConformable(T)(const char[] action, 32 _enforceSameLength(action, a1.length, a2.length); 34 _enforceNoOverlap(action, arrayToPtr(a1), arrayToPtr(a2), T.sizeof * a1.length); 37 void enforceRawArraysConformable(const char[] action, const size_t elementSize, 40 _enforceSameLength(action, a1.length, a2.length); 42 _enforceNoOverlap(action, arrayToPtr(a1), arrayToPtr(a2), elementSize * a1.length); 45 private void _enforceSameLength(const char[] action, 53 msg ~= action; [all...] |
| /src/usr.bin/menuc/ |
| mdb.h | 59 typedef struct action { struct 62 } action; typedef in typeref:struct:action 70 action optact; 84 action expact; 85 action postact; 86 action exitact;
|
| /src/usr.sbin/user/ |
| defs.h | 33 #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)
|