Home
last modified time | relevance | path

Searched refs:SH_FUNEVAL (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/include/
H A Ddefs.h389 #define SH_FUNEVAL 0x10000 /* for sh_eval for function load */ macro
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dxec.c603 t = (Shnode_t*)sh_parse(shp,iop,(mode&(SH_READEVAL|SH_FUNEVAL))?mode&SH_FUNEVAL:SH_NL); in sh_eval()
604 if(!(mode&SH_FUNEVAL) || !sfreserve(iop,0,0)) in sh_eval()
609 mode &= ~SH_FUNEVAL; in sh_eval()
614 if((mode&~SH_FUNEVAL) && shp->gd->hist_ptr) in sh_eval()
619 sh_exec(t,sh_isstate(SH_ERREXIT)|sh_isstate(SH_NOFORK)|(mode&~SH_FUNEVAL)); in sh_eval()
620 if(!(mode&SH_FUNEVAL)) in sh_eval()
H A Dparse.c339 if(shp->binscript && (sffileno(iop)==shp->infd || (flag&SH_FUNEVAL))) in sh_parse()
370 if(sffileno(iop)==shp->infd || (flag&SH_FUNEVAL)) in sh_parse()
387 flag &= ~SH_FUNEVAL; in sh_parse()
H A Dpath.c628 sh_eval(sfnew(NIL(Sfio_t*),buff,IOBSIZE,fno,SF_READ),SH_FUNEVAL); in funload()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/bltins/
H A Dmisc.c295 sh_eval(iop,sh_isstate(SH_PROFILE)?SH_FUNEVAL:0); in b_dot_cmd()