Searched refs:breakcnt (Results 1 - 9 of 9) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libshell/common/bltins/
H A Dcflow.c109 shp->st.execbrk = shp->st.breakcnt = n;
110 if(shp->st.breakcnt > shp->st.loopcnt)
111 shp->st.breakcnt = shp->st.loopcnt;
113 shp->st.breakcnt = -shp->st.breakcnt;
/opensolaris-onvv-gate/usr/src/cmd/sh/
H A Dbltin.c112 execbrk = breakcnt = 1;
114 breakcnt = stoi(a1);
115 if (breakcnt > loopcnt)
116 breakcnt = loopcnt;
118 breakcnt = -breakcnt;
125 execbrk = breakcnt = 1;
127 breakcnt = stoi(a1);
128 if (breakcnt > loopcnt)
129 breakcnt
[all...]
H A Ddefs.c92 int breakcnt; variable
H A Dxec.c428 if (breakcnt < 0)
429 execbrk = (++breakcnt != 0);
431 if (breakcnt > 0)
432 execbrk = (--breakcnt != 0);
451 if (breakcnt < 0)
452 execbrk = (++breakcnt != 0);
454 if (breakcnt > 0)
455 execbrk = (--breakcnt != 0);
H A Derror.c105 execbrk = breakcnt = funcnt = 0;
H A Ddefs.h412 extern int breakcnt;
/opensolaris-onvv-gate/usr/src/lib/libshell/common/include/
H A Ddefs.h84 int breakcnt; member in struct:sh_scoped
/opensolaris-onvv-gate/usr/src/lib/libshell/common/sh/
H A Dxec.c1691 if(shp->st.breakcnt<0)
1692 shp->st.execbrk = (++shp->st.breakcnt !=0);
1702 if(shp->st.breakcnt>0)
1703 shp->st.execbrk = (--shp->st.breakcnt !=0);
1761 if(shp->st.breakcnt<0)
1762 shp->st.execbrk = (++shp->st.breakcnt !=0);
1782 if(shp->st.breakcnt>0)
1783 shp->st.execbrk = (--shp->st.breakcnt !=0);
H A Dmain.c443 shp->st.execbrk = shp->st.breakcnt = 0;

Completed in 106 milliseconds