Searched defs:endptr (Results 1 - 11 of 11) sorted by relevance
/httpd/support/ |
H A D | passwd_common.c | 328 char *endptr; local 329 long num = strtol(opt_arg, &endptr, 10); 330 if (*endptr != '\0' || num <= 0) {
|
/httpd/modules/proxy/ |
H A D | mod_proxy_connect.c | 90 char *endptr; local 96 first = strtol(p, &endptr, 10); 97 if (*endptr == '-') { 98 p = endptr + 1; 99 last = strtol(p, &endptr, 10); 105 if (endptr == p || *endptr != '\0') {
|
/httpd/modules/filters/ |
H A D | mod_reqtimeout.c | 493 char *endptr; local 494 *val = strtol(arg, &endptr, 10); 496 if (arg == endptr) { 497 return apr_psprintf(p, "Value '%s' not numerical", endptr); 499 if (*endptr != '\0') { 500 return apr_psprintf(p, "Cannot parse '%s'", endptr);
|
/httpd/modules/mappers/ |
H A D | mod_imagemap.c | 227 char *endptr; /* we want it non-null */ local 239 x_coord = strtod(args, &endptr); 241 if (endptr > args) { /* if a conversion was made */ 251 char *endptr; /* we want it non-null */ local 271 y_coord = strtod(start_of_y, &endptr); 273 if (endptr > start_of_y) {
|
/httpd/modules/cache/ |
H A D | mod_socache_shmcb.c | 307 char *endptr; local 316 ctx->shm_size = strtol(cp, &endptr, 10); 317 if (endptr != cp2) {
|
/httpd/modules/aaa/ |
H A D | mod_auth_digest.c | 548 char *endptr; local 551 lifetime = strtol(t, &endptr, 10); 552 if (endptr < (t+strlen(t)) && !apr_isspace(*endptr)) { 612 char *endptr; local 615 size = strtol(size_str, &endptr, 10); 616 while (apr_isspace(*endptr)) endptr++; 617 if (*endptr == '\0' || *endptr 1327 char *endptr; local [all...] |
/httpd/modules/ldap/ |
H A D | util_ldap.c | 2685 char *endptr; local 2695 timeout = strtol(val, &endptr, 10); 2696 if ((val == endptr) || (*endptr != '\0')) {
|
/httpd/server/ |
H A D | log.c | 1578 char *buf, *endptr; local 1611 *mypid = strtol(buf, &endptr, 10);
|
H A D | config.c | 1457 char *endptr; local 1461 *(int *)((char*)struct_ptr + offset) = strtol(arg, &endptr, 10); 1463 if ((*arg == '\0') || (*endptr != '\0')) {
|
/httpd/modules/ssl/ |
H A D | mod_ssl_ct.c | 2738 char *endptr; local 2741 *val = strtol(arg, &endptr, 10); 2743 || *endptr != '\0'
|
/httpd/server/mpm/event/ |
H A D | event.c | 3860 char *endptr; local 3866 val = strtod(arg, &endptr); 3867 if (*endptr)
|
Completed in 65 milliseconds