Searched refs:rvalue (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/proxy/
H A Dajp.h261 * @param rvalue Pointer where value will be returned
264 apr_status_t ajp_msg_get_uint32(ajp_msg_t *msg, apr_uint32_t *rvalue);
270 * @param rvalue Pointer where value will be returned
273 apr_status_t ajp_msg_get_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue);
280 * @param rvalue Pointer where value will be returned
283 apr_status_t ajp_msg_peek_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue);
289 * @param rvalue Pointer where value will be returned
292 apr_status_t ajp_msg_get_uint8(ajp_msg_t *msg, apr_byte_t *rvalue);
299 * @param rvalue Pointer where value will be returned
302 apr_status_t ajp_msg_peek_uint8(ajp_msg_t *msg, apr_byte_t *rvalue);
[all...]
H A Dajp_msg.c389 * @param rvalue Pointer where value will be returned
392 apr_status_t ajp_msg_get_uint32(ajp_msg_t *msg, apr_uint32_t *rvalue) argument
405 *rvalue = value;
414 * @param rvalue Pointer where value will be returned
417 apr_status_t ajp_msg_get_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue) argument
428 *rvalue = value;
437 * @param rvalue Pointer where value will be returned
440 apr_status_t ajp_msg_peek_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue) argument
451 *rvalue = value;
460 * @param rvalue Pointe
463 ajp_msg_peek_uint8(ajp_msg_t *msg, apr_byte_t *rvalue) argument
480 ajp_msg_get_uint8(ajp_msg_t *msg, apr_byte_t *rvalue) argument
499 ajp_msg_get_string(ajp_msg_t *msg, const char **rvalue) argument
528 ajp_msg_get_bytes(ajp_msg_t *msg, apr_byte_t **rvalue, apr_size_t *rvalue_len) argument
[all...]
/httpd/modules/loggers/
H A Dmod_log_config.c366 char *rvalue = r->user; local
368 if (rvalue == NULL) {
369 rvalue = "-";
371 else if (strlen(rvalue) == 0) {
372 rvalue = "\"\"";
375 rvalue = ap_escape_logitem(r->pool, rvalue);
378 return rvalue;

Completed in 237 milliseconds