Home
last modified time | relevance | path

Searched defs:events (Results 1 – 23 of 23) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/file/
DWatchable.java90 WatchEvent.Kind<?>[] events, in register()
125 WatchKey register(WatchService watcher, WatchEvent.Kind<?>... events) in register()
DPath.java662 WatchEvent.Kind<?>[] events, in register()
710 WatchEvent.Kind<?>... events) in register()
/libcore/ojluni/src/main/java/sun/nio/ch/
DEPollPort.java66 final int events; field in EPollPort.Event
68 Event(PollableChannel channel, int events) { in Event()
74 int events() { return events; } in events() method in EPollPort.Event
172 void startPoll(int fd, int events) { in startPoll()
225 int events = getEvents(eventAddress); in poll() local
DPort.java48 void onEvent(int events, boolean mayInvokeDirect); in onEvent()
114 abstract void startPoll(int fd, int events); in startPoll()
DEPoll.java110 static native int epollCtl(int epfd, int opcode, int fd, int events); in epollCtl()
DUnixAsynchronousSocketChannelImpl.java153 int events = 0; in updateEvents() local
216 public void onEvent(int events, boolean mayInvokeDirect) { in onEvent()
DUnixAsynchronousServerSocketChannelImpl.java154 public void onEvent(int events, boolean mayInvokeDirect) { in onEvent()
DServerSocketChannelImpl.java351 int poll(int events, long timeout) throws IOException { in poll()
DSocketChannelImpl.java1004 int poll(int events, long timeout) throws IOException { in poll()
DDatagramChannelImpl.java1149 int poll(int events, long timeout) throws IOException { in poll()
/libcore/ojluni/src/main/java/sun/nio/fs/
DAbstractPoller.java79 Set<? extends WatchEvent.Kind<?>> events, in implRegister()
96 WatchEvent.Kind<?>[] events, in register()
256 Set<? extends WatchEvent.Kind<?>> events = in processRequests() local
DPollingWatchService.java72 WatchEvent.Kind<?>[] events, in register()
DAbstractPath.java101 WatchEvent.Kind<?>... events) in register()
DAbstractWatchService.java66 WatchEvent.Kind<?>[] events, in register()
DAbstractWatchKey.java63 private List<WatchEvent<?>> events; field in AbstractWatchKey
DLinuxWatchService.java88 WatchEvent.Kind<?>[] events, in register()
218 Set<? extends WatchEvent.Kind<?>> events, in implRegister()
DUnixPath.java888 WatchEvent.Kind<?>[] events, in register()
/libcore/luni/src/main/java/android/system/
DStructPollfd.java34 public short events; field in StructPollfd
/libcore/luni/src/test/java/libcore/java/nio/file/
DLinuxPathTest.java367 WatchEvent.Kind<?>[] events = {ENTRY_CREATE, ENTRY_DELETE}; in test_register$WatchService$WatchEvent_Kind() local
402 WatchEvent.Kind<?>[] events = {ENTRY_CREATE, ENTRY_DELETE}; in test_register$WatchService$WatchEvent_Kind_NPE() local
431 WatchEvent.Kind<?>[] events = {new NonStandardEvent<>()}; in test_register$WatchService$WatchEvent_Kind_Exception() local
467 WatchEvent.Kind<?>[] events = {ENTRY_CREATE}; in test_register$WatchService$WatchEvent_Kind$WatchEvent_Modifier() local
483 WatchEvent.Kind<?>[] events = {ENTRY_CREATE}; in test_register$WatchService$WatchEvent_Kind$WatchEvent_Modifier_NPE() local
DWatchServiceTest.java167 WatchEvent.Kind<?>[] events = {ENTRY_DELETE}; in test_EventMask() local
/libcore/ojluni/src/main/native/
DEPoll.c74 jint opcode, jint fd, jint events) in Java_sun_nio_ch_EPoll_epollCtl()
91 struct epoll_event *events = jlong_to_ptr(address); in Java_sun_nio_ch_EPoll_epollWait() local
DNet.c771 Java_sun_nio_ch_Net_poll(JNIEnv* env, jclass this, jobject fdo, jint events, jlong timeout) in Java_sun_nio_ch_Net_poll()
/libcore/luni/src/main/java/libcore/io/
DIoBridge.java669 public static void poll(FileDescriptor fd, int events, int timeout) in poll()