/httpd/modules/dav/main/ |
H A D | liveprop.c | 38 long value; local 45 value = (long)apr_hash_get(dav_liveprop_uris, uri, APR_HASH_KEY_STRING); 46 if (value != 0) {
|
H A D | std_liveprop.c | 63 const char *value = NULL; local 92 value = apr_pstrcat(p, value ? value : "", 95 value = apr_pstrcat(p, value ? value : "", 105 value = apr_pstrcat(p, value ? value [all...] |
H A D | props.c | 54 ** The first string is the xml:lang value for the property. An empty 55 ** string signifies that a lang value was not in context for the value. 56 ** The second string is the property value itself. 69 ** within the property value will be entered into the table (and 83 ** that case, we must bind all property value elements to new namespace 89 ** property value can contain ONLY XML elements and CDATA. PI and comment 100 ** <propname1>value</propname1> 101 ** <propname2>value</propname1> 105 ** associated with the <propname1> element. The property value i 340 const char *value = NULL; local [all...] |
/httpd/modules/aaa/ |
H A D | mod_authn_dbm.c | 85 const char *user, char **value, 106 *value = NULL; 109 *value = apr_pstrmemdup(pool, val.dptr, val.dsize); 84 fetch_dbm_value(const char *dbmtype, const char *dbmfile, const char *user, char **value, apr_pool_t *pool) argument
|
H A D | mod_authnz_ldap.c | 1144 char *w, *value; local 1203 value = ap_getword_conf(r->pool, &t); 1206 "auth_ldap authorize: checking attribute %s has value %s", 1207 w, value); 1208 result = util_ldap_cache_compare(r, ldc, sec->url, req->dn, w, value); 1593 return "Unrecognized value for AuthLDAPDereferenceAliases directive"; 1759 "the REMOTE_USER variable will contain whatever value the remote user sent."),
|
/httpd/modules/filters/ |
H A D | mod_reflector.c | 33 static int header_do(void *dummy, const char *key, const char *value) argument 40 apr_table_setn(r->headers_out, value, payload);
|
/httpd/modules/metadata/ |
H A D | mod_env.c | 112 const char *name, const char *value) 116 /* name is mandatory, value is optional. no value means 119 apr_table_setn(sconf->vars, name, value ? value : ""); 144 OR_FILEINFO, "an environment variable name and optional value to pass to CGI."), 111 add_env_module_vars_set(cmd_parms *cmd, void *sconf_, const char *name, const char *value) argument
|
/httpd/modules/ssl/ |
H A D | ssl_engine_ocsp.c | 36 ACCESS_DESCRIPTION *value = sk_ACCESS_DESCRIPTION_value(values, j); local 39 if (OBJ_obj2nid(value->method) == NID_ad_OCSP 40 && value->location->type == GEN_URI) { 42 (char *)value->location->d.uniformResourceIdentifier->data);
|
H A D | ssl_util.c | 153 * if a value for this key already exists, 176 return asn1->cpData; /* caller will assign a value to this */ 241 struct CRYPTO_dynlock_value *value; local 254 value = apr_palloc(p, sizeof(struct CRYPTO_dynlock_value)); 255 value->pool = p; 258 value->file = apr_pstrdup(p, file); 259 value->line = line; 260 rv = apr_thread_mutex_create(&(value->mutex), APR_THREAD_MUTEX_DEFAULT, 268 return value;
|
/httpd/os/win32/ |
H A D | ap_regkey.c | 184 /* Retrieve a registry string value, and explode any envvars 204 /* Read to NULL buffer to determine value size */ 214 /* Read value based on size query above */ 250 /* Read to NULL buffer to determine value size */ 260 /* Read value based on size query above */ 285 const char *value, 289 /* Retrieve a registry string value, and explode any envvars 293 apr_size_t size = strlen(value) + 1; 313 rv = apr_conv_utf8_to_ucs2(value, &size, wvalue, &wvallen); 332 rc = RegSetValueEx(key->hkey, valuename, 0, type, value, (DWOR 452 void *value; local 535 const void *value; local [all...] |
/httpd/support/ |
H A D | httxt2dbm.c | 120 char *c, *value; local 133 /* no value. solid line of data. */ 149 value = c; 155 dbmval.dptr = apr_pstrmemdup(p, value, c - value); 156 dbmval.dsize = (c - value);
|
/httpd/modules/ldap/ |
H A D | util_ldap_cache.h | 124 * value as the key. 127 const char *dn; /* DN, attrib and value combine to be the key */ 129 const char *value; member in struct:util_compare_node_t
|
/httpd/modules/loggers/ |
H A D | mod_log_forensic.c | 159 static int count_headers(void *h_, const char *key, const char *value) argument 163 h->count += count_string(key)+count_string(value)+2; 168 static int log_headers(void *h_, const char *key, const char *value) argument 177 h->pos = log_escape(h->pos, h->end, value);
|
/httpd/modules/lua/ |
H A D | lua_config.c | 123 const char *value = lua_tostring(L, -1); local 124 handler->function_name = apr_pstrdup(cfg->pool, value);
|
/httpd/modules/proxy/ |
H A D | ajp_header.c | 288 "Error appending the header value"); 596 const char *value; local 624 rc = ajp_msg_get_string(msg, &value); 628 "Null header value"); 634 value = ap_proxy_cookie_reverse_map(r, dconf, value); 643 value = ap_proxy_location_reverse_map(r, dconf, value); 646 ap_xlate_proto_from_ascii(value, strlen(value)); [all...] |
H A D | ajp_msg.c | 252 * Add an unsigned 32bits value to AJP Message 254 * @param msg AJP Message to get value from 255 * @param value value to add to AJP Message 258 apr_status_t ajp_msg_append_uint32(ajp_msg_t *msg, apr_uint32_t value) argument 266 msg->buf[len] = (apr_byte_t)((value >> 24) & 0xFF); 267 msg->buf[len + 1] = (apr_byte_t)((value >> 16) & 0xFF); 268 msg->buf[len + 2] = (apr_byte_t)((value >> 8) & 0xFF); 269 msg->buf[len + 3] = (apr_byte_t)(value & 0xFF); 277 * Add an unsigned 16bits value t 283 ajp_msg_append_uint16(ajp_msg_t *msg, apr_uint16_t value) argument 306 ajp_msg_append_uint8(ajp_msg_t *msg, apr_byte_t value) argument 329 ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, int convert) argument 367 ajp_msg_append_bytes(ajp_msg_t *msg, const apr_byte_t *value, apr_size_t valuelen) argument 394 apr_uint32_t value; local 419 apr_uint16_t value; local 442 apr_uint16_t value; local [all...] |
/httpd/server/ |
H A D | apreq_cookie.c | 70 case 'v': /* version; value is not an attr */ 71 if (alen == 5 && strncasecmp(attr,"value", 5) == 0) 137 const char *value, 150 if (vlen > 0 && value != NULL) 151 memcpy(v->data, value, vlen); 268 /* value is not wrapped in quotes */ 329 const char *name, *value; local 361 status = get_pair(p, &hdr, &name, &nlen, &value, &vlen, 1); 367 status = apreq_cookie_attr(p, c, name, nlen, value, vlen); 390 status = get_pair(p, &hdr, &name, &nlen, &value, 134 apreq_cookie_make(apr_pool_t *p, const char *name, const apr_size_t nlen, const char *value, const apr_size_t vlen) argument [all...] |
H A D | mpm_common.c | 396 long value; local 403 value = strtol(arg, NULL, 10); 404 if (value < 0 || errno == ERANGE) 405 return apr_pstrcat(cmd->pool, "Invalid MaxMemFree value: ", 408 ap_max_mem_free = (apr_uint32_t)value * 1024; 416 long value; local 423 value = strtol(arg, NULL, 10); 424 if (value < 0 || errno == ERANGE) 425 return apr_pstrcat(cmd->pool, "Invalid ThreadStackSize value: ", 428 ap_thread_stacksize = (apr_size_t)value; [all...] |
H A D | util_script.c | 824 char *value; local 833 value = strchr(key, '='); 834 if (value) { 835 *value = '\0'; /* Split the string in two */ 836 value++; /* Skip passed the = */ 839 value = "1"; 842 ap_unescape_url(value); 843 apr_table_set(parms, key, value);
|
/httpd/modules/proxy/balancers/ |
H A D | mod_lbmethod_heartbeat.c | 68 char *value; local 73 value = strchr(key, '='); 74 if (value) { 75 *value = '\0'; /* Split the string in two */ 76 value++; /* Skip passed the = */ 79 value = "1"; 82 ap_unescape_url(value); 83 apr_table_set(parms, key, value); 86 "Found query arg: %s = %s", key, value);
|
/httpd/modules/session/ |
H A D | mod_session.c | 243 * Get a particular value from the session. 245 * @param z The current session. If this value is NULL, the session will be 249 * @param value The buffer to write the value to. 252 const char *key, const char **value) 262 *value = apr_table_get(z->entries, key); 269 * Set a particular value to the session. 274 * @param z The current session. If this value is NULL, the session will be 277 * @param key The key to set. The existing key value will be replaced. 278 * @param value Th 251 ap_session_get(request_rec * r, session_rec * z, const char *key, const char **value) argument 280 ap_session_set(request_rec * r, session_rec * z, const char *key, const char *value) argument [all...] |
/httpd/modules/cluster/ |
H A D | mod_heartmonitor.c | 134 char *value; local 146 value = strchr(key, '='); 147 if (value) { 148 *value = '\0'; /* Split the string in two */ 149 value++; /* Skip passed the = */ 152 value = "1"; 155 ap_unescape_url(value); 156 apr_table_set(parms, key, value); 159 "Found query arg: %s = %s", key, value);
|
/httpd/modules/dav/fs/ |
H A D | dbm.c | 166 /* ### should test this result value... */ 197 /* no key could be created (namespace not known) => no value */ 207 dav_error * dav_dbm_store(dav_db *db, apr_datum_t key, apr_datum_t value) argument 209 apr_status_t status = apr_dbm_store(db->file, key, value); 272 ** This introduced the xml:lang value into the property value's 289 apr_datum_t value; member in struct:dav_deadprop_rollback 300 ** value must be copied or no longer used if this function is 345 const char *name, const char *value, 349 const char *lang = value; 344 dav_append_prop(apr_pool_t *pool, const char *name, const char *value, apr_text_header *phdr) argument 393 apr_datum_t value = { 0 }; local 487 apr_datum_t value; local 544 apr_datum_t value; local 615 apr_datum_t value; local 721 apr_datum_t value; local [all...] |
/httpd/modules/mappers/ |
H A D | mod_imagemap.c | 319 static const char *imap_url(request_rec *r, const char *base, const char *value) argument 321 /* translates a value into a URL. */ 329 if (!strcasecmp(value, "map") || !strcasecmp(value, "menu")) { 333 if (!strcasecmp(value, "nocontent") || !strcasecmp(value, "error")) { 334 return apr_pstrdup(r->pool, value); /* these are handled elsewhere, 338 if (!strcasecmp(value, "referer")) { 344 /* XXX: This used to do *value = '\0'; ... which is totally bogus 345 * because it hammers the passed in value, whic 581 char *value; local [all...] |
/httpd/modules/arch/netware/ |
H A D | mod_nw_ssl.c | 855 static int compare_ipports(void *rec, const char *key, const char *value) argument 859 if (value && 860 ((strcmp(value, "0.0.0.0") == 0) || (strcmp(value, c->local_ip) == 0)))
|