OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inotify_fd
(Results
1 - 4
of
4
) sorted by null
/external/selinux/policycoreutils/restorecond/
utmpwatcher.c
48
unsigned int utmpwatcher_handle(int
inotify_fd
, int wd)
68
inotify_rm_watch(
inotify_fd
, utmp_wd);
71
inotify_add_watch(
inotify_fd
, utmp_path, IN_MOVED_FROM | IN_MODIFY);
82
static void watch_file(int
inotify_fd
, const char *file)
92
watch_list_add(
inotify_fd
, path);
99
void utmpwatcher_add(int
inotify_fd
, const char *path)
102
utmpwatcher_handle(
inotify_fd
, utmp_wd);
104
watch_file(
inotify_fd
, path);
utmpwatcher.h
26
unsigned int utmpwatcher_handle(int
inotify_fd
, int wd);
27
void utmpwatcher_add(int
inotify_fd
, const char *path);
restorecond.h
40
extern void watch_list_add(int
inotify_fd
, const char *path);
/frameworks/base/libs/usb/tests/accessorytest/
hid.c
158
int
inotify_fd
= inotify_init();
local
159
inotify_add_watch(
inotify_fd
, "/dev", IN_DELETE | IN_CREATE);
167
int count = read(
inotify_fd
, event_buf, sizeof(event_buf));
194
close(
inotify_fd
);
Completed in 225 milliseconds