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

/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_getstr.c82 char *oldstr; local
105 oldstr = str;
137 if (str > oldstr) {
138 str = WipeOut(win, y, x, oldstr, str, oldecho);
141 while (str > oldstr) {
142 str = WipeOut(win, y, x, oldstr, str, oldecho);
145 || (maxlen >= 0 && str - oldstr >= maxlen)) {
159 str = WipeOut(win, y, x, oldstr, str, oldecho);
201 T(("wgetnstr returns %s", _nc_visbuf(oldstr)));
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wstr.c93 wint_t *oldstr = str; local
157 if (tmpstr > oldstr) {
158 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
161 while (tmpstr > oldstr) {
162 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
167 } else if (maxlen >= 0 && tmpstr - oldstr >= maxlen) {
182 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, oldecho);
221 if (tmpstr == oldstr) {
228 T(("wgetn_wstr returns %s", _nc_viswibuf(oldstr)));
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dcase_file.cc1056 string oldstr(VdevGUIDString());
1083 oldstr = replaced.GUIDString();
1086 path, oldstr.c_str());
1100 "configuration data.", poolname, oldstr.c_str());
1111 "configuration data.", poolname, oldstr.c_str());
1120 retval = (zpool_vdev_attach(zhp, oldstr.c_str(), path, nvroot,
1124 poolname, oldstr.c_str(), path);
1127 poolname, oldstr.c_str(), libzfs_error_action(g_zfsHandle),
/freebsd-11-stable/usr.bin/sdiff/
H A Dsdiff.c910 static const char *oldstr = NULL; local
922 oldstr = *s;
936 if (oldstr != *s) {
938 oldstr = *s;
958 oldstr = *s;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dhash.c280 svn_string_t *oldstr = apr_hash_get(oldhash, item->key, item->klen);
282 if (oldstr && svn_string_compare(valstr, oldstr))
277 svn_string_t *oldstr = apr_hash_get(oldhash, item->key, item->klen); local
/freebsd-11-stable/usr.sbin/ppp/
H A Dcommand.c440 subst(char *tgt, const char *oldstr, const char *newstr) argument
446 if ((word = strstrword(tgt, oldstr)) == NULL)
450 loldstr = strlen(oldstr);
466 } while ((word = strstrword(word, oldstr)));
472 substip(char *tgt, const char *oldstr, struct in_addr ip) argument
474 return subst(tgt, oldstr, inet_ntoa(ip));
478 substlong(char *tgt, const char *oldstr, long l) argument
484 return subst(tgt, oldstr, buf);
488 substull(char *tgt, const char *oldstr, unsigned long long ull) argument
494 return subst(tgt, oldstr, bu
500 substipv6(char *tgt, const char *oldstr, const struct ncpaddr *ip) argument
507 substipv6prefix(char *tgt, const char *oldstr, const uint8_t *ipv6prefix) argument
[all...]
/freebsd-11-stable/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 99 milliseconds