/src/bin/ksh/ |
alloc.c | 29 * area-based allocation built on malloc/free 41 Area * 42 ainit(Area *ap) 49 afreeall(Area *ap) 65 alloc(size_t size, Area *ap) 84 aresize(void *ptr, size_t size, Area *ap) 110 afree(void *ptr, Area *ap)
|
proto.h | 12 Area * ainit ARGS((Area *)); 13 void afreeall ARGS((Area *)); 14 void * alloc ARGS((size_t, Area *)); 15 void * aresize ARGS((void *, size_t, Area *)); 16 void afree ARGS((void *, Area *)); 138 struct temp *maketemp ARGS((Area *, Temp_type, struct temp **)); 157 Source * pushs ARGS((int, Area *)); 176 void aerror ARGS((Area *, const char *)) 182 char * str_save ARGS((const char *, Area *)); [all...] |
table.h | 8 Area *areap; /* area to allocate entries */ 17 Area *areap; /* area to allocate from */ 109 Area area; /* area to allocate things */ member in struct:block
|
lex.h | 28 Area *areap;
|
sh.h | 191 * Area-based allocation built on malloc/free 193 typedef struct Area { 195 } Area; 197 EXTERN Area aperm; /* permanent object space */ 199 #define ATEMP &e->area 217 Area area; /* temporary allocation area */ member in struct:env
|
tree.c | 23 static struct ioword **iocopy ARGS((struct ioword **iow, Area *ap)); 24 static void iofree ARGS((struct ioword **iow, Area *ap)); 480 Area *ap; 531 Area *ap; 667 Area *ap; 702 Area *ap; 736 Area *ap;
|
expand.h | 13 Area *areap; /* area to allocate/free from */ 19 #define Xinit(xs, xp, length, area) do { \ 21 (xs).areap = (area); \
|
shf.h | 58 Area *areap; /* area shf/buf were allocated in */
|
table.c | 35 Area *ap;
|
io.c | 445 Area *ap;
|
lex.c | 862 Area *areap; 1116 Area *saved_atemp;
|
misc.c | 88 Area *ap; 109 Area *ap;
|
main.c | 116 ainit(&aperm); /* initialize permanent Area */ 121 ainit(&env.area); 661 ainit(&ep->area); 735 afree(ep->savefd, &ep->area); 752 /* remove temp files and free ATEMP Area */ 758 afreeall(&e->area); 786 Area *ap;
|
emacs.c | 28 static Area aedit; 29 #define AEDIT &aedit /* area for kill ring and macro defns */ 137 static char * x_mapin ARGS((const char *cp, Area *area)); 1321 x_mapin(cp, area) 1323 Area *area; 1327 op = new = str_save(cp, area);
|