Searched defs:sb (Results 1 - 6 of 6) sorted by relevance

/httpd/server/mpm/simple/
H A Dsimple_io.c187 simple_sb_t *sb = (simple_sb_t *) baton; local
188 simple_conn_t *scon = (simple_conn_t *) sb->baton;
208 simple_sb_t *sb; local
221 sb = apr_pcalloc(scon->pool, sizeof(simple_sb_t));
230 sb->type = SIMPLE_PT_CORE_IO;
231 sb->baton = scon;
232 scon->pfd.client_data = sb;
256 apr_status_t simple_io_accept(simple_core_t * sc, simple_sb_t * sb) argument
261 ap_listen_rec *lr = (ap_listen_rec *) sb->baton;
296 apr_status_t simple_io_event_process(simple_core_t * sc, simple_sb_t * sb) argument
[all...]
H A Dsimple_run.c78 simple_sb_t *sb = apr_pcalloc(sc->pool, sizeof(simple_sb_t)); local
85 sb->type = SIMPLE_PT_CORE_ACCEPT;
86 sb->baton = lr;
88 pfd->client_data = sb;
116 simple_sb_t *sb = pfd->client_data; local
119 if (sb->type == SIMPLE_PT_CORE_ACCEPT) {
120 rv = simple_io_accept(sc, sb);
122 else if (sb->type == SIMPLE_PT_CORE_IO) {
123 rv = simple_io_event_process(sc, sb);
125 else if (sb
[all...]
/httpd/server/
H A Dscoreboard.c361 AP_DECLARE(void) ap_increment_counts(ap_sb_handle_t *sb, request_rec *r) argument
366 if (!sb)
369 ws = &ap_scoreboard_image->servers[sb->child_num][sb->thread_num];
H A Dutil_expr_eval.c1238 apr_finfo_t sb; local
1239 if (apr_stat(&sb, arg, APR_FINFO_MIN, ctx->p) == APR_SUCCESS
1240 && sb.filetype == APR_REG && sb.size > 0)
1241 return apr_psprintf(ctx->p, "%" APR_OFF_T_FMT, sb.size);
1249 apr_finfo_t sb; local
1250 if (apr_stat(&sb, arg, APR_FINFO_MIN, ctx->p) == APR_SUCCESS
1251 && sb.filetype == APR_REG && sb.mtime > 0)
1252 return apr_psprintf(ctx->p, "%" APR_OFF_T_FMT, sb
1283 apr_finfo_t sb; local
1305 apr_finfo_t sb; local
1316 apr_finfo_t sb; local
1349 apr_finfo_t sb; local
[all...]
/httpd/server/mpm/motorz/
H A Dmotorz.c138 motorz_sb_t *sb; local
150 sb = apr_pcalloc(scon->pool, sizeof(motorz_sb_t));
159 sb->type = PT_CSD;
160 sb->baton = scon;
161 scon->pfd.client_data = sb;
184 static apr_status_t motorz_io_user(motorz_core_t *mz, motorz_sb_t *sb) argument
190 static apr_status_t motorz_io_accept(motorz_core_t *mz, motorz_sb_t *sb) argument
195 ap_listen_rec *lr = (ap_listen_rec *) sb->baton;
249 motorz_sb_t *sb = (motorz_sb_t *) baton; local
250 motorz_conn_t *scon = (motorz_conn_t *) sb
264 motorz_io_event_process(motorz_core_t *mz, motorz_sb_t *sb) argument
275 motorz_sb_t *sb = pfd->client_data; local
923 motorz_sb_t *sb = apr_pcalloc(mz->pool, sizeof(motorz_sb_t)); local
[all...]
/httpd/modules/mappers/
H A Dmod_rewrite.c928 apr_finfo_t sb; local
930 if (apr_stat(&sb, statpath, APR_FINFO_MIN, pool) == APR_SUCCESS) {
3831 apr_finfo_t sb; local
3842 if ( apr_stat(&sb, input, APR_FINFO_MIN, r->pool) == APR_SUCCESS
3843 && sb.filetype == APR_REG) {
3849 if ( apr_stat(&sb, input, APR_FINFO_MIN, r->pool) == APR_SUCCESS
3850 && sb.filetype == APR_REG && sb.size > 0) {
3857 if ( apr_stat(&sb, input, APR_FINFO_MIN | APR_FINFO_LINK,
3859 && sb
[all...]

Completed in 256 milliseconds