Home
last modified time | relevance | path

Searched refs:inotify_event (Results 1 – 14 of 14) 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/ltp/testcases/kernel/syscalls/inotify/
Dinotify05.c49 #define EVENT_SIZE (sizeof(struct inotify_event))
105 struct inotify_event *event; in main()
107 event = (struct inotify_event *)&event_buf[i]; in main()
Dinotify01.c49 #define EVENT_SIZE (sizeof (struct inotify_event))
151 struct inotify_event *event; in main()
152 event = (struct inotify_event *)&event_buf[i]; in main()
Dinotify03.c56 #define EVENT_SIZE (sizeof(struct inotify_event))
123 struct inotify_event *event; in main()
124 event = (struct inotify_event *)&event_buf[i]; in main()
Dinotify04.c59 #define EVENT_SIZE (sizeof(struct inotify_event))
206 struct inotify_event *event; in main()
207 event = (struct inotify_event *)&event_buf[i]; in main()
Dinotify02.c54 #define EVENT_SIZE (sizeof (struct inotify_event))
194 struct inotify_event *event; in main()
195 event = (struct inotify_event *)&event_buf[i]; in main()
/external/selinux/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))
188 struct inotify_event *event; in watch()
189 event = (struct inotify_event *)&buf[i]; in 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/ltp/testcases/kernel/syscalls/utils/
Dinotify.h18 struct inotify_event { struct
/external/toybox/toys/posix/
Dtail.c250 struct inotify_event ev; in tail_main()