Searched refs:endptr (Results 1 - 11 of 11) sorted by relevance

/httpd/modules/proxy/
H A Dmod_proxy_connect.c90 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/support/
H A Dpasswd_common.c328 char *endptr; local
329 long num = strtol(opt_arg, &endptr, 10);
330 if (*endptr != '\0' || num <= 0) {
/httpd/modules/aaa/
H A Dmod_auth_digest.c548 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/filters/
H A Dmod_reqtimeout.c493 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 Dmod_imagemap.c227 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 Dmod_socache_shmcb.c307 char *endptr; local
316 ctx->shm_size = strtol(cp, &endptr, 10);
317 if (endptr != cp2) {
/httpd/modules/ldap/
H A Dutil_ldap.c2685 char *endptr; local
2695 timeout = strtol(val, &endptr, 10);
2696 if ((val == endptr) || (*endptr != '\0')) {
/httpd/modules/ssl/
H A Dmod_ssl_ct.c2738 char *endptr; local
2741 *val = strtol(arg, &endptr, 10);
2743 || *endptr != '\0'
/httpd/server/
H A Dconfig.c1457 char *endptr; local
1461 *(int *)((char*)struct_ptr + offset) = strtol(arg, &endptr, 10);
1463 if ((*arg == '\0') || (*endptr != '\0')) {
H A Dlog.c1578 char *buf, *endptr; local
1611 *mypid = strtol(buf, &endptr, 10);
/httpd/server/mpm/event/
H A Devent.c3860 char *endptr; local
3866 val = strtod(arg, &endptr);
3867 if (*endptr)

Completed in 68 milliseconds