Searched refs:value (Results 1 - 25 of 61) sorted by relevance

123

/httpd/modules/dav/main/
H A Dstd_liveprop.c63 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 Dliveprop.c38 long value; local
45 value = (long)apr_hash_get(dav_liveprop_uris, uri, APR_HASH_KEY_STRING);
46 if (value != 0) {
H A Dprops.c54 ** 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/proxy/
H A Dajp_msg.c252 * 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...]
H A Dajp.h198 * Add an unsigned 32bits value to AJP Message
200 * @param msg AJP Message to get value from
201 * @param value value to add to AJP Message
204 apr_status_t ajp_msg_append_uint32(ajp_msg_t *msg, apr_uint32_t value);
207 * Add an unsigned 16bits value to AJP Message
209 * @param msg AJP Message to get value from
210 * @param value value to add to AJP Message
213 apr_status_t ajp_msg_append_uint16(ajp_msg_t *msg, apr_uint16_t value);
[all...]
H A Dajp_header.c288 "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...]
/httpd/modules/dav/fs/
H A Ddbm.c166 /* ### 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...]
H A Drepos.h61 dav_error * dav_dbm_store(dav_db *db, apr_datum_t key, apr_datum_t value);
/httpd/modules/mappers/
H A Dmod_imagemap.c319 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/include/
H A Dap_regkey.h71 * @param flags Or'ed value of:
115 * Win32 Only: Retrieve a registry value string from an open key.
116 * @param result The string value retrieved
117 * @param key The registry key to retrieve the value from
118 * @param valuename The named value to retrieve (pass "" for the default)
121 * if the registry value is set with AP_REG_EXPAND (REG_EXPAND_SZ), such
130 * Win32 Only: Store a registry value string into an open key.
131 * @param key The registry key to store the value into
132 * @param valuename The named value to store (pass "" for the default)
133 * @param value Th
[all...]
H A Dapreq.h83 * Set specified bit f in bitfield name to value
88 #define APREQ_FLAGS_SET(f, name, value) \
90 | ((name##_MASK & (value)) << name##_BIT)))
191 char *name; /**< value name */
194 char data[1]; /**< value data */
200 * @param v value to add
/httpd/modules/metadata/
H A Dmod_env.c112 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
H A Dmod_headers.c28 * Header action header value
29 * RequestHeader action header value
32 * set - set this header, replacing any old value
39 * edit - transform the header value according to a regexp
41 * Where action is unset, the third argument (value) should not be given.
93 hdr_set = 's', /* set (replace old value) */
94 hdr_append = 'm', /* append (merge into any old value) */
98 hdr_edit = 'r', /* change value by regexp, match once */
99 hdr_edit_r = 'R', /* change value by regexp, everymatch */
100 hdr_setifempty = 'i', /* set value i
428 header_inout_cmd(cmd_parms *cmd, void *indirconf, const char *action, const char *hdr, const char *value, const char *subs, const char *envclause) argument
634 process_regexp(header_entry *hdr, const char *value, request_rec *r) argument
[all...]
/httpd/os/win32/
H A Dap_regkey.c184 /* 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/modules/session/
H A Dmod_session.h78 * At the core of the session is a set of name value pairs making up the
82 * a remote_user value, or both.
88 apr_table_t *entries; /* key value pairs */
89 const char *encoded; /* the encoded version of the key value pairs */
146 * In the default implementation, the key value pairs are encoded using
147 * key value pairs separated by equals, in turn separated by ampersand,
159 * In the default implementation, the key value pairs are encoded using
160 * key value pairs separated by equals, in turn separated by ampersand,
172 (request_rec * r, session_rec * z, const char *key, const char **value));
174 (request_rec * r, session_rec * z, const char *key, const char *value));
[all...]
/httpd/modules/filters/
H A Dmod_include.c90 const char *value; member in struct:__anon156
101 int value; member in struct:parse_node
156 char *value; member in struct:arg_item
178 char quote; /* quote character value (or \0) */
295 current->token.value);
365 DEBUG_PRINTF(((ctx), " Found: %s (%s)\n", d__t->s, d__t->value)); \
377 (node)->token.value, ((node)->value) ? '1':'0'); \
383 (((node)->left->done) ? ((node)->left->value ?"1":"0") \
385 (((node)->right->done) ? ((node)->right->value
[all...]
/httpd/modules/ssl/
H A Dssl_util.c153 * 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;
H A Dssl_engine_ocsp.c36 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);
/httpd/support/
H A Dhttxt2dbm.c120 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);
H A Ddbmmanage.in46 groups or comment of - for update command clears the existing value
47 groups or comment of - for add and adduser commands is the empty value
272 my $value = getpass "New password:";
273 die "They don't match, sorry.\n" unless getpass("Re-type new password:") eq $value;
274 $crypted_pwd = cryptpw $value;
/httpd/modules/aaa/
H A Dmod_authn_dbm.c85 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
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c68 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/server/
H A Dapreq_cookie.c70 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...]
/httpd/modules/loggers/
H A Dmod_log_forensic.c159 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/ldap/
H A Dutil_ldap_cache.c241 return util_ald_hash_string(3, node->dn, node->attrib, node->value);
251 strcmp(na->value, nb->value) == 0);
262 !(node->value = util_ald_strdup(cache, n->value)) ||
284 util_ald_free(cache, node->value);
334 node->value,

Completed in 55 milliseconds

123