Searched refs:oldstr (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dlib_getstr.c83 char *oldstr; local
106 oldstr = str;
138 if (str > oldstr) {
139 str = WipeOut(win, y, x, oldstr, str, oldecho);
142 while (str > oldstr) {
143 str = WipeOut(win, y, x, oldstr, str, oldecho);
146 || (maxlen >= 0 && str - oldstr >= maxlen)) {
160 str = WipeOut(win, y, x, oldstr, str, oldecho);
202 T(("wgetnstr returns %s", _nc_visbuf(oldstr)));
/freebsd-9.3-release/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wstr.c94 wint_t *oldstr = str; local
158 if (tmpstr > oldstr) {
159 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
162 while (tmpstr > oldstr) {
163 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
168 } else if (maxlen >= 0 && tmpstr - oldstr >= maxlen) {
183 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
222 if (tmpstr == oldstr) {
229 T(("wgetn_wstr returns %s", _nc_viswibuf(oldstr)));
/freebsd-9.3-release/usr.sbin/ppp/
H A Dcommand.c438 subst(char *tgt, const char *oldstr, const char *newstr) argument
444 if ((word = strstrword(tgt, oldstr)) == NULL)
448 loldstr = strlen(oldstr);
464 } while ((word = strstrword(word, oldstr)));
470 substip(char *tgt, const char *oldstr, struct in_addr ip) argument
472 return subst(tgt, oldstr, inet_ntoa(ip));
476 substlong(char *tgt, const char *oldstr, long l) argument
482 return subst(tgt, oldstr, buf);
486 substull(char *tgt, const char *oldstr, unsigned long long ull) argument
492 return subst(tgt, oldstr, bu
498 substipv6(char *tgt, const char *oldstr, const struct ncpaddr *ip) argument
505 substipv6prefix(char *tgt, const char *oldstr, const uint8_t *ipv6prefix) argument
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dmonitor.c69 static void monitor_printable_string (char *newstr, char *oldstr, int len);
174 string. Otherwize strlen(oldstr) is used. */
177 monitor_printable_string (char *newstr, char *oldstr, int len) argument
183 len = strlen (oldstr);
187 ch = oldstr[i];

Completed in 116 milliseconds