Home
last modified time | relevance | path

Searched refs:event_buf (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/core/jni/
H A Dandroid_util_FileObserver.cpp55 char event_buf[512]; in android_os_fileobserver_observe() local
61 int num_bytes = read(fd, event_buf, sizeof(event_buf)); in android_os_fileobserver_observe()
75 event = (struct inotify_event *)(event_buf + event_pos); in android_os_fileobserver_observe()
/aosp14/frameworks/base/libs/usb/tests/accessorytest/
H A Dhid.c162 char event_buf[512]; in inotify_thread() local
167 int count = read(inotify_fd, event_buf, sizeof(event_buf)); in inotify_thread()
175 event = (struct inotify_event *)(event_buf + event_pos); in inotify_thread()
/aosp14/system/core/init/
H A Dkeychords.cpp229 auto event_buf = buf; in InotifyHandler() local
231 auto event = reinterpret_cast<inotify_event*>(event_buf); in InotifyHandler()
245 event_buf += event_size; in InotifyHandler()
/aosp14/system/core/toolbox/
H A Dgetevent.c436 char event_buf[512]; in read_notify() local
441 res = read(nfd, event_buf, sizeof(event_buf)); in read_notify()
455 event = (struct inotify_event *)(event_buf + event_pos); in read_notify()
/aosp14/system/core/libusbhost/
H A Dusbhost.c226 char event_buf[512]; in usb_host_read_event() local
232 ret = read(context->fd, event_buf, sizeof(event_buf)); in usb_host_read_event()
235 event = (struct inotify_event*)&event_buf[offset]; in usb_host_read_event()