Searched defs:wanted (Results 1 - 4 of 4) sorted by relevance
/httpd/server/mpm/simple/ |
H A D | simple_children.c | 118 int wanted; local 140 wanted = sc->procmgr.proc_count; 144 if (count > wanted) { 146 int to_kill = count - wanted; 151 else if (count < wanted) { 154 int to_spawn = wanted - count;
|
/httpd/modules/ssl/ |
H A D | ssl_engine_io.c | 595 apr_size_t wanted = *len; local 602 if ((bytes = char_buffer_read(&inctx->cbuf, buf, wanted))) { 614 /* This could probably be *len == wanted, but be safe from stray 617 if (*len >= wanted) { 646 rc = SSL_read(inctx->filter_ctx->pssl, buf + bytes, wanted - bytes);
|
/httpd/modules/lua/ |
H A D | lua_request.c | 1472 * lua_ap_stat; r:stat(filename [, wanted]) - Runs stat on a file and 1480 apr_int32_t wanted; local 1486 wanted = luaL_optinteger(L, 3, APR_FINFO_MIN); 1487 if (apr_stat(&file_info, filename, wanted, r->pool) == OK) { 1489 if (wanted & APR_FINFO_MTIME) { 1494 if (wanted & APR_FINFO_ATIME) { 1499 if (wanted & APR_FINFO_CTIME) { 1504 if (wanted & APR_FINFO_SIZE) { 1509 if (wanted & APR_FINFO_TYPE) { 1514 if (wanted [all...] |
/httpd/server/ |
H A D | core.c | 5167 apr_int32_t wanted) 5169 return apr_stat(finfo, r->filename, wanted, r->pool); 5166 core_dirwalk_stat(apr_finfo_t *finfo, request_rec *r, apr_int32_t wanted) argument
|
Completed in 273 milliseconds