Searched defs:pair (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/session/ |
H A D | mod_session.c | 378 char *encoded, *pair; local 388 pair = apr_strtok(encoded, sep, &last); 389 while (pair && pair[0]) { 392 char *key = apr_strtok(pair, psep, &plast); 407 pair = apr_strtok(NULL, sep, &last);
|
/httpd/modules/aaa/ |
H A D | mod_auth_form.c | 625 ap_form_pair_t *pair = (ap_form_pair_t *) apr_array_pop(pairs); local 626 if (username && !strcmp(pair->name, username) && sent_user) { 627 apr_brigade_length(pair->value, 1, &len); 630 apr_brigade_flatten(pair->value, buffer, &size); 634 else if (password && !strcmp(pair->name, password) && sent_pw) { 635 apr_brigade_length(pair->value, 1, &len); 638 apr_brigade_flatten(pair->value, buffer, &size); 642 else if (location && !strcmp(pair->name, location) && sent_loc) { 643 apr_brigade_length(pair->value, 1, &len); 646 apr_brigade_flatten(pair [all...] |
/httpd/modules/lua/ |
H A D | lua_request.c | 394 ap_form_pair_t *pair = (ap_form_pair_t *) apr_array_pop(pairs); local 395 apr_brigade_length(pair->value, 1, &len); 398 apr_brigade_flatten(pair->value, buffer, &size); 400 req_aprtable2luatable_cb(L, pair->name, buffer);
|
/httpd/server/ |
H A D | util.c | 1172 case '\\': in_qpair = 1; /* quoted-pair */ 1227 * quoted-string or quoted-pair. 1352 * quoted-string or quoted-pair. 2597 ap_form_pair_t *pair = NULL; local 2696 if (pair) { 2699 APR_BRIGADE_INSERT_TAIL(pair->value, b); 2702 pair = NULL; 2711 pair = (ap_form_pair_t *) apr_array_push(pairs); 2712 pair->name = apr_pstrdup(r->pool, buffer); 2713 pair [all...] |
Completed in 32 milliseconds