Searched defs:off (Results 1 - 5 of 5) sorted by relevance

/httpd/server/
H A Dapreq_parser_header.c186 apr_size_t off = 0, dlen; local
218 while (off < dlen) {
219 switch (data[off++]) {
222 if (off < dlen)
223 apr_bucket_split(e, off);
235 if (off > 1) {
236 apr_bucket_split(e, off - 1);
237 dlen -= off - 1;
238 data += off - 1;
239 off
[all...]
H A Dapreq_parser_urlencoded.c185 apr_size_t off = 0, dlen; local
222 while (off < dlen) {
223 switch (data[off++]) {
225 apr_bucket_split(e, off);
226 dlen -= off;
227 data += off;
228 off = 0;
239 while (off < dlen) {
241 switch (data[off++]) {
244 apr_bucket_split(e, off);
[all...]
H A Dapreq_parser_multipart.c118 apr_size_t blen = strlen(bdry), off = 0; local
141 if (strncmp(bdry + off, buf, MIN(len, blen - off)) == 0) {
142 if ( len >= blen - off ) {
144 if (len > blen - off)
145 apr_bucket_split(e, blen - off);
156 off += len;
160 else if (off > 0) {
177 off = 0;
531 apr_off_t off; local
[all...]
H A Dlog.c1344 static void fmt_data(unsigned char *buf, const void *vdata, apr_size_t len, apr_size_t *off) argument
1356 while (*off < len && this_time < BYTES_LOGGED_PER_LINE) {
1357 unsigned char c = data[*off];
1361 * off the formatting
1385 *off += 1;
1397 apr_size_t off; local
1414 off = 0;
1415 while (off < len) {
1417 apr_snprintf(prefix, sizeof prefix, "%04x: ", (unsigned int)off);
1419 fmt_data(buf, data, len, &off);
[all...]
/httpd/modules/ldap/
H A Dutil_ldap_cache_mgr.c663 char *argfmt = "cache=%s&id=%d&off=%d";
664 char *scanfmt = "cache=%4s&id=%u&off=%u%1s";
679 unsigned int id, off; local
682 if ((3 == sscanf(r->args, scanfmt, cachetype, &id, &off, lint)) &&

Completed in 30 milliseconds