/ast/src/lib/libcoshell/ |
H A D | cowait.c | 139 int active; local 161 active = 0; 191 active = 1; 205 active = 1; 210 * reap the active jobs 213 if (!active) 263 errormsg(state.lib, 2, "coshell %d active wait %lu timeout=%d outstanding=<%d,%d> running=<%d,%d>", co->index, serial, timeout, co->outstanding, co->svc_outstanding, co->running, co->svc_running); 387 errormsg(state.lib, 2, "coshell %d active wait %lu timeout=%d outstanding=<%d,%d> running=<%d,%d> reap job %d", co->index, serial, timeout, co->outstanding, co->svc_outstanding, co->running, co->svc_running, cj->id);
|
/ast/src/cmd/cs/ |
H A D | nam.c | 47 int active; member in struct:__anon79 60 state->active++; 150 state->active--; 163 if (!state->active)
|
H A D | tst-old.c | 46 int active; member in struct:__anon83 74 state->active++; 108 if (state->active == 1) exit(0); 122 state->active--; 131 error(1, "timeout active=%d dormant=%d", state->active, state->dormant); 132 if (state->active <= 0)
|
H A D | cat.c | 57 int active; /* # open connections */ member in struct:__anon70 125 state->active++; 173 state->active--; 186 if (!state->active)
|
H A D | fs_env.c | 68 int active; member in struct:__anon78 101 state->active++; 248 state->active++; 257 state->active--; 271 if (!state->active)
|
H A D | dbm.c | 94 int active; /* number active connections */ member in struct:__anon76 135 state->active++; 318 if (state->active == 1) exit(0); 325 state->active--; 338 if (!state->active)
|
H A D | pid.c | 67 unsigned long active; /* number of active pids */ member in struct:__anon81 135 n = sfsprintf(m, sizeof(state->buf), "active=%d decay=%d expire=%d\n", state->active, state->decay, state->expire); 177 if (!--state->active) 201 if (!state->active++) 248 state->active--;
|
/ast/src/cmd/nmake/ |
H A D | metarule.c | 352 metaget(Rule_t* r, Frame_t* active, char* stem, Rule_t** meta) argument 371 if (active) 373 f = active->flags & P_implicit; 376 if (active->prereqs) 378 prereqs = active->prereqs; 381 else if (active == active->parent) 384 active = active->parent; 385 } while (active); [all...] |
H A D | expand.c | 2459 * don't wait for targets in the active frames 2502 if (!(state.frame = r->active)) 2873 * return 1 if fp is an active frame 2877 active(Rule_t* r, register Frame_t* fp) function 2886 error(1, "%s: parentage not in active frame", r->name); 2898 if (r->active && active(r, r->active) && r->active->parent && !(r->active [all...] |
H A D | make.h | 459 struct Frame_s /* active target frame */ 462 Frame_t* previous; /* previous active frame */ 491 Frame_t* active; /* active target frame */ member in struct:Rule_s 573 Rule_t* active; /* .ACTIVE rule pointer */ member in struct:Internal_s 835 int targetview; /* most recent active targ view */
|
/ast/src/cmd/re/ |
H A D | sed2.c | 81 int active; local 94 active = !(*q & INACT); 96 switch(sel1(ipc[active], data)) { 98 if((active&ateof()) == 0) 102 if(active) 104 return (neg^1) << (!active&!ateof()); 106 if(active) { 112 return (neg^active) << 1;
|
/ast/src/lib/libtk/generic/ |
H A D | tkListbox.c | 127 * Information about what's selected or active, if any. 138 int active; /* Index of "active" element (the one that member in struct:__anon409 395 listPtr->active = 0; 472 ListboxRedrawRange(listPtr, listPtr->active, listPtr->active); 477 listPtr->active = index; 478 ListboxRedrawRange(listPtr, listPtr->active, listPtr->active); 1151 * If this is the active elemen [all...] |
H A D | tkMenu.c | 60 * normal, active, or disabled. */ 63 * border drawn around entry when active. */ 74 * element is active. NULL means use 77 * active. NULL means use active foreground 83 GC activeGC; /* GC for drawing text in entry when active. 257 int active; /* Index of active entry. -1 means member in struct:Menu 258 * nothing active. */ 268 * active elemen [all...] |
/ast/src/cmd/coshell/ |
H A D | event.c | 202 unsigned int active; /* number of active clients */ member in struct:State_s 210 Dt_t* connections; /* active connection list */ 303 state->active++; 305 log(state, con, 'S', "accept connection -- %d active", state->active); 396 log(state, con, 'I', "info active=%d", state->active); 963 state->active--; 966 log(state, con, 'S', "drop connection -- %d active", stat [all...] |
/ast/src/cmd/INIT/ |
H A D | mamake.c | 126 #define RULE_active 0x0001 /* active target */ 228 int active; /* targets currently active */ member in struct:__anon22 1562 state.active++; 1620 if (cmd && state.active && (state.force || r->time < z || !r->time && !z)) 1646 if (state.active) 1714 state.active--; 1720 * verify that active targets were made 1971 if (!state.active && (!(r->flags & RULE_active) || !(r = (Rule_t*)search(state.leaf, r->name, NiL)))) 1977 * append the non-leaf active target 1981 active(Dict_item_t* item, void* handle) function [all...] |
/ast/src/cmd/ksh93/sh/ |
H A D | io.c | 475 static int active = 0; local 491 if(!active) 495 active = 1; 501 active = 0;
|
/ast/src/cmd/mailx/ |
H A D | mailx.h | 707 struct msg* active; /* ip points to this message */ member in struct:__anon136::__anon140
|