/httpd/support/ |
H A D | checkgid.c | 26 * succeed; running it as any other user may result in a false 50 int result; local 58 result = 0; 82 result = -1; 96 result = -1; 103 return result;
|
/httpd/modules/proxy/ |
H A D | ajp_utils.c | 31 apr_byte_t result; local 83 rv = ajp_msg_get_uint8(msg, &result); 89 if (result != CMD_AJP13_CPONG) { 92 result);
|
H A D | ajp_header.c | 709 apr_byte_t result; local 736 rc = ajp_msg_peek_uint8(*msg, &result); 744 ajp_type_str(result), result); 751 apr_byte_t result; local 752 ajp_msg_peek_uint8(msg, &result); 755 ajp_type_str(result), result); 756 return (int) result; 763 apr_byte_t result; local 786 apr_byte_t result; local 832 apr_byte_t result; local [all...] |
H A D | mod_proxy_ajp.c | 168 int result; local 362 result = ajp_parse_type(r, conn->data); 377 switch (result) { 585 if ((result == CMD_AJP13_END_RESPONSE) 598 result = ajp_parse_type(r, conn->data);
|
/httpd/server/ |
H A D | util_xml.c | 45 int result = HTTP_BAD_REQUEST; local 62 result = ap_map_http_request_error(status, HTTP_BAD_REQUEST); 92 result = HTTP_REQUEST_ENTITY_TOO_LARGE; 139 return result;
|
H A D | util_md5.c | 57 char result[2 * APR_MD5_DIGESTSIZE + 1]; local 70 ap_bin2hex(hash, APR_MD5_DIGESTSIZE, result); 72 return apr_pstrndup(p, result, APR_MD5_DIGESTSIZE*2);
|
/httpd/server/mpm/simple/ |
H A D | simple_api.c | 44 static int simple_query(int query_code, int *result, apr_status_t *rv) argument 51 *result = AP_MPMQ_STATIC; 54 *result = AP_MPMQ_DYNAMIC; 57 *result = 1; 60 *result = sc->procmgr.proc_count; 63 *result = sc->procmgr.proc_count; 66 *result = sc->procmgr.thread_count; 69 *result = sc->procmgr.thread_count; 72 *result = sc->procmgr.proc_count; 75 *result [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_ocsp.c | 27 char *result = NULL; local 35 for (j = 0; j < sk_ACCESS_DESCRIPTION_num(values) && !result; j++) { 41 result = apr_pstrdup(pool, 48 return result; 128 * V_OCSP_CERTSTATUS_* result code. */ 232 const char *result = local 239 result, status, reason);
|
H A D | ssl_util_ssl.c | 196 char *result = NULL; local 207 result = apr_palloc(p, len+1); 208 len = BIO_read(bio, result, len); 209 result[len] = NUL; 212 return result; 218 char *result = SSL_ASN1_STRING_to_utf8(p, X509_NAME_ENTRY_get_data(xsne)); local 219 ap_xlate_proto_from_ascii(result, len); 220 return result; 229 char *result = NULL; local 238 result [all...] |
H A D | ssl_ct_util.c | 614 apr_size_t *result) 621 *result = val; 613 read_length_prefix(const unsigned char **mem, apr_size_t *avail, apr_size_t *result) argument
|
/httpd/modules/dav/main/ |
H A D | util_lock.c | 373 /* If no lock database, return empty result */ 500 int result; local 528 /* ### map result to something nice; log an error */ 558 result = err == NULL ? OK : err->status; 562 return result; 609 /* ### map result to something nice; log an error */
|
H A D | props.c | 578 dav_get_props_result result = { 0 }; local 592 /* initialize the result with some start tags... */ 687 * terminate the result */ 695 result.propstats = hdr.first; 696 result.xmlns = hdr_ns.first; 697 return result; 709 dav_get_props_result result = { 0 }; local 717 /* we will ALWAYS provide a "good" result, even if it is EMPTY */ 862 result.propstats = hdr_good.first; 874 result [all...] |
H A D | util.c | 190 dav_lookup_result result = { 0 }; local 199 result.err.status = HTTP_BAD_REQUEST; 200 result.err.desc = "Invalid syntax in Destination URI."; 201 return result; 206 result.err.status = HTTP_BAD_REQUEST; 207 result.err.desc = "Destination URI must be an absolute URI."; 208 return result; 213 result.err.status = HTTP_BAD_REQUEST; 214 result.err.desc = 217 return result; 1503 int result; local [all...] |
/httpd/modules/ldap/ |
H A D | util_ldap_cache.c | 268 node->result = n->result; 298 if (node->result == LDAP_COMPARE_TRUE) { 301 else if (node->result == LDAP_COMPARE_FALSE) { 305 cmp_result = apr_itoa(r->pool, node->result); 409 apr_status_t result = apr_shm_destroy(st->cache_shm); local 411 return result; 420 apr_status_t result; local 431 result = apr_shm_create(&st->cache_shm, size, st->cache_file, st->pool); 432 if (result ! [all...] |
H A D | util_ldap_cache.h | 131 int result; member in struct:util_compare_node_t
|
/httpd/test/ |
H A D | time-sem.c | 422 void *result; local 425 result = (unsigned long *)mmap ((caddr_t)0, size, 427 if (result == (void *)(caddr_t)-1) { 431 return result; 445 void *result; local 471 if ((result = shmat(shmid, 0, 0)) == BADSHMAT) { 481 if (result == BADSHMAT) /* now bailout */ 491 return result;
|
/httpd/server/mpm/mpmt_os2/ |
H A D | mpmt_os2.c | 402 static apr_status_t mpmt_os2_query(int query_code, int *result, apr_status_t *rv) argument 408 *result = ap_max_daemons_limit; 412 *result = AP_MPMQ_DYNAMIC; 416 *result = AP_MPMQ_NOT_SUPPORTED; 420 *result = HARD_SERVER_LIMIT; 424 *result = HARD_THREAD_LIMIT; 428 *result = 0; 432 *result = 0; 436 *result = ap_max_requests_per_child; 440 *result [all...] |
/httpd/modules/http/ |
H A D | http_protocol.c | 1089 const char *notes, *result; local 1092 result = apr_pstrcat(r->pool, prefix, suffix, NULL); 1095 result = apr_pstrcat(r->pool, prefix, notes, suffix, NULL); 1098 return result;
|
/httpd/modules/session/ |
H A D | mod_session_crypto.c | 147 /* use a uuid as a salt value, and prepend it to our result */ 201 /* prepend the salt and the iv to the result */ 207 /* base64 encode the result */ 532 char *result; local 551 result = ap_get_exec_line(cmd->pool, 554 if(!result) { 559 *passphrase = result;
|
/httpd/server/mpm/winnt/ |
H A D | service.c | 115 DWORD result; local 130 if (!WriteConsole(hConErr, msg, (DWORD)strlen(msg), &result, NULL) 131 || !result) 141 while (PeekConsoleInput(hConIn, &in, 1, &result) && result) 143 if (!ReadConsoleInput(hConIn, &in, 1, &result) || !result) 157 if (!WriteConsole(hConErr, count, (DWORD)strlen(count), &result, NULL) 158 || !result)
|
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 407 const char *result = user; local 411 return result; 417 result = substituted; 421 apr_table_set(r->subprocess_env, "LDAP_BINDASUSER", result); 423 return result; 512 int result = 0; local 588 result = util_ldap_cache_checkuserid(r, ldc, sec->url, sec->basedn, sec->scope, 594 if (result != LDAP_SUCCESS) { 599 user, r->uri, ldc->reason, ldap_err2string(result)); 606 user, r->uri, ldc->reason, ldap_err2string(result)); 665 apr_status_t result = APR_SUCCESS; local 701 int result = 0; local 828 int result = 0; local 1032 int result = 0; local 1131 int result = 0; local 1238 int result = 0; local 1375 int result = 0; local 1473 apr_ldap_err_t *result; local 1686 char *result; local [all...] |
H A D | mod_authz_core.c | 201 * return the result of the above function call 348 static const char* format_authz_result(authz_status result) argument 350 return ((result == AUTHZ_DENIED) 352 : ((result == AUTHZ_GRANTED) 354 : ((result == AUTHZ_DENIED_NO_USER) 707 "Controls if an authorization failure should result in a " 725 "authorization result of %s: %s " 761 * result, AUTHZ_DENIED otherwise. 798 /* For negated directives, if the original result was denied 799 * then the new result i [all...] |
/httpd/modules/arch/netware/ |
H A D | mod_nw_ssl.c | 959 const char *result; local 963 result = NULL; 986 result = apr_table_get(r->headers_in, "User-Agent"); 988 result = apr_table_get(r->headers_in, "Referer"); 990 result = apr_table_get(r->headers_in, "Cookie"); 992 result = apr_table_get(r->headers_in, "Forwarded"); 994 result = apr_table_get(r->headers_in, "Host"); 996 result = apr_table_get(r->headers_in, "Proxy-Connection"); 998 result = apr_table_get(r->headers_in, "Accept"); 1001 result [all...] |
/httpd/modules/arch/win32/ |
H A D | mod_isapi.c | 131 * defined. The hash result remains global, but shorthand of 494 const char *result; local 571 result = apr_table_get(r->subprocess_env, variable_name); 573 if (result) { 574 len = strlen(result); 580 strcpy(buf_data, result); 727 /* This is an immediate error result from the parser 736 * may also be a delayed error result from the parser. 1618 "asynch I/O result HSE_STATUS_PENDING " 1629 "HSE_STATUS_ERROR result fro [all...] |
/httpd/modules/core/ |
H A D | mod_macro.c | 450 return the result as a newly allocated array, if result is defined. 458 apr_array_header_t ** result) 464 if (result) { 465 *result = apr_array_make(pool, contents->nelts, sizeof(char *)); 480 /* append substituted line to result array */ 481 if (result) { 482 char **new = apr_array_push(*result); 454 process_content(apr_pool_t * pool, const ap_macro_t * macro, const apr_array_header_t * replacements, apr_array_header_t * used, apr_array_header_t ** result) argument
|