Home
last modified time | relevance | path

Searched refs:inotify_event (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/SemaCXX/
Dflexible-array-test.cpp24 struct inotify_event struct
36 inotify_event event; in foo() argument
37 inotify_event* ptr = &event; in foo()
38 inotify_event event1 = *ptr; in foo()
40 QMap<int, inotify_event> eventForId; in foo()
/external/selinux/policycoreutils/restorecond/
Duser.c105 #define EVENT_SIZE (sizeof (struct inotify_event))
133 struct inotify_event *event; in io_channel_callback()
134 event = (struct inotify_event *)&buffer[i]; in io_channel_callback()
Dwatch.c24 #define EVENT_SIZE (sizeof (struct inotify_event))
183 struct inotify_event *event; in watch()
184 event = (struct inotify_event *)&buf[i]; in watch()
/external/dbus/bus/
Ddir-watch-inotify.c41 #define INOTIFY_EVENT_SIZE (sizeof(struct inotify_event))
69 struct inotify_event *ev; in _handle_inotify_watch()
72 ev = (struct inotify_event *) &buffer[i]; in _handle_inotify_watch()
/external/toybox/toys/other/
Dinotifyd.c74 struct inotify_event *event; in inotifyd_main()
87 size = sizeof(struct inotify_event); in inotifyd_main()
/external/libchrome/base/files/
Dfile_path_watcher_linux.cc61 void OnInotifyEvent(const inotify_event* event);
247 inotify_event* event = reinterpret_cast<inotify_event*>(&buffer[i]); in InotifyReaderCallback()
248 size_t event_size = sizeof(inotify_event) + event->len; in InotifyReaderCallback()
327 void InotifyReader::OnInotifyEvent(const inotify_event* event) { in OnInotifyEvent()
/external/kernel-headers/original/uapi/linux/
Dinotify.h20 struct inotify_event { struct
/external/iproute2/ip/
Dipnetns.c738 struct inotify_event *event; in netns_monitor()
762 for (event = (struct inotify_event *)buf; in netns_monitor()
764 event = (struct inotify_event *)((char *)event + sizeof(*event) + event->len)) { in netns_monitor()
/external/toybox/toys/posix/
Dtail.c250 struct inotify_event ev; in tail_main()