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

/osnet-11/usr/src/lib/efcode/engine/
H A DMakefile.com29 env.o print.o properties.o actions.o package.o instance.o \
H A Dactions.c228 actions(fcode_env_t *env) function
233 token_roundup(env, "actions");
242 set_here(env, (uchar_t *)d, "actions");
261 TODO; /* use-actions in compile state. */
289 actions(env);
393 FORTH(0, "dump-actions", dump_actions);
394 FORTH(IMMEDIATE, "actions", actions);
395 FORTH(IMMEDIATE, "use-actions", use_actions);
/osnet-11/usr/src/lib/libc/inc/
H A Dnsswitch_priv.h98 action_t actions[__NSW_STD_ERRS_V1]; member in struct:__nsw_lookup_v1
116 (lkp)->actions[err] \
/osnet-11/usr/src/lib/libc/port/gen/
H A Dnsparse.c122 lkp->actions[__NSW_TRYAGAIN] = __NSW_TRYAGAIN_NTIMES;
171 lkp->actions[i] = __NSW_RETURN;
173 lkp->actions[i] = __NSW_TRYAGAIN_FOREVER;
175 lkp->actions[i] = __NSW_CONTINUE;
254 lkp->actions[__NSW_SUCCESS] = act;
258 lkp->actions[__NSW_NOTFOUND] = act;
262 lkp->actions[__NSW_UNAVAIL] = act;
266 lkp->actions[__NSW_TRYAGAIN] = act;
269 lkp->actions[
365 lkp->actions[
[all...]
H A Dnss_common.c1283 switch (lkp->actions[res]) {
1314 __NSW_UNPAUSE_ACTION(lkp->actions[__NSW_TRYAGAIN]);
1316 lkp->actions[__NSW_NISSERVDNS_TRYAGAIN]);
1322 lkp->actions[__NSW_TRYAGAIN] == __NSW_TRYAGAIN_FOREVER) ||
1324 lkp->actions[__NSW_NISSERVDNS_TRYAGAIN] == __NSW_TRYAGAIN_FOREVER))
1328 lkp->actions[__NSW_TRYAGAIN] == __NSW_TRYAGAIN_NTIMES)
1332 lkp->actions[__NSW_TRYAGAIN] = __NSW_TRYAGAIN_PAUSED;
1337 lkp->actions[__NSW_NISSERVDNS_TRYAGAIN] == __NSW_TRYAGAIN_NTIMES)
1341 lkp->actions[__NSW_NISSERVDNS_TRYAGAIN] =
/osnet-11/usr/src/lib/libecp/common/
H A Decp_impl.c102 struct sigaction actions; local
104 (void) memset(&actions, 0, sizeof (actions));
105 (void) sigemptyset(&actions.sa_mask);
106 actions.sa_flags = SA_NODEFER;
107 actions.sa_handler = ecp_sighandler;
109 sigaction(SIGQUIT, &actions, NULL);
/osnet-11/usr/src/lib/libc/amd64/unwind/
H A Dunwind_context.h83 _Unw_very_boring_personality(int version, int actions, uint64_t exclass,
H A Dunwind.c175 _Unw_very_boring_personality(int version, int actions, uint64_t exclass, argument
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4500/
H A DSun-Fire-X4500-disk-hc-topology.xmlgen48 my @actions = (
71 printf " <propval name='indicator-rule-actions-%d' " .
72 "type='string' value='%s' />\n", $i, $actions[$i];
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4540/
H A DSun-Fire-X4540-disk-hc-topology.xmlgen48 my @actions = (
71 printf " <propval name='indicator-rule-actions-%d' " .
72 "type='string' value='%s' />\n", $i, $actions[$i];
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dnetname.c230 switch (look->actions[err]) {
H A Dnetnamer.c434 switch (look->actions[err]) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DScalar.pm71 option exists, should a class wish to perform specific actions upon the
H A DHandle.pm99 option exists, should a class wish to perform specific actions upon the
/osnet-11/usr/src/lib/libnsl/key/
H A Dpublickey.c585 switch (look->actions[err]) {
666 switch (look->actions[err]) {
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Project/
H A DProject.pm71 'actions' => [ qw(none deny sig) ],
1524 $rctl->{'actions'} = ['deny'];
1527 $rctl->{'actions'} = ['none'];
1529 $rctl->{'actions'} = ['none', 'deny'];
1537 push(@{$rctl->{'actions'}}, 'sig');
1665 my @actions;
1715 ($priv, $val, @actions) = @$value;
1716 if (!@actions) {
1783 foreach $action (@actions) {
1800 if (!(grep /^$action$/, @{$allrules->{'actions'}})) {
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl175 assignment) contains breakpoints and actions. The keys are line numbers;
727 # + When restarting debugger breakpoints/actions persist.
1106 =item C<$pre> - preprompt actions (array reference)
1108 =item C<$post> - postprompt actions (array reference)
1372 PERLDB_POSTPONE - subs that have been loaded/not executed, and have actions
1377 PERLDB_PRETYPE - preprompt debugger actions
1395 # restore breakpoints/actions
1414 # return pre/postprompt actions and typeahead buffer
1817 C<watchfunction()> can control the debugger's actions. Any of the following
1970 If there are any preprompt actions, execut
[all...]
H A Doverload.pm847 imply different actions on the assignment C<$a = $b> if $a and $b are
/osnet-11/usr/src/lib/efcode/include/fcode/
H A Dproto.h381 FNPROTO(actions); variable
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_util.c739 posix_spawn_file_actions_t actions; local
743 if (posix_spawn_file_actions_init(&actions) != 0)
745 (void) posix_spawn_file_actions_addclose(&actions, 1);
746 (void) posix_spawn_file_actions_addclose(&actions, 2);
750 (void) posix_spawn_file_actions_destroy(&actions);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/
H A DDynaLoader_pm.PL866 It performs the following actions:
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/
H A DBuilder.pm138 will print the appropriate headers and take the appropriate actions.
/osnet-11/usr/src/cmd/sendmail/src/
H A Dconf.c875 if (lk->actions[__NSW_NOTFOUND] == __NSW_RETURN)
877 if (lk->actions[__NSW_TRYAGAIN] == __NSW_RETURN)
879 if (lk->actions[__NSW_UNAVAIL] == __NSW_RETURN)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DParser.pm31 ## Interpret the command and its text; sample actions might be:
34 ## ... other commands and their actions
42 ## Format verbatim paragraph; sample actions might be:
49 ## Translate/Format this block of text; sample actions might be:
57 ## Expand an interior sequence; sample actions might be:
527 cleanup actions.
532 cleanup actions once per document, then you should use B<end_pod()>.
989 # ## then see if we need to do the default actions
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Text/
H A DBalanced.pm1930 parser actions which are to be performed only on a successful parse

Completed in 89 milliseconds