Lines Matching defs:buff
221 char *buff, apr_size_t bufflen, int *eos)
225 char *pos = buff;
231 buff[0] = 0;
269 /* concat strings until buff is full - then throw the data away */
270 if (len > ((bufflen-1)-(pos-buff))) {
271 len = (bufflen-1)-(pos-buff);
385 char buff[5];
406 memcpy(buff, response, 3);
407 buff[3] = ' ';
413 } while (memcmp(response, buff, 4) != 0);