Home | History | Annotate | Download | only in inotify

Lines Matching full:path

3 /* inotify-path.c - GVFS Directory Monitor based on inotify.
35 #include "inotify-path.h"
46 char *path;
64 /* path -> ip_watched_dir */
78 static ip_watched_dir_t *ip_watched_dir_new (const char *path,
110 ip_map_path_dir (const char *path,
113 g_assert (path && dir);
114 g_hash_table_insert (path_dir_hash, dir->path, dir);
168 * wd hash and path hash
183 ip_unmap_path_dir (const char *path,
186 g_assert (path && dir);
187 g_hash_table_remove (path_dir_hash, dir->path);
255 _ik_ignore (dir->path, dir->wd);
257 ip_unmap_path_dir (dir->path, dir);
266 ip_watched_dir_new (const char *path,
271 dir->path = g_strdup (path);
281 g_free (dir->path);
299 /* Unassociate the path and the directory */
300 ip_unmap_path_dir (dir->path, dir);