Searched defs:update (Results 1 - 11 of 11) sorted by relevance
/ast/src/cmd/nmake/ |
H A D | archive.c | 35 * return the update command for the named archive 42 char* update; local 44 update = "$(RANLIB) $(<)"; 50 update = "($(RANLIB|\":\") $(<)) >/dev/null 2>&1 || true"; 52 update = 0; 55 return update;
|
H A D | make.c | 102 * undo alias of a -> r in preparation for update() 136 * prepare for update and execute action 143 update(register Rule_t* r, register Rule_t* a, char* arg) function 996 * check for update 1016 errors += update(r, r1, arg); 1035 * determine the update rule if no metarule applied 1129 errors += update(r, r1, arg);
|
/ast/src/lib/libodelta/ |
H A D | update.c | 21 #include "update.h" 131 update(int srcfd, long offset, int delfd, int tarfd) function
|
/ast/src/cmd/mailx/ |
H A D | quit.c | 125 int update; local 139 update = MODIFY|MDELETE|MSTATUS; 141 update |= MSAVE; 146 if (mp->m_flag & update) 164 if ((mp->m_flag & update) && !(mp->m_flag & MNONE)) { 224 update &= (MDELETE|MSAVE); 225 update |= MNONE; 228 if (!(mp->m_flag & update)) {
|
/ast/src/cmd/at/ |
H A D | at.c | 77 "[U:update?Causes the \bat\b daemon to do a schedule update and re-read" 179 char* update = 0; local 258 update = opt_info.arg; 307 sfprintf(sp, "%c%s", AT_UPDATE, update ? update : "");
|
H A D | atd.c | 151 time_t update; /* info file mtime */ member in struct:__anon39 377 * update state from the queue, allow and deny files 381 update(register State_t* state) function 400 if (fstat(sffileno(sp), &st) || st.st_mtime != state->update) 402 state->update = st.st_mtime; 449 * scan and update the access 1114 update(state); 1429 * update the queue definitions 1432 update(state);
|
/ast/src/cmd/coshell/ |
H A D | schedule.c | 250 ap->update = cs.time + 2 * LOST; 253 if (ap->update <= cs.time && ap->errors < ERRORS) update(ap); 276 if (ap->update <= cs.time && ap->errors < ERRORS) update(ap); 411 if (a->global.set & SETUPDATE) sp->update = a->stat.up; 452 sp->update = 0; 454 else if (sp->update > cs.time + UPDATE) sp->update = 0; 458 if (!sp->update 467 update(register Coshell_t* sp) function [all...] |
/ast/src/lib/libcmd/ |
H A D | cp.c | 97 "[u:update?Replace a destination file only if its modification time is " 179 int update; /* replace only if newer */ member in struct:State_s 416 else if (state->update && !S_ISDIR(st.st_mode) && (unsigned long)ent->fts_statp->st_mtime < (unsigned long)st.st_mtime) 823 state->update = 1;
|
/ast/src/cmd/ss/ |
H A D | ssd.c | 235 * update data status checking for competing daemon 240 update(char* data, unsigned long now, int delay, CSSTAT* ss) function 356 update(data, 0, 0, &ss); 360 update(data, 0, CS_STAT_FREQ + (CS_STAT_DOWN - CS_STAT_FREQ) / 2, &ss); 366 for (;;) update(data, 0, CS_STAT_FREQ + (CS_STAT_DOWN - CS_STAT_FREQ) / 2, &ss); 370 error(ERROR_SYSTEM|3, "%s: cannot update", data); 469 * update logged in user stats 570 * update memfile symbol values 654 update(data, now, (4 * CS_STAT_FREQ + 2 * (CSTOSS(toss, 0) % (CS_STAT_FREQ + 1))) / 5, &ss);
|
/ast/src/cmd/ksh93/sh/ |
H A D | array.c | 195 static union Value *array_getup(Namval_t *np, Namarr_t *arp, int update) argument 236 if(update)
|
/ast/src/cmd/INIT/ |
H A D | mamake.c | 41 " actions to update targets that are older than their prerequisites." 1173 * run action s to update r 1750 * update recursion leaf r and its prerequisites 1754 update(register Rule_t* r) function 1767 update(x->rule); 1818 update(r); 1973 return r->leaf && !(r->flags & RULE_made) ? update(r) : 0;
|
Completed in 290 milliseconds