Searched refs:num (Results 1 - 25 of 30) sorted by relevance

12

/httpd/test/
H A Dtest_limits.c75 "usage: test_limits [-t (r|n|h|b)] [-a address] [-p port] [-n num]\n");
90 int num = 1000; local
113 num = atoi(optarg);
152 while (num-- && !ferror(f)) {
162 while (num-- && !ferror(f)) {
169 while (num-- && !ferror(f))
177 while (num-- && !ferror(f))
/httpd/modules/slotmem/
H A Dmod_slotmem_plain.c29 unsigned int num; /* number of mem slots */ member in struct:ap_slotmem_instance_t
54 for (i = 0; i < mem->num; i++, inuse++) {
107 res->num = item_num;
140 *item_num = next->num;
156 if (id >= score->num)
177 if (id >= slot->num) {
203 if (id >= slot->num) {
220 return slot->num;
227 for (i = 0; i < slot->num; i++, inuse++) {
254 for (i = 0; i < slot->num;
[all...]
H A Dmod_slotmem_shm.c53 unsigned int num; /* number of mem slots */ member in struct:__anon314
133 for (i = 0; i < slot->desc.num; i++, inuse++) {
168 nbytes = (slotmem->desc.size * slotmem->desc.num) +
169 (slotmem->desc.num * sizeof(char)) + AP_UNSIGNEDINT_OFFSET;
281 for (i = 0; i < mem->desc.num; i++, inuse++) {
365 if (desc.size != item_size || desc.num != item_num) {
393 desc.num = item_num;
475 *item_num = next->desc.num;
512 res->inuse = ptr + (desc.size * desc.num);
523 *item_num = desc.num;
[all...]
/httpd/docs/log-message-tags/
H A Dupdate-log-msg-tags155 my $num = <$fh>;
156 chomp $num;
157 $num =~ /^\d+$/ or die "invalid serial in $name: $num";
158 return $num;
/httpd/server/
H A Dutil_expr_parse.h97 int num; member in union:YYSTYPE
H A Dutil_expr_parse.y38 int num;
54 %token <num> T_REGEX_BACKREF "regex back reference"
H A Dutil_expr_scan.l204 yylval->num = yytext[1] - '0';
247 yylval->num = yytext[1] - '0';
H A Dmpm_unix.c594 AP_DECLARE(void) ap_mpm_podx_killpg(ap_pod_t * pod, int num, argument
600 for (i = 0; i < num && rv == APR_SUCCESS; i++) {
727 void ap_mpm_pod_killpg(ap_pod_t *pod, int num) argument
746 for (i = 0; i < num && rv == APR_SUCCESS; i++) {
H A Dutil.c2588 apr_size_t num, apr_size_t usize)
2655 while (state != FORM_ABORT && slide-- > 0 && size >= 0 && num != 0) {
2704 num--;
2745 if (FORM_ABORT == state || size < 0 || num == 0) {
3055 int num; local
3057 num = getloadavg(la, 3);
3058 if (num > 0) {
3061 if (num > 1) {
3064 if (num > 2) {
2586 ap_parse_form_data(request_rec *r, ap_filter_t *f, apr_array_header_t **ptr, apr_size_t num, apr_size_t usize) argument
H A Dutil_expr_parse.c162 int num; member in union:YYSTYPE
1823 *n = (yyvsp[(1) - (1)].num);
/httpd/support/
H A Dpasswd_common.c329 long num = strtol(opt_arg, &endptr, 10); local
330 if (*endptr != '\0' || num <= 0) {
334 ctx->cost = num;
H A Dab.c407 static void *xcalloc(size_t num, size_t size) argument
409 void *ret = calloc(num, size);
412 APR_SIZE_T_FMT" bytes)\n", size*num);
/httpd/modules/metadata/
H A Dmod_expires.c84 * ExpiresDefault "<base> [plus] {<num> <type>}*"
85 * ExpiresByType type/encoding "<base> [plus] {<num> <type>}*"
94 * where <num> should be an integer value [acceptable to atoi()]
112 * The expiry time can be fine-tuned by adding several '<num> <type>'
219 int num = 0; local
229 /* <base> [plus] {<num> <type>}*
254 /* {<num> <type>}*
257 /* <num>
260 num = atoi(word);
263 return apr_pstrcat(p, "bad expires code, numeric value expected <num> '",
[all...]
H A Dmod_usertrack.c294 time_t num = 0; local
308 * CookieExpires "[plus] {<num> <type>}*"
316 /* {<num> <type>}* */
318 /* <num> */
320 num = atoi(word);
346 modifier = modifier + factor * num;
348 /* next <num> */
/httpd/include/
H A Dmpm_common.h277 * @param num The number of child processes to kill
279 AP_DECLARE(void) ap_mpm_pod_killpg(ap_pod_t *pod, int num);
318 * @param num The number of child processes to kill
321 AP_DECLARE(void) ap_mpm_podx_killpg(ap_pod_t *pod, int num,
H A Dhttpd.h2121 * @param num max num of params or -1 for unlimited
2127 apr_size_t num, apr_size_t size);
/httpd/modules/filters/
H A Dmod_substitute.c435 int num = 0; local
485 * and not ctx->pattbb as we do not reset num on every
491 num++;
503 if (num > AP_MAX_BUCKETS) {
509 num = 0;
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c368 unsigned int num; local
387 storage->attach(&hm_serversmem, "mod_heartmonitor", &size, &num, p);
/httpd/modules/cache/
H A Dmod_socache_shmcb.c154 #define SHMCB_SUBCACHE(pHeader, num) \
157 (num) * ((pHeader)->subcache_size))
171 #define SHMCB_INDEX(pSubcache, num) \
174 (num) * ALIGNED_INDEX_SIZE)
/httpd/modules/generators/
H A Dmod_cgi.c687 apr_int32_t num; local
689 rv = apr_pollset_poll(data->pollset, timeout, &num, &results);
710 for (; num; num--, results++) {
/httpd/server/mpm/motorz/
H A Dmotorz.c452 apr_int32_t num = 0; local
454 rc = apr_pollset_poll(mz->pollset, timeout, &num, &out_pfd);
462 while (num) {
466 num--;
/httpd/modules/dav/fs/
H A Drepos.c890 int num = ((getpid() << 7) + (apr_uintptr_t)templ % (1 << 16) ) % local
897 num = (num + 1) % ( 1 << 23 );
898 apr_snprintf(numstr, 7, "%06x", num);
/httpd/modules/ssl/
H A Dssl_engine_io.c167 bio->num = -1;
224 static long bio_filter_out_ctrl(BIO *bio, int cmd, long num, void *ptr) argument
246 bio->shutdown = (int)num;
568 static long bio_filter_in_ctrl(BIO *bio, int cmd, long num, void *ptr) argument
/httpd/modules/aaa/
H A Dmod_auth_digest.c644 "Set shmem-size: %" APR_SIZE_T_FMT ", num-buckets: %ld",
1122 static const char *ltox(apr_pool_t *p, unsigned long num) argument
1124 if (num != 0) {
1125 return apr_psprintf(p, "%lx", num);
/httpd/server/mpm/event/
H A Devent.c1772 apr_int32_t num = 0; local
1851 rc = apr_pollset_poll(event_pollset, timeout_interval, &num, &out_pfd);
1871 while (num) {
2063 num--;

Completed in 131 milliseconds

12