Home
last modified time | relevance | path

Searched refs:APERM (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/bin/ksh/
H A Dmail.c104 afree((void *)mbox.mb_msg, APERM);
106 afree((void *)mbox.mb_path, APERM);
108 mbox.mb_path = str_save(p, APERM);
126 mval = str_save(mptoparse, APERM);
166 afree((void *)mbp->mb_path, APERM);
167 afree((void *)mbp, APERM);
179 mbp = (mbox_t *)alloc(sizeof(mbox_t), APERM);
H A Dmain.c139 tinit(&taliases, APERM, 0); in main()
140 tinit(&aliases, APERM, 0); in main()
141 tinit(&homedirs, APERM, 0); in main()
147 tinit(&builtins, APERM, 64); /* must be 2^n (currently 40 builtins) */ in main()
162 confstr(_CS_PATH, new = alloc(len + 1, APERM), len + 1); in main()
H A Dtrap.c267 afree(trapstr, APERM);
312 afree(p->trap, APERM);
315 p->trap = str_save(s, APERM);
H A Dvi.c756 nbuf = alloc(nlen + 1 + olen, APERM);
761 afree(macro.buf, APERM);
1395 new = (struct edstate *)alloc(sizeof(struct edstate), APERM);
1396 new->cbuf = alloc(old->cbufsize, APERM);
1420 afree(old->cbuf, APERM);
1421 afree((char *)old, APERM);
1453 wbuf[0] = aresize(wbuf[0], wbuf_len, APERM);
1454 wbuf[1] = aresize(wbuf[1], wbuf_len, APERM);
2177 afree(macro.buf, APERM); in vi_macro_reset()
H A Dc_ksh.c971 afree((void*)ap->val.s, APERM);
977 ap->val.s = str_save(newval, APERM);
1027 afree((void*)ap->val.s, APERM);
1038 afree((void*)ap->val.s, APERM);
H A Dpath.c199 current_wd = aresize(current_wd, current_wd_size = len, APERM);
H A Dsh.h198 #define APERM &aperm macro
H A Dexec.c943 afree(tp->val.s, APERM);
969 tp->val.s = str_save(npath, APERM);
1006 afree(tp->val.s, APERM);
H A Djobs.c1646 newj = (Job *) alloc(sizeof(Job), APERM); in new_job()
1673 p = (Proc *) alloc(sizeof(Proc), APERM); in new_proc()
H A Dsyn.c695 tinit(&keywords, APERM, 32); /* must be 2^n (currently 20 keywords) */ in initkeywords()