/ast/src/lib/librecsort/ |
H A D | rsdisc.c | 47 { if(old && (old->events & RS_DISC) && 58 rs->events = rs->disc->events; 60 rs->events |= cur->events; 86 if ((disc->events & RS_POP) && 91 rs->events = rs->disc->events; 93 rs->events |= cur->events; [all...] |
H A D | rsnotify.c | 40 if (rs->events & op) 42 if ((disc->events & op) &&
|
H A D | rsfile.c | 36 if ((rs->events & RS_FILE_WRITE) && rsnotify(rs, RS_FILE_WRITE, sp, (Void_t*)path, rs->disc) < 0) 54 if ((rs->events & RS_FILE_READ) && rsnotify(rs, RS_FILE_READ, sp, (Void_t*)path, rs->disc) < 0) 73 if (rs->events & RS_FILE_CLOSE)
|
H A D | rstemp.c | 55 if ((rs->events & RS_TEMP_WRITE) && rsnotify(rs, RS_TEMP_WRITE, sp, (Void_t*)0, rs->disc) < 0) 80 if (rs->events & RS_TEMP_READ) 104 if (rs->events & RS_TEMP_CLOSE)
|
H A D | rslib.c | 76 rs->events |= disc->events;
|
H A D | rsopen.c | 80 rs->events = 0; 82 rs->events |= disc->events;
|
H A D | rswrite.c | 90 if(type == RS_OTEXT && (rs->events & RS_READ)) 121 { u = (rs->events & RS_WRITE) != 0; 122 if((rs->type&RS_UNIQ) && (rs->events & RS_SUMMARY)) 224 if((rs->type&RS_UNIQ) && (rs->events & RS_SUMMARY))
|
H A D | rshdr.h | 41 unsigned long events; /* active events */ \ 175 #define RSNOTIFY(r,o,v,x,d) ((r->events&o)?rsnotify(r,o,(Void_t*)v,(Void_t*)x,d):(0))
|
H A D | rsprocess.c | 135 if(rs->events & RS_READ) 233 if(r->data != data || !(rs->events & RS_READ))
|
H A D | recsort.h | 66 Rsevent_f eventf; /* to announce various events */ 67 unsigned long events; /* events to announce */ member in struct:_rsdisc_s 145 /* events */
|
H A D | rs-verify.c | 75 { if(!(rs->disc->events & RS_VERIFY))
|
/ast/src/lib/libcs/ |
H A D | cspoll.c | 50 register int events; local 73 events = width = 0; 79 if (pp->events & CS_POLL_READ) 81 events |= CS_POLL_READ; 84 if (pp->events & CS_POLL_WRITE) 86 events |= CS_POLL_WRITE; 89 if (pp->events & CS_POLL_CONTROL) 91 events |= CS_POLL_CONTROL; 97 if (!(events & CS_POLL_WRITE)) 100 if (!(events [all...] |
H A D | csclient.c | 99 fds[0].events = CS_POLL_WRITE; 105 fds[0].events = CS_POLL_READ; 108 fds[1].events = CS_POLL_READ; 130 fds[0].events = CS_POLL_READ;
|
H A D | css.c | 96 user = (ip->events & CS_POLL_USER) != 0; 97 ip->events = 0; 112 if (ip->events & CS_POLL_CONNECT) 446 return ip->events ? ip : (Cssfd_t*)0; 482 pp->events = op; 488 ip->events = op; 491 if (ip->events & CS_POLL_BEFORE) 493 if (ip->events & CS_POLL_CONNECT) 495 if (ip->events & CS_POLL_USER) 512 if (ip->events [all...] |
H A D | csslib.h | 63 int events; \
|
/ast/src/lib/libtk/library/demos/ |
H A D | dialog1.tcl | 8 set i [tk_dialog .dialog1 "Dialog with local grab" {This is a modal dialog box. It uses Tk's "grab" command to create a "local grab" on the dialog box. The grab prevents any pointer-related events from getting to any other windows in the application until you have answered the dialog by invoking one of the buttons below. However, you can still interact with other applications.} \
|
/ast/src/cmd/jcl/ |
H A D | JCL.mk | 10 JCLEVENTS = $(JCLRUN)/events-$(JCLROOT:B:S)
|
H A D | jcm.c | 149 Dt_t* events; member in struct:State_s 382 if (event = (Jcmevent_t*)dtmatch(state.events, s)) 397 dtinsert(state.events, event); 668 if (!(state.events = dtopen(&state.eventdisc, Dtoset)) ||
|
/ast/src/lib/libast/sfio/ |
H A D | sfpoll.c | 121 fds[m].events = fds[m].revents = 0; 124 fds[m].events |= POLLOUT; 134 fds[m].events |= POLLIN;
|
H A D | sfpkrd.c | 139 po.events = POLLIN;
|
/ast/src/cmd/coshell/ |
H A D | command.c | 75 fds[n++].events = CS_POLL_READ|CS_POLL_CONNECT; 77 fds[n++].events = CS_POLL_READ; 79 fds[n++].events = CS_POLL_READ; 90 fds[n++].events = CS_POLL_READ; 102 fds[m].events = 0; 110 fds[m].events = 0; 114 if (fds[i].events)
|
H A D | event.c | 43 "line requests must be separated by \b:\b. In the following events " 46 "[+all \aconnection\a?Raise all pending events for the " 49 "delete from the database. This allows the events to be matched " 54 "then clients are not notified about the those events until they " 56 "events are specified then all current and future events will be " 59 "[+info?List the server status pending events by client " 62 "the first event. If \apattern\a is specified then only events " 88 "[n:newer?Match events newer than \adate\a. If \b--older\b is also " 90 "[o:older?Match events olde 211 Dt_t* events; /* outstanding events dictionary */ member in struct:State_s [all...] |
/ast/src/cmd/sortlib/sync/ |
H A D | sync.c | 167 if ((rs->type & RS_IGNORE) && (disc->events & (RS_SUMMARY|RS_WRITE))) 388 unsigned long events; local 399 events = RS_OPEN|RS_POP; 588 events |= RS_OPEN; 590 events |= RS_READ; 592 events |= RS_WRITE; 613 events |= RS_SUMMARY; 616 events |= RS_WRITE; 663 state->disc.events = events; [all...] |
/ast/src/cmd/cs/vcs_src/ |
H A D | mnt_vcs.c | 53 ack.events = CS_POLL_READ;
|
/ast/src/cmd/pax/ |
H A D | paxlib.h | 154 unsigned long events; member in struct:Paxformat_s
|