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

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/liblutil/
H A Dsignal.c27 struct sigaction action, oaction; local
29 memset( &action, '\0', sizeof(action) );
31 action.sa_handler = func;
32 sigemptyset( &action.sa_mask );
34 action.sa_flags |= SA_RESTART;
37 if( sigaction( sig, &action, &oaction ) != 0 ) {
/netbsd-6-1-5-RELEASE/share/examples/wsmoused/
H A Dwsmoused.conf13 #modes = "selection action";
27 mode action {
/netbsd-6-1-5-RELEASE/distrib/utils/sysinst/arch/prep/
H A Dmenus.md.en38 option "com0 (S1)", exit, action { yesno = 1; };
39 option "VGA", exit, action { yesno = 0; };
H A Dmenus.md.es38 option "COM0 (S1)", exit, action { yesno = 1; };
39 option "VGA", exit, action { yesno = 0; };
/netbsd-6-1-5-RELEASE/distrib/utils/sysinst/
H A Dmenus.mbr38 option MSG_Use_only_part_of_the_disk, exit, action {*(int *)arg = 0;};
39 option MSG_Use_the_entire_disk, exit, action {*(int *)arg = 1;};
H A Dmenus.mi68 error action {
75 display action {
88 option "unused", exit, action
90 option "FFSv1", exit, action { set_ptype(arg, FS_BSDFFS, 0); };
91 option "FFSv2", exit, action { set_ptype(arg, FS_BSDFFS, PIF_FFSv2); };
92 option "swap", exit, action { set_ptype(arg, FS_SWAP, 0); };
93 option "msdos", exit, action { set_ptype(arg, FS_MSDOS, 0); };
94 option "LFS", exit, action { set_ptype(arg, FS_BSDLFS, 0); };
95 option MSG_other_types, action
100 display action {
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbreak-interp-lib.c24 libfunc (const char *action) argument
26 assert (action != NULL);
28 if (strcmp (action, "segv") == 0)
31 if (strcmp (action, "sleep") == 0)
H A Dsiginfo.c45 struct sigaction action; local
46 memset (&action, 0, sizeof (action));
48 action.sa_sigaction = handler;
49 action.sa_flags |= SA_SIGINFO;
51 action.sa_handler = handler;
53 sigaction (SIGVTALRM, &action, NULL);
H A Dsigrepeat.c51 struct sigaction action; local
52 memset (&action, 0, sizeof (action));
53 action.sa_handler = SIG_IGN;
54 sigaction (sig, &action, NULL);
84 struct sigaction action; local
85 memset (&action, 0, sizeof (action));
86 action.sa_handler = handler;
87 sigaction (alarm[i], &action, NUL
[all...]
H A Dsiginfo-addr.c55 struct sigaction action; local
56 memset (&action, 0, sizeof (action));
57 action.sa_sigaction = handler;
58 action.sa_flags |= SA_SIGINFO;
59 if (sigaction (SIGSEGV, &action, NULL))
H A Dsiginfo-obj.c57 struct sigaction action; local
58 memset (&action, 0, sizeof (action));
59 action.sa_sigaction = handler;
60 action.sa_flags |= SA_SIGINFO;
61 if (sigaction (SIGSEGV, &action, NULL))
H A Dsigstep.c35 struct sigaction action; variable in typeref:struct:sigaction
49 memset (&action, 0, sizeof (action));
50 action.sa_handler = handler;
51 sigaction (SIGVTALRM, &action, NULL);
52 sigaction (SIGALRM, &action, NULL);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D980506-1.c44 short action; local
55 action = TIFFFax1DAction[state][sp_data];
57 if (action == 0 )
59 if (action == 1 )
61 if (action == 210 )
64 action = (TIFFFaxWhiteCodes[ action - 2 ].runlen) ;
65 runlen += action;
66 if (action < 64)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D980506-1.c41 short action; local
52 action = TIFFFax1DAction[state][sp_data];
54 if (action == 0 )
56 if (action == 1 )
58 if (action == 210 )
61 action = (TIFFFaxWhiteCodes[ action - 2 ].runlen) ;
62 runlen += action;
63 if (action < 64)
/netbsd-6-1-5-RELEASE/lib/libc/stdlib/
H A Dtwalk.c25 void (*action)(const void *, VISIT, int), int level);
29 trecurse(root, action, level)
31 void (*action)(const void *, VISIT, int);
35 _DIAGASSERT(action != NULL);
38 (*action)(root, leaf, level);
40 (*action)(root, preorder, level);
42 trecurse(root->llink, action, level + 1);
43 (*action)(root, postorder, level);
45 trecurse(root->rlink, action, level + 1);
46 (*action)(roo
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dqual1.C16 } action; variable in typeref:class:C
20 work( action.function()() );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash39.C6 virtual void action () = 0;
14 void action () {} function in struct:Var::tmp
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dqual1.C16 } action; variable in typeref:class:C
20 work( action.function()() );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash39.C6 virtual void action () = 0;
14 void action () {} function in struct:Var::tmp
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/abi/
H A Dstructret1.C13 ConstructedObject action();
16 ConstructedObject FrameworkObject::action() { function in class:FrameworkObject
28 slawa.action();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/graphite/
H A Dpr38084.c13 int test_in ( stream *test, int action )
24 if (action == 0) {
26 if (action == 1) {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/abi/
H A Dstructret1.C13 ConstructedObject action();
16 ConstructedObject FrameworkObject::action() { function in class:FrameworkObject
28 slawa.action();
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/master/
H A Dmaster_sig.c177 struct sigaction action; local
188 sigemptyset(&action.sa_mask);
189 action.sa_flags = 0;
190 action.sa_handler = SIG_IGN;
191 if (sigaction(SIGTERM, &action, (struct sigaction *) 0) < 0)
208 sigemptyset(&action.sa_mask);
209 action.sa_flags = 0;
210 action.sa_handler = SIG_DFL;
211 if (sigaction(sig, &action, (struct sigaction *) 0) < 0)
222 struct sigaction action; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/menuc/
H A Dmdb.h63 typedef struct action { struct
66 } action; typedef in typeref:struct:action
74 action optact;
88 action postact;
89 action exitact;
/netbsd-6-1-5-RELEASE/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)

Completed in 191 milliseconds

1234567891011>>