Searched defs:values (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/http/
H A Dhttp_filters.c673 * the passed field values into a single array that will be further
680 apr_array_header_t *values; local
686 values = (apr_array_header_t *)d;
688 e = apr_pstrdup(values->pool, val);
707 /* Now add it to values if it isn't already represented.
710 for (i = 0, strpp = (char **) values->elts; i < values->nelts;
716 if (i == values->nelts) { /* if not found */
717 *(char **)apr_array_push(values) = start;
736 * its comma-separated fieldname values, an
[all...]
/httpd/modules/ldap/
H A Dutil_ldap.c1281 * Get values for the provided sub-group attributes.
1287 char **values; local
1290 /* Get *all* matching "member" values from this group. */
1291 values = ldap_get_values(ldc->ldap, entry, subgroupAttrs[indx]);
1293 if (values) {
1300 while (values[val_index]) {
1307 values[val_index],
1319 *newgrp = apr_pstrdup(r->pool, values[val_index]);
1323 ldap_value_free(values);
1833 * Get values fo
1842 char **values; local
2051 char **values; local
[all...]
/httpd/modules/lua/
H A Dmod_lua.c237 static const char* ap_lua_interpolate_string(apr_pool_t* pool, const char* string, const char** values) argument
254 ret = apr_pstrcat(pool, ret, stringBetween, values[v], NULL);
776 const char *values[10]; local
794 values[i] = apr_pstrndup(r->pool, r->uri+match[i].rm_so, match[i].rm_eo - match[i].rm_so);
796 else values[i] = "";
798 filename = ap_lua_interpolate_string(r->pool, hook_spec->file_name, values);
799 function_name = ap_lua_interpolate_string(r->pool, hook_spec->function_name, values);
1659 "values are: 'once', 'request', 'conn'"

Completed in 26 milliseconds