Searched defs:status (Results 1 - 25 of 101) sorted by relevance

12345

/httpd/modules/aaa/
H A Dmod_authz_owner.c45 apr_status_t status = 0; local
49 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01632)
63 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01633)
69 status = apr_stat(&finfo, r->filename, APR_FINFO_USER, r->pool);
70 if (status != APR_SUCCESS) {
73 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01634)
81 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01635)
87 status = apr_uid_name_get(&owner, finfo.user, r->pool);
88 if (status != APR_SUCCESS || !owner) {
90 ap_log_rerror(APLOG_MARK, APLOG_ERR, status,
[all...]
H A Dmod_authn_file.c64 apr_status_t status; local
73 status = ap_pcfg_openfile(&f, r->pool, conf->pwfile);
75 if (status != APR_SUCCESS) {
76 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01620)
104 status = ap_password_validate(r, user, password, file_password);
105 if (status != APR_SUCCESS) {
119 apr_status_t status; local
128 status = ap_pcfg_openfile(&f, r->pool, conf->pwfile);
130 if (status != APR_SUCCESS) {
131 ap_log_rerror(APLOG_MARK, APLOG_ERR, status,
[all...]
H A Dmod_authz_dbm.c163 apr_status_t status; local
165 status = get_dbm_grp(r, apr_pstrcat(r->pool, user, ":", realm, NULL),
168 if (status != APR_SUCCESS) {
169 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01799)
225 apr_status_t status; local
240 status = get_dbm_grp(r, apr_pstrcat(r->pool, user, ":", realm, NULL),
243 if (status != APR_SUCCESS) {
244 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01803)
H A Dmod_authz_groupfile.c93 apr_status_t status; local
96 if ((status = ap_pcfg_openfile(&f, p, grpfile)) != APR_SUCCESS) {
97 return status ;
148 apr_status_t status; local
163 status = groups_for_user(r->pool, user, conf->groupfile,
166 if (status != APR_SUCCESS) {
167 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01665)
215 apr_status_t status; local
231 status = groups_for_user(r->pool, user, conf->groupfile,
233 if (status !
[all...]
/httpd/modules/cache/
H A Dcache_socache_common.h39 /* The HTTP status code returned for this response. */
40 int status; member in struct:__anon80
H A Dcache_disk_common.h46 /* The HTTP status code returned for this response. */
47 int status; member in struct:__anon79
H A Dcache_storage.c687 apr_status_t rv, status = DECLINED; local
749 status = OK;
759 status = OK;
770 status = OK;
779 return status;
H A Dmod_cache.h72 * HTTP status code of the cached entity. Though not necessarily the
73 * status code finally issued to the request.
75 int status; member in struct:cache_info
126 #define AP_CACHE_STATUS_ENV "cache-status"
171 * Cache status hook.
183 request_rec *r, apr_table_t *headers, ap_cache_status_e status,
/httpd/modules/proxy/
H A Dajp_link.c24 apr_status_t status; local
35 status = apr_socket_send(sock, buf, &written);
36 if (status != APR_SUCCESS) {
37 ap_log_error(APLOG_MARK, APLOG_ERR, status, NULL, APLOGNO(01029)
39 return status;
54 apr_status_t status; local
58 status = apr_socket_recv(sock, (char *)(buf + rdlen), &length);
60 if (status == APR_EOF)
61 return status; /* socket closed. */
62 else if (APR_STATUS_IS_EAGAIN(status))
76 apr_status_t status; local
[all...]
H A Dmod_proxy_fdpass.c151 int status; local
164 status = flush->flusher(r);
165 if (status) {
166 return status;
200 int status; local
211 status = ap_pass_brigade(r->output_filters, bb);
213 if (status != OK) {
214 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(01156)
216 return status;
/httpd/server/
H A Dutil_xml.c41 apr_status_t status; local
57 status = ap_get_brigade(r->input_filters, brigade,
61 if (status != APR_SUCCESS) {
62 result = ap_map_http_request_error(status, HTTP_BAD_REQUEST);
82 status = apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
83 if (status != APR_SUCCESS) {
96 status = apr_xml_parser_feed(parser, data, len);
97 if (status) {
108 status = apr_xml_parser_done(parser, pdoc);
109 if (status) {
[all...]
H A Dapreq_param.c69 apr_status_t status; local
86 status = apreq_decode(v->data, &v->dlen, word + nlen + 1, vlen);
87 if (status != APR_SUCCESS) {
89 return status;
100 status = apreq_decode(v->name, &v->nlen, word, nlen);
101 if (status != APR_SUCCESS) {
103 return status;
H A Dapreq_parser_header.c23 if (ctx->status == PREFIX##_ERROR) \
25 else if (ctx->status == PREFIX##_COMPLETE) \
45 } status; member in struct:hdr_ctx
166 ctx->status = HDR_NAME;
192 ctx->status = HDR_COMPLETE;
199 ctx->status = HDR_ERROR;
214 switch (ctx->status) {
231 ctx->status = HDR_COMPLETE;
243 ctx->status = HDR_GAP;
265 ctx->status
[all...]
H A Dapreq_parser_urlencoded.c24 if (ctx->status == PREFIX##_ERROR) \
26 else if (ctx->status == PREFIX##_COMPLETE) \
43 } status; member in struct:url_ctx
169 ctx->status = URL_NAME;
190 if (ctx->status == URL_NAME) {
200 ctx->status = URL_COMPLETE;
203 ctx->status = URL_ERROR;
213 ctx->status = URL_ERROR;
219 switch (ctx->status) {
230 ctx->status
[all...]
/httpd/include/
H A Dhttp_protocol.h90 * @param recursive_error last arg indicates error status in case we get
101 * May return an error status, typically HTTP_NOT_MODIFIED (that when the
113 * Set the keepalive status for this request
242 * other status code otherwise
455 * @param status HTTP status code
458 AP_DECLARE(int) ap_index_of_response(int status);
461 * Return the Status-Line for a given status code (excluding the
462 * HTTP-Version field). If an invalid or unknown status code is
464 * @param status Th
719 int status; member in struct:ap_bucket_error
[all...]
H A Dap_socache.h38 /** If this flag is set, the store/retrieve/remove/status interfaces
44 * independently that status and iterate may or may not be?
74 * @return APR status value; return APR_SUCCESS or the iteration will halt;
126 * @return APR status value indicating success.
149 * @return APR status value.
168 * @return APR status value; APR_NOTFOUND if the object was not
190 * Dump the status of a cache instance for mod_status. Will use
191 * the ap_r* interfaces to produce appropriate status output.
198 void (*status)(ap_socache_instance_t *instance, request_rec *r, int flags); member in struct:ap_socache_provider_t
208 * @return APR status valu
[all...]
H A Dscoreboard.h47 * just status value and pid (the latter so that the caretaker process
67 #define SERVER_NUM_STATUS 11 /* number of status settings */
102 unsigned char status; member in struct:worker_score
180 AP_DECLARE(int) ap_update_child_status(ap_sb_handle_t *sbh, int status, request_rec *r);
182 int status, request_rec *r);
183 AP_DECLARE(int) ap_update_child_status_from_conn(ap_sb_handle_t *sbh, int status, conn_rec *c);
184 AP_DECLARE(void) ap_time_process_request(ap_sb_handle_t *sbh, int status);
/httpd/modules/echo/
H A Dmod_echo.c96 int status, conn_rec *c,
100 int old_status = ws->status;
102 ws->status = status;
95 update_echo_child_status(ap_sb_handle_t *sbh, int status, conn_rec *c, apr_bucket_brigade *last_echoed) argument
/httpd/modules/filters/
H A Dmod_reflector.c50 apr_status_t status; local
78 ap_status_drops_connection(r->status)) {
115 status = ap_get_brigade(r->input_filters, bbin, AP_MODE_READBYTES,
118 if (status != APR_SUCCESS) {
120 return ap_map_http_request_error(status, HTTP_BAD_REQUEST);
143 status = apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
144 if (status != APR_SUCCESS) {
151 status = ap_pass_brigade(r->output_filters, bbout);
152 if (status != APR_SUCCESS) {
154 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status,
[all...]
H A Dmod_sed.c105 apr_status_t status = APR_SUCCESS; local
122 status = ap_pass_brigade(ctx->f->next, ctx->bb);
127 return status;
138 apr_status_t status = APR_SUCCESS; local
140 return status;
142 status = append_bucket(ctx, out, size);
144 return status;
156 apr_status_t status = APR_SUCCESS; local
170 status = append_bucket(ctx, ctx->outbuf, ctx->bufsize);
175 if ((status
202 apr_status_t status = APR_SUCCESS; local
235 apr_status_t status; local
271 apr_status_t status = APR_SUCCESS; local
381 apr_status_t status; local
[all...]
/httpd/modules/ssl/
H A Dssl_engine_ocsp.c127 /* Verify the OCSP status of given certificate. Returns
196 int reason = -1, status; local
199 rc = OCSP_resp_find_status(basicResponse, certID, &status,
203 "failed to retrieve OCSP response status");
208 rc = status;
231 (status == V_OCSP_CERTSTATUS_GOOD) ? APLOG_INFO : APLOG_ERR;
233 status == V_OCSP_CERTSTATUS_GOOD ? "good" :
234 (status == V_OCSP_CERTSTATUS_REVOKED ? "revoked" : "unknown");
238 "certificate status: %s (%d, %d)",
239 result, status, reaso
[all...]
/httpd/support/
H A Dlogresolve.c138 apr_status_t status; local
163 status = apr_getopt(o, "s:c", &opt, &arg);
164 if (status == APR_EOF) {
167 else if (status != APR_SUCCESS) {
245 status = apr_sockaddr_info_get(&ip, line, APR_UNSPEC, 0, 0, pline);
246 if (status != APR_SUCCESS) {
266 status = apr_getnameinfo(&hostname, ip, 0) != APR_SUCCESS;
267 if (status || hostname == NULL) {
285 status = apr_sockaddr_info_get(&ipdouble, hostname, ip->family, 0,
287 if (status
[all...]
H A Dsuexec.c454 int status; local
464 while (pid != waitpid(pid, &status, 0))
467 if (WIFSIGNALED(status)) {
468 kill (getpid(), WTERMSIG(status));
470 exit(WEXITSTATUS(status));
/httpd/modules/apreq/
H A Dfilter.c409 apr_status_t status; local
411 status = apreq_pre_initialize(p);
412 if (status != APR_SUCCESS) {
413 ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_ERR, status, base_server, APLOGNO(02055)
424 apr_status_t status; local
426 status = apreq_post_initialize(p);
427 if (status != APR_SUCCESS) {
428 ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_ERR, status, base_server, APLOGNO(02056)
515 "cannot steal context: bad filter status");
/httpd/modules/cluster/
H A Dmod_heartbeat.c38 apr_status_t status; member in struct:hb_ctx_t
68 res = ws->status;

Completed in 4707 milliseconds

12345