Lines Matching defs:elts
504 const apr_table_entry_t *elts = (const apr_table_entry_t *)arr->elts;
508 if (!strncmp(elts[i].key, "HTTP_", 5)) {
509 len += strlen(elts[i].key) + strlen(elts[i].val) + 3;
520 if (!strncmp(elts[i].key, "HTTP_", 5)) {
521 strcpy(buf_data, elts[i].key);
522 buf_data += strlen(elts[i].key);
524 strcpy(buf_data, elts[i].val);
525 buf_data += strlen(elts[i].val);
542 const apr_table_entry_t *elts = (const apr_table_entry_t *)arr->elts;
546 len += strlen(elts[i].key) + strlen(elts[i].val) + 4;
556 strcpy(buf_data, elts[i].key);
557 buf_data += strlen(elts[i].key);
560 strcpy(buf_data, elts[i].val);
561 buf_data += strlen(elts[i].val);