Searched refs:status (Results 1 - 25 of 144) sorted by relevance

123456

/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_ajp.c167 apr_status_t status; local
194 int original_status = r->status;
210 status = ajp_send_header(conn->sock, r, maxsize, uri);
211 if (status != APR_SUCCESS) {
213 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(00868)
217 if (status == AJP_EOVERFLOW)
234 status = ajp_alloc_data_msg(r->pool, &buff, &bufsiz, &msg);
235 if (status != APR_SUCCESS) {
252 status = ap_get_brigade(r->input_filters, input_brigade,
256 if (status !
733 int status; local
[all...]
/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_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.c26 if (ctx->status == PREFIX##_ERROR) \
28 else if (ctx->status == PREFIX##_COMPLETE) \
99 apr_status_t status; local
107 status = apr_pool_create(&default_parser_pool, pool);
108 if (status != APR_SUCCESS)
109 return status;
214 } status; member in struct:gen_ctx
227 ctx->status = GEN_INCOMPLETE;
248 ctx->status = GEN_ERROR;
258 ctx->status
278 } status; member in struct:xml_ctx
[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...]
H A Dapreq_parser_multipart.c31 if (ctx->status == PREFIX##_ERROR) \
33 else if (ctx->status == PREFIX##_COMPLETE) \
60 } status; member in struct:mfd_ctx
244 ctx->status = MFD_INIT;
286 switch (ctx->status) {
296 ctx->status = MFD_NEXTLINE;
307 ctx->status = MFD_COMPLETE;
322 ctx->status = MFD_COMPLETE;
328 ctx->status = MFD_HEADER;
343 ctx->status
[all...]
/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_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/filters/
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...]
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...]
/httpd/support/
H A Drotatelogs.c103 static rotate_status_t status; variable
232 static void checkRotate(rotate_config_t *config, rotate_status_t *status) argument
234 if (status->current.fd == NULL) {
235 status->rotateReason = ROTATE_NEW;
241 if (apr_file_info_get(&finfo, APR_FINFO_SIZE, status->current.fd) == APR_SUCCESS) {
246 status->rotateReason = ROTATE_SIZE;
249 if (get_now(config, NULL) >= status->tLogEnd) {
250 status->rotateReason = ROTATE_TIME;
255 if (get_now(config, NULL) >= status->tLogEnd) {
256 status
272 post_rotate(apr_pool_t *pool, struct logfile *newlog, rotate_config_t *config, rotate_status_t *status) argument
348 truncate_and_write_error(rotate_status_t *status, const char *message) argument
374 doRotate(rotate_config_t *config, rotate_status_t *status) argument
[all...]
H A Dfirehose.c233 apr_status_t status; local
243 status = apr_filepath_merge(&nfrom, file->directory, from,
245 if (APR_SUCCESS == status) {
246 status = apr_filepath_merge(&nto, file->directory, to,
248 if (APR_SUCCESS == status) {
249 if (APR_SUCCESS == (status = apr_file_mtime_set(nfrom, file->end, pool))) {
250 if (APR_SUCCESS != (status = apr_file_rename(nfrom, nto, pool))) {
254 nfrom, nto, &status);
261 nfrom, file->end, &status);
267 file->directory, to, &status);
322 apr_status_t status; local
431 apr_status_t status; local
503 apr_status_t status = APR_SUCCESS; local
652 apr_status_t status; local
[all...]
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...]
/httpd/modules/test/
H A Dmod_dialup.c49 int status; local
60 status = apr_brigade_partition(db->bb, db->bytes_per_second, &e);
62 if (status != APR_SUCCESS && status != APR_INCOMPLETE) {
84 status = ap_pass_brigade(db->r->output_filters, db->tmpbb);
88 if (status != APR_SUCCESS) {
89 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, db->r, APLOGNO(01867)
106 int status; local
112 status = dialup_send_pulse(db);
114 if (status
138 int status; local
[all...]
/httpd/modules/mappers/
H A Dmod_dir.c101 int status; local
104 status = HTTP_MOVED_TEMPORARILY;
106 status = REDIRECT_OFF;
108 status = HTTP_MOVED_PERMANENTLY;
110 status = HTTP_MOVED_TEMPORARILY;
112 status = HTTP_SEE_OTHER;
114 status = atoi(arg1);
115 if (!ap_is_HTTP_REDIRECT(status)) {
123 d->redirect_index = status;
138 NULL, DIR_CMD_PERMS, "On, Off, or a 3xx status cod
[all...]
H A Dmod_alias.c236 int status = (int) (long) cmd->info; local
245 * Redirect status. Now if we have 3 args, we expect that
250 status = HTTP_MOVED_PERMANENTLY;
252 status = HTTP_MOVED_TEMPORARILY;
254 status = HTTP_SEE_OTHER;
256 status = HTTP_GONE;
258 status = atoi(arg1);
271 * with a status like "GONE".
273 if (grokarg1 && arg2 && !arg3 && HTTP_GONE != status) {
285 dirconf->redirect_status = status;
480 try_redirect(request_rec *r, int *status) argument
521 try_alias_list(request_rec *r, apr_array_header_t *aliases, int is_redir, int *status) argument
614 int status; local
671 int status; local
[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
/httpd/include/
H A Dhttp_main.h78 * @param status The exit status after sending signal
81 APR_DECLARE_OPTIONAL_FN(int, ap_signal_server, (int *status, apr_pool_t *pool));
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/build/rpm/
H A Dhtcacheclean.init81 status)
82 status -p ${pidfile} $htcacheclean
90 if status -p ${pidfile} $htcacheclean >&/dev/null; then
96 echo $"Usage: $prog {start|stop|restart|condrestart|status|help}"
/httpd/os/win32/
H A Dos.h67 * status. This header must only be included from modules linked into
75 #define exit(status) ((exit)((ap_real_exit_code==2) \
76 ? (ap_real_exit_code = (status)) \
77 : ((ap_real_exit_code = 0), (status))))
/httpd/modules/metadata/
H A Dmod_ident.c181 apr_status_t status; local
182 status = apr_socket_send(sock, buffer+i, &j);
183 if (status != APR_SUCCESS) {
184 ap_log_error(APLOG_MARK, APLOG_CRIT, status, srv, APLOGNO(01497)
186 return status;
207 apr_status_t status; local
208 status = apr_socket_recv(sock, buffer+i, &j);
209 if (status != APR_SUCCESS) {
210 ap_log_error(APLOG_MARK, APLOG_CRIT, status, srv, APLOGNO(01498)
212 return status;
[all...]
/httpd/modules/dav/fs/
H A Drepos.c204 /* returns an appropriate HTTP status code given an APR status code for a
338 apr_status_t status; local
351 if ((status = apr_file_perms_set(dst, perms)) != APR_SUCCESS) {
352 return dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, 0, status,
363 if ((status = apr_file_open(&inf, src, APR_READ | APR_BINARY,
366 return dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, 0, status,
371 status = apr_file_open(&outf, dst, APR_WRITE | APR_CREATE | APR_TRUNCATE
373 if (status != APR_SUCCESS) {
376 return dav_new_error(p, MAP_IO2HTTP(status),
619 apr_status_t status; local
1006 apr_status_t status; local
1025 apr_status_t status; local
1077 apr_status_t status; local
1121 apr_status_t status; local
1150 apr_status_t status; local
1432 apr_status_t status; local
1493 apr_status_t status; local
2104 apr_status_t status; local
2147 apr_status_t status; local
[all...]

Completed in 2497 milliseconds

123456