Home | History | Annotate | Download | only in target

Lines Matching refs:bufptr

71   gdb_byte *bufptr;		/* Pointer to next available byte in
86 bufptr = buffer->get ();
88 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode)
91 bufptr += nfetch * width;
119 bufptr = buffer->get () + bufsize * width;
123 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode)
128 that bufptr is explicitly left pointing at the next character
132 limit = bufptr + nfetch * width;
133 while (bufptr < limit)
138 if (bufptr[i] != 0)
142 bufptr += width;
154 && bufptr - buffer->get () < fetchlimit * width /* no overrun */
161 bufptr = buffer->get ();
165 /* bufptr and addr now point immediately beyond the last byte which we
167 *bytes_read = bufptr - buffer->get ();