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

123

/ast/src/cmd/ksh93/sh/
H A Dwaitevent.c33 int (*old)(int,long,int);
34 old = shgd->waitevent;
36 return((void*)old);
42 * retain the old name for a bit for a smooth transition
/ast/src/lib/libast/vmalloc/
H A Dvmdisc.c30 /* Change the discipline for a region. The old discipline
44 Vmdisc_t* old = vm->disc; local
47 { if(old->exceptf &&
48 (*old->exceptf)(vm,VM_DISC,(Void_t*)disc,old) != 0 )
52 return old;
/ast/src/lib/libvcodex/
H A Dvcdisc.c35 Vcdisc_t *old = vc->disc; local
42 if(old && old->eventf &&
43 (*old->eventf)(vc, VC_DISC, (Void_t*)disc, old) < 0 )
55 return old ? old : disc;
/ast/src/lib/libast/cdt/
H A Ddtdisc.c60 Dtdisc_t *old; local
63 if(!(old = dt->disc) ) /* initialization call from dtopen() */
71 return old;
73 if(old->eventf && (*old->eventf)(dt,DT_DISC,(Void_t*)disc,old) < 0)
87 return old;
/ast/src/cmd/html/
H A DMakefile36 old-troff2html.html old-troff2html.rtf \
37 sh.1 old-sh.html old-sh.rtf \
38 tour.mm old-tour.html old-tour.hpj old-tour.rtf
/ast/src/lib/librecsort/
H A Drsmethod.c36 reg Rsmethod_t* old = rs->meth; local
40 return old;
56 return old;
H A Drsdisc.c37 reg Rsdisc_t* old; local
45 old = rs->disc;
47 { if(old && (old->events & RS_DISC) &&
48 (*old->eventf)(rs,RS_DISC,(Void_t*)disc,(Void_t*)0,old) < 0)
62 return old;
/ast/src/cmd/pax/
H A Dtestpax.sh27 # tar-path tar the old and new archives
76 : old files and base archive
78 mkdir old
79 cd old
90 '') "$@" -wf ../old.$suf $fmt * || status=1 ;;
91 *) $tar cf ../old.$suf . || status=1 ;;
100 then "$@" -rf ../old.$suf || status=1
136 "$@" -rf new.$suf -wf old-new.$suf $fmt -z old.$suf || status=1
140 "$@" -rf old
[all...]
H A Ddelta2patch.sh59 mkdir $tmp $tmp/old $tmp/new || exit
60 pax --nosummary -rf $base -s ",.*,$tmp/old/&," $changes
62 diff -r -N -u $tmp/old $tmp/new | sed -e "s,$tmp/new/,,g" -e "s,$tmp/old/,,g" -e $'s/^--- \\([^\t]*\\)/&.orig/' -e '/^diff /s/ [^ ]*$/.orig&/'
/ast/src/cmd/mailx/
H A Dtty.c236 struct termios old; local
243 tcgetattr(rfd, &old);
244 tty = old;
250 if (c == old.c_cc[VEOF])
252 else if (c == old.c_cc[VINTR])
254 else if (c == old.c_cc[VQUIT])
261 tcsetattr(rfd, TCSADRAIN, &old);
282 struct termios old; local
290 tcgetattr(rfd, &old);
291 tty = old;
[all...]
/ast/src/cmd/mailx/port/
H A Ddtdisc.c109 reg Dtdisc_t* old; local
111 if(!(old = dt->disc) ) /* initialization call from dtopen() */
119 return old;
125 if(old->eventf && (*old->eventf)(dt,DT_DISC,(Void_t*)disc,old) < 0)
135 return old;
188 return old;
/ast/src/lib/libast/string/
H A Dstrtoip4.c54 int old; local
95 if (old = part < 4)
113 old = 1;
117 if (z <= 32 && (!old || part < 2))
/ast/src/lib/libcoshell/
H A Dcoinit.c63 * old!=0 formats in old style
69 putexport(Coshell_t* co, Sfio_t* sp, char* n, int old, int coex, int flags) argument
84 if (old)
88 if (!old)
106 if (old)
122 int old; local
181 old = !(flags & (CO_KSH|CO_SERVER));
182 if (!old)
191 putexport(co, sp, s, old, !
[all...]
/ast/src/lib/libast/regex/
H A Dregcache.c86 int old; local
139 old = 0;
147 else if (!matchstate.cache[old] || matchstate.cache[old]->serial > matchstate.cache[i]->serial)
148 old = i;
154 unused = old;
/ast/src/lib/libast/misc/
H A Dstk.c192 Sfio_t *old = 0; local
194 old = stkinstall(stream,NiL);
197 if(old)
198 stkinstall(old,NiL);
265 Sfio_t *old; local
275 old = stkcur?stk2stream(stkcur):0;
291 return(old);
395 register unsigned char *old; local
402 old = stream->_data;
403 stream->_data = stream->_next = old
427 register unsigned char *old, *top; local
[all...]
/ast/src/lib/libpz/
H A Dpzsync.c40 Pzelt_t* old; local
59 old = elt;
61 dtdelete(pz->sort.order, old);
62 dtinsert(pz->sort.free, old);
/ast/src/lib/libtk/generic/
H A DtkConfig.c317 * The old value is recycled, if that is appropriate for
364 char *old, *new;
372 old = *((char **) ptr);
373 if (old != NULL) {
374 ckfree(old);
426 Pixmap new, old;
437 old = *((Pixmap *) ptr);
438 if (old != None) {
439 Tk_FreeBitmap(Tk_Display(tkwin), old);
445 Tk_3DBorder new, old;
361 char *old, *new; local
423 Pixmap new, old; local
436 Tk_FreeBitmap(Tk_Display(tkwin), old); local
442 Tk_3DBorder new, old; local
468 Tk_Cursor new, old; local
481 Tk_FreeCursor(Tk_Display(tkwin), old); local
[all...]
/ast/src/lib/libtk/library/
H A Dfocus.tcl166 set old [bind all <Enter>]
175 if {$old != ""} {
176 bind all <Enter> "$old; $script"
/ast/src/cmd/cs/
H A DMakefile25 tst-old tcp :SERVICE: CCFLAGS=-g tst-old.c
/ast/src/lib/libast/disc/
H A Dsfdcmore.c96 struct termios old; local
105 tcgetattr(rfd, &old);
106 tty = old;
113 if (c == old.c_cc[VEOF])
115 else if (c == old.c_cc[VINTR])
117 else if (c == old.c_cc[VQUIT])
124 tcsetattr(rfd, TCSADRAIN, &old);
/ast/src/cmd/nmake/
H A Dppcc.sh25 *x*:[0123456789]*) : bash set -x is broken :; set +ex; old=1 ;;
26 *) old= ;;
138 *O*) old=1 ;;
173 case $old in
176 *) old=1 ;;
180 case $old:$RANDOM in
H A Dread.c262 int old; local
277 old = 0;
306 old = 1;
313 old = preprocess = 0;
324 old = 0;
329 old = 0;
359 old = 0;
372 if (old)
/ast/lib/package/
H A Dpackage.mk257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix)
258 old.new.binary = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
259 old.new.runtime = $(PACKAGEDIR)/$(name)-run.$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
502 old.version := $(V)
503 old.source := $(I)
504 if "$(old.version)" >= "$(version)"
505 error 3 $(name): previous base $(old
[all...]
/ast/src/cmd/INIT/
H A Dpackage.mk257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix)
258 old.new.binary = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
259 old.new.runtime = $(PACKAGEDIR)/$(name)-run.$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
502 old.version := $(V)
503 old.source := $(I)
504 if "$(old.version)" >= "$(version)"
505 error 3 $(name): previous base $(old
[all...]
/ast/src/cmd/3d/
H A Dmap.c391 message((-2, "mount: old fs=%s map=%-*s arg=%-*s op=%-*s", fs->special, map->keysize, map->key, arglen, arg, ov ? (oe - ov) : 6, ov));
487 register Map_t* old; local
551 old = search(tab, from, fromsize, NiL, *to ? 0 : T_DELETE);
559 if (old)
561 if (!(old->valsize & T_SIZE))
562 free(old->val);
563 if ((old->valsize = tosize) & T_SIZE)
564 old->val = (char*)to;
566 old->val = strcpy(newof(0, char, strlen(to), 1), to);
571 else if (old)
[all...]

Completed in 48 milliseconds

123