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

/httpd/modules/dav/main/
H A Dliveprop.c88 const dav_liveprop_spec *scan; local
101 for (scan = group->specs; scan->name != NULL; ++scan)
102 if (ns == scan->ns && strcmp(name, scan->name) == 0) {
104 return scan->propid;
115 const dav_liveprop_spec *scan; local
117 for (scan = group->specs; scan
[all...]
H A Dutil_lock.c595 dav_lock *scan; local
642 for (scan = locks, prev = NULL;
643 scan != NULL;
644 prev = scan, scan = scan->next) {
646 if (scan->rectype == DAV_LOCKREC_DIRECT
647 && scan->depth != DAV_INFINITY) {
650 locks = scan->next;
652 prev->next = scan
[all...]
H A Dprops.c584 * scan all properties in the dead prop database
597 /* if there ARE properties, then scan them */
606 /* get the first property name, beginning the scan */
1121 dav_error *scan = err; local
1124 while (scan->prev != NULL)
1125 scan = scan->prev;
1126 scan->prev = ctx->err;
H A Dutil.c340 apr_text *scan; local
348 for (scan = elem->first_cdata.first; scan != NULL; scan = scan->next) {
349 found_text = scan->text;
355 for (scan = child->following_cdata.first;
356 scan != NULL;
357 scan = scan
[all...]
/httpd/modules/dav/fs/
H A Dlock.c870 char *scan; local
887 for (scan = pbuf->buf, scanend = scan + pbuf->cur_len;
888 scan < scanend;
889 scan += scanlen) {
890 scanlen = strlen(scan) + 1;
891 if (len == scanlen && memcmp(fname, scan, scanlen) == 0) {
893 memmove(scan, scan + scanlen, scanend - (scan
[all...]

Completed in 1323 milliseconds