Searched defs:stat (Results 1 - 7 of 7) sorted by relevance
/httpd/os/win32/ |
H A D | ap_regkey.c | 122 apr_status_t stat; local 123 if ((stat = regkey_cleanup(regkey)) == APR_SUCCESS) { 126 return stat;
|
/httpd/modules/ssl/ |
H A D | ssl_engine_pphrase.c | 53 apr_status_t stat; local 57 if ((stat = apr_stat(&sbuf, fname, APR_FINFO_MIN, pool)) != APR_SUCCESS) 58 return stat; 63 if ((stat = apr_file_open(&fd, fname, APR_READ, 0, pool)) != APR_SUCCESS) 64 return stat;
|
/httpd/server/ |
H A D | main.c | 302 apr_status_t stat; local 305 stat = apr_app_initialize(argc, argv, NULL); 306 if (stat == APR_SUCCESS) { 308 stat = apr_pool_create(&cntx, NULL); 311 if (stat != APR_SUCCESS) { 325 ctimebuff, stat, (*argv)[0], failed);
|
H A D | listen.c | 82 apr_status_t stat; local 85 stat = apr_socket_opt_set(s, APR_SO_REUSEADDR, one); 86 if (stat != APR_SUCCESS && stat != APR_ENOTIMPL) { 87 ap_log_perror(APLOG_MARK, APLOG_CRIT, stat, p, APLOGNO(00067) 91 return stat; 95 stat = apr_socket_opt_set(s, APR_SO_KEEPALIVE, one); 96 if (stat != APR_SUCCESS && stat != APR_ENOTIMPL) { 97 ap_log_perror(APLOG_MARK, APLOG_CRIT, stat, 772 apr_status_t stat; local [all...] |
/httpd/modules/arch/win32/ |
H A D | mod_isapi.c | 146 "unable to stat, skipping %s", fspec); 621 * head/headlen alone (leaving stat/statlen NULL/0), so that they 622 * get a proper count of bytes consumed. The argument passed to stat 626 const char *stat, 639 head = stat; 640 stat = NULL; 646 if (!stat || statlen == 0 || !*stat) { 647 if (head && headlen && *head && ((stat = memchr(head, '\r', headlen)) 648 || (stat 625 send_response_header(isapi_cid *cid, const char *stat, const char *head, apr_size_t statlen, apr_size_t headlen) argument [all...] |
/httpd/server/mpm/netware/ |
H A D | mpm_netware.c | 343 apr_status_t stat = APR_EINIT; local 445 if ((stat = apr_socket_accept(&csd, sd, ptrans)) == APR_SUCCESS) { 453 if (!APR_STATUS_IS_EAGAIN(stat)) { 465 if (stat == APR_SUCCESS) { 477 if (APR_STATUS_IS_EAGAIN(stat)) { 483 if (APR_STATUS_IS_EAGAIN(stat) || 485 APR_STATUS_IS_ECONNRESET(stat) || 486 APR_STATUS_IS_ETIMEDOUT(stat) || 487 APR_STATUS_IS_EHOSTUNREACH(stat) || 488 APR_STATUS_IS_ENETUNREACH(stat)) { [all...] |
/httpd/modules/generators/ |
H A D | mod_cgid.c | 70 #include <sys/stat.h> 419 apr_status_t stat; local 424 stat = sock_read(fd, req, sizeof(*req)); 425 if (stat != APR_SUCCESS) { 426 return stat; 446 if ((stat = sock_read(fd, r->filename, req->filename_len)) != APR_SUCCESS || 447 (stat = sock_read(fd, *argv0, req->argv0_len)) != APR_SUCCESS || 448 (stat = sock_read(fd, r->uri, req->uri_len)) != APR_SUCCESS) { 449 return stat; 454 if ((stat 487 apr_status_t stat; local 685 apr_status_t stat; local 1359 apr_status_t stat; local [all...] |
Completed in 24 milliseconds