Lines Matching refs:paths
225 char** paths;
239 paths = eventPaths;
255 path = paths[i];
261 /* Filter out paths that are outside handle's request */
334 static int uv__fsevents_create_stream(uv_loop_t* loop, CFArrayRef paths) {
370 paths,
417 CFStringRef* paths;
423 paths = NULL;
446 /* Create list of all watched paths */
450 paths = uv__malloc(sizeof(*paths) * path_count);
451 if (paths == NULL) {
463 paths[i] =
465 if (paths[i] == NULL) {
476 cf_paths = pCFArrayCreate(NULL, (const void**) paths, path_count, NULL);
485 /* Deallocate all paths in case of failure */
489 pCFRelease(paths[--i]);
490 uv__free(paths);