Lines Matching refs:paths
223 char** paths;
237 paths = eventPaths;
253 path = paths[i];
259 /* Filter out paths that are outside handle's request */
334 CFArrayRef paths) {
369 paths,
409 CFStringRef* paths;
414 paths = NULL;
437 /* Create list of all watched paths */
441 paths = uv__malloc(sizeof(*paths) * path_count);
442 if (paths == NULL) {
454 paths[i] =
456 if (paths[i] == NULL) {
467 cf_paths = pCFArrayCreate(NULL, (const void**) paths, path_count, NULL);
476 /* Deallocate all paths in case of failure */
480 pCFRelease(paths[--i]);
481 uv__free(paths);