Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Dflexible-array-test.cpp18 struct inotify_event struct
30 inotify_event event; in foo() argument
31 inotify_event* ptr = &event; in foo()
32 inotify_event event1 = *ptr; in foo()
34 QMap<int, inotify_event> eventForId; in foo()
/external/bluetooth/glib/gio/inotify/
Dinotify-kernel.c104 #define AVERAGE_EVENT_SIZE sizeof (struct inotify_event) + 16
235 struct inotify_event *kevent = (struct inotify_event *)buffer; in ik_event_new()
453 struct inotify_event *event; in ik_read_callback()
455 event = (struct inotify_event *)&buffer[buffer_i]; in ik_read_callback()
456 event_size = sizeof(struct inotify_event) + event->len; in ik_read_callback()
/external/chromium/base/files/
Dfile_path_watcher_linux.cc55 void OnInotifyEvent(const inotify_event* event);
200 inotify_event* event = reinterpret_cast<inotify_event*>(&buffer[i]); in Run()
201 size_t event_size = sizeof(inotify_event) + event->len; in Run()
287 void InotifyReader::OnInotifyEvent(const inotify_event* event) { in OnInotifyEvent()
/external/dbus/bus/
Ddir-watch-inotify.c41 #define INOTIFY_EVENT_SIZE (sizeof(struct inotify_event))
75 struct inotify_event *ev; in _handle_inotify_watch()
78 ev = (struct inotify_event *) &buffer[i]; in _handle_inotify_watch()
/external/kernel-headers/original/linux/
Dinotify.h18 struct inotify_event { struct
/external/chromium/net/proxy/
Dproxy_config_service_linux.cc835 char event_buf[(sizeof(inotify_event) + NAME_MAX + 1) * 4]; in OnChangeNotification()
843 inotify_event* event = reinterpret_cast<inotify_event*>(event_ptr); in OnChangeNotification()
845 CHECK_LE(event_ptr + sizeof(inotify_event), event_buf + r); in OnChangeNotification()