Home
last modified time | relevance | path

Searched refs:histsize (Results 1 – 7 of 7) sorted by relevance

/titanic_41/usr/src/lib/libshell/common/include/
H A Dhistory.h39 int histsize; /* number of accessible history lines */ member
56 #define hist_min(hp) ((_Hist=((int)((hp)->histind-(hp)->histsize)))>=0?_Hist:0)
/titanic_41/usr/src/lib/libshell/amd64/include/ast/
H A Dhistory.h48 int histsize; /* number of accessible history lines */ member
65 #define hist_min(hp) ((_Hist=((int)((hp)->histind-(hp)->histsize)))>=0?_Hist:0)
/titanic_41/usr/src/lib/libshell/i386/include/ast/
H A Dhistory.h48 int histsize; /* number of accessible history lines */ member
65 #define hist_min(hp) ((_Hist=((int)((hp)->histind-(hp)->histsize)))>=0?_Hist:0)
/titanic_41/usr/src/lib/libshell/sparc/include/ast/
H A Dhistory.h48 int histsize; /* number of accessible history lines */ member
65 #define hist_min(hp) ((_Hist=((int)((hp)->histind-(hp)->histsize)))>=0?_Hist:0)
/titanic_41/usr/src/lib/libshell/sparcv9/include/ast/
H A Dhistory.h48 int histsize; /* number of accessible history lines */ member
65 #define hist_min(hp) ((_Hist=((int)((hp)->histind-(hp)->histsize)))>=0?_Hist:0)
/titanic_41/usr/src/lib/passwdutil/
H A Dfiles_attr.c427 int histsize; in files_checkhistory() local
430 if ((histsize = def_getint("HISTORY=", DEFHISTORY)) == 0) { in files_checkhistory()
436 debug("files_checkhistory: histsize = %d", histsize); in files_checkhistory()
437 if (histsize > MAXHISTORY) in files_checkhistory()
438 histsize = MAXHISTORY; in files_checkhistory()
444 while ((histsize-- > 0) && in files_checkhistory()
1142 int histsize; in files_update_history() local
1151 if ((histsize = def_getint("HISTORY=", DEFHISTORY)) == 0) { in files_update_history()
1157 histsize); in files_update_history()
1159 if (histsize > MAXHISTORY) in files_update_history()
[all …]
/titanic_41/usr/src/lib/libshell/common/edit/
H A Dhistory.c317 hp->histsize = maxlines; in sh_histinit()
948 index2 -= hp->histsize; in hist_find()
1131 register int least = (int)hp->histind-hp->histsize; in hist_locate()