Lines Matching defs:pos
225 char *pos = buff;
270 if (len > ((bufflen-1)-(pos-buff))) {
271 len = (bufflen-1)-(pos-buff);
274 memcpy(pos, response, len);
275 pos += len;
280 *pos = '\0';
608 char *pos, *response;
620 pos = memchr(response, APR_ASCII_LF, len);
621 if (pos != NULL) {
622 if ((response + len) != (pos + 1)) {
623 len = pos - response + 1;
624 apr_bucket_split(e, pos - response + 1);