Lines Matching defs:ctx2
843 dav_resource_private *ctx2 = res2->info;
848 if ((ctx1->finfo.filetype != APR_NOFILE) && (ctx2->finfo.filetype != APR_NOFILE)
849 && (ctx1->finfo.valid & ctx2->finfo.valid & APR_FINFO_INODE)) {
850 return ctx1->finfo.inode == ctx2->finfo.inode;
853 return strcmp(ctx1->pathname, ctx2->pathname) == 0;
862 dav_resource_private *ctx2 = res2->info;
869 /* it is safe to use ctx2 now */
870 len2 = strlen(ctx2->pathname);
873 && memcmp(ctx1->pathname, ctx2->pathname, len1) == 0
874 && ctx2->pathname[len1] == '/');