Searched refs:act (Results 76 - 100 of 160) sorted by relevance

1234567

/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dvirterm366 while {![info exists act]} {
373 set act [lindex $args [incr i]]
377 } else { set act $timeout_act }
379 if {![info exists act]} {
384 set code [catch {uplevel $act} string]
H A Dterm_expect545 while {![info exists act]} {
552 set act $timeout_act
556 set act [lindex $args [incr i]]
571 set code [catch {uplevel $act} string]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Devhiperfifo.c231 static void setsock(SockInfo*f, curl_socket_t s, CURL*e, int act, GlobalInfo*g) argument
235 int kind = (act&CURL_POLL_IN?EV_READ:0)|(act&CURL_POLL_OUT?EV_WRITE:0);
238 f->action = act;
H A Dghiper.c221 static void setsock(SockInfo*f, curl_socket_t s, CURL*e, int act, GlobalInfo*g) argument
224 (act&CURL_POLL_IN?G_IO_IN:0)|(act&CURL_POLL_OUT?G_IO_OUT:0);
227 f->action = act;
/macosx-10.10/emacs-93/emacs/src/s/
H A Ddgux.h249 extern struct sigaction act, oact;
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dmap-ynp.el50 value is not a string, it may be nil to ignore the object or non-nil to act
59 verb describing ACTOR. The default is \(\"object\" \"objects\" \"act on\"\).
61 At the prompts, the user may enter y, Y, or SPC to act on that object;
62 n, N, or DEL to skip that object; ! to act on all following objects;
63 ESC or q to exit (skip all following objects); . (period) to act on the
106 (setq map `(("Yes" . act) ("No" . skip)
114 "Do This But No More") . act-and-exit)
171 ((eq def 'act)
178 ((eq def 'act-and-exit)
204 (action (if help (nth 2 help) "act o
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dnojobs.c445 struct sigaction act; local
447 sigaction (sig, (struct sigaction *)NULL, &act);
450 act.sa_flags &= ~SA_RESTART;
452 act.sa_flags |= SA_RESTART;
454 return (sigaction (sig, &act, (struct sigaction *)NULL));
/macosx-10.10/file_cmds-242/pax/
H A Dbuf_subs.c146 if ((act == APPND) && wrblksz) {
294 act = ARCHIVE;
324 if (act == APPND) {
H A Dar_subs.c1299 if (act == APPND) {
1364 if (act == APPND) {
1453 if (act == APPND)
1488 if (act == APPND)
H A Dextern.h219 extern int act;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-relay/
H A Dop.c173 * Forward <act> on <op> to database <bd>, with <relay, op type>-specific
176 #define RELAY_WRAP_OP( op, bd, which, act ) { \
183 act; \
/macosx-10.10/pdisk-9/
H A Dpartition_map.c616 enum add_action act; local
677 act = kReplace;
679 act = kAdd;
686 act = kAdd;
690 act = kSplit;
703 if (map->blocks_in_map + (int)act > limit) {
712 if (act == kReplace) {
723 } else if (act == kSplit) {
/macosx-10.10/vim-55/runtime/syntax/
H A Dsnnsnet.vim20 syn match snnsnetTitle "act\( func\)\="
/macosx-10.10/zsh-61/zsh/Src/
H A Dsignals.c110 struct sigaction act; local
112 act.sa_handler = (SIGNAL_HANDTYPE) zhandler;
113 sigemptyset(&act.sa_mask); /* only block sig while in handler */
114 act.sa_flags = 0;
117 act.sa_flags |= SA_INTERRUPT; /* make sure system calls are not restarted */
119 sigaction(sig, &act, (struct sigaction *)NULL);
/macosx-10.10/dtrace-147/cmd/
H A Ddtrace_1.c1212 dtrace_actkind_t act; local
1226 act = rec->dtrd_action;
1229 if (act == DTRACEACT_EXIT) {
1406 struct sigaction act, oact; local
2063 (void) sigemptyset(&act.sa_mask);
2064 act.sa_flags = 0;
2065 act.sa_handler = intr;
2068 (void) sigaction(SIGINT, &act, NULL);
2071 (void) sigaction(SIGTERM, &act, NULL);
/macosx-10.10/dtrace-147/libdtrace/
H A Ddt_options.c111 struct sigaction act; local
116 act.sa_handler = SIG_DFL;
117 act.sa_flags = 0;
119 (void) sigemptyset(&act.sa_mask);
120 (void) sigaction(SIGABRT, &act, NULL);
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Denvutil.rb267 [[test_stdout, stdout], [test_stderr, stderr]].each do |exp, act|
270 assert_match(exp, act, message)
272 assert_equal(exp, act.lines.map {|l| l.chomp }, message)
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/spawn/
H A Dposix_spawn.c744 posix_spawn_appendportaction_np(posix_spawnattr_t *attr, _ps_port_action_t *act) argument
749 if (attr == NULL || *attr == NULL || act == NULL) {
775 acts->pspa_actions[acts->pspa_count] = *act;
/macosx-10.10/xnu-2782.1.97/tools/tests/kqueue_tests/
H A Dkqueue_file_tests.c125 init_action(action_t *act, int sleep, action_id_t call, int nargs, ...) argument
130 act->act_dosleep = sleep;
131 act->act_id = call;
135 act->act_args[i] = va_arg(ap, void*);
209 action_t *act = (action_t*)actionptr; local
210 void **args = act->act_args;
218 LOG(1, stderr, "Beginning action of type %d\n", act->act_id);
221 if(SLEEP == act->act_dosleep) {
224 switch(act->act_id) {
261 res = write((int)act
[all...]
/macosx-10.10/libresolv-57/
H A Dres_send.c667 res_sendhookact act; local
669 act = (*statp->qhook)(&nsap, &buf, &buflen, ans, reply_buf_size, &resplen);
670 switch (act)
751 res_sendhookact act; local
753 act = (*statp->rhook)(nsap, buf, buflen, ans, *anssiz, &resplen);
754 switch (act)
/macosx-10.10/screen-22/screen/
H A Dextern.h209 extern int ParseSaveStr __P((struct action *act, char **));
210 extern int ParseNum __P((struct action *act, int *));
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/lib/DateTime/Format/
H A DBuilder.pm180 to act as a method.
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/Test/Builder/
H A DModule.pm55 all act normally.
/macosx-10.10/emacs-93/emacs/lisp/
H A Dmacros.el192 \\[act] Finish this iteration normally and continue with the next.
209 (\\[act], \\[skip], \\[exit], \\[recenter], \\[edit]) ")))
218 (cond ((eq def 'act)
241 \\[act] Finish this iteration normally and continue with the next.
/macosx-10.10/sudo-73/src/
H A Dmissing.h213 int sigaction __P((int sig, const sigaction_t *act, sigaction_t *oact));

Completed in 218 milliseconds

1234567