Searched defs:event (Results 1 - 20 of 20) sorted by relevance

/libcore/luni/src/main/java/libcore/net/event/
H A DNetworkEventListener.java17 package libcore.net.event;
H A DNetworkEventDispatcher.java17 package libcore.net.event;
75 System.logI("Exception thrown during network event propagation", e);
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DHandshakeCompletedListener.java50 * @param event the event identifying when the SSL Handshake
53 void handshakeCompleted(HandshakeCompletedEvent event); argument
H A DSSLSessionBindingListener.java33 * they are being bound or unbound from a SSLSession. When either event
35 * or {@link SSLSession#removeValue(String)}, the event is communicated
53 * @param event the event identifying the SSLSession into
56 public void valueBound(SSLSessionBindingEvent event); argument
62 * @param event the event identifying the SSLSession from
65 public void valueUnbound(SSLSessionBindingEvent event); argument
/libcore/ojluni/src/main/java/javax/sql/
H A DConnectionEventListener.java58 * @param event an event object describing the source of
59 * the event
61 void connectionClosed(ConnectionEvent event); argument
70 * @param event an event object describing the source of
71 * the event and containing the <code>SQLException</code> that the
74 void connectionErrorOccurred(ConnectionEvent event); argument
H A DRowSetListener.java31 * event happens in the life of a <code>RowSet</code> object.
35 * when it is notified of an event.
46 * The source of the event can be retrieved with the method
47 * <code>event.getSource</code>.
49 * @param event a <code>RowSetEvent</code> object that contains
50 * the <code>RowSet</code> object that is the source of the event
52 void rowSetChanged(RowSetEvent event); argument
58 * The source of the event can be retrieved with the method
59 * <code>event.getSource</code>.
61 * @param event
64 rowChanged(RowSetEvent event) argument
76 cursorMoved(RowSetEvent event) argument
[all...]
H A DStatementEventListener.java63 * @param event an event object describing the source of
64 * the event and that the <code>PreparedStatement</code> was closed.
67 void statementClosed(StatementEvent event); argument
74 * contained in the given event, to the application.
76 * @param event an event object describing the source of the event,
78 * driver is about to throw. The source of the event is
84 void statementErrorOccurred(StatementEvent event); argument
[all...]
/libcore/ojluni/src/main/java/java/beans/
H A DPropertyChangeListenerProxy.java65 * Forwards the property change event to the listener delegate.
67 * @param event the property change event
69 public void propertyChange(PropertyChangeEvent event) { argument
70 getListener().propertyChange(event);
H A DPropertyChangeSupport.java125 * If <code>listener</code> was added more than once to the same event
209 * If <code>listener</code> was added more than once to the same event
252 * No event is fired if old and new values are equal and non-null.
272 * No event is fired if old and new values are equal.
292 * No event is fired if old and new values are equal.
308 * Fires a property change event to listeners
312 * No event is fired if the given event's old and new values are equal and non-null.
314 * @param event the {@code PropertyChangeEvent} to be fired
316 public void firePropertyChange(PropertyChangeEvent event) { argument
332 fire(PropertyChangeListener[] listeners, PropertyChangeEvent event) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DNodeChangeEventTest.java30 NodeChangeEvent event; field in class:NodeChangeEventTest
33 event = new NodeChangeEvent(Preferences.systemRoot(), Preferences
35 assertSame(Preferences.systemRoot(), event.getParent());
36 assertSame(Preferences.userRoot(), event.getChild());
37 assertSame(Preferences.systemRoot(), event.getSource());
42 event = new NodeChangeEvent(null, Preferences.userRoot());
47 event = new NodeChangeEvent(Preferences.systemRoot(), null);
48 assertSame(Preferences.systemRoot(), event.getParent());
49 assertNull(event.getChild());
50 assertSame(Preferences.systemRoot(), event
[all...]
H A DPreferenceChangeEventTest.java30 PreferenceChangeEvent event; field in class:PreferenceChangeEventTest
34 event = new PreferenceChangeEvent(null, "key", "value");
41 event = new PreferenceChangeEvent(Preferences.userRoot(), "key", null);
42 assertEquals("key", event.getKey());
43 assertNull(event.getNewValue());
44 assertSame(Preferences.userRoot(), event.getNode());
45 assertSame(Preferences.userRoot(), event.getSource());
47 event = new PreferenceChangeEvent(Preferences.userRoot(), "", null);
48 assertEquals("", event.getKey());
49 assertNull(event
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DSSLSessionBindingListenerTest.java47 public void valueBound(SSLSessionBindingEvent event) { argument
48 if (event != null) boundDone = true;
50 public void valueUnbound(SSLSessionBindingEvent event) { argument
51 if (event != null) unboundDone = true;
59 * javax.net.ssl.SSLSessionBindingListener#valueBound(SSLSessionBindingEvent event)
74 * javax.net.ssl.SSLSessionBindingListener#valueUnbound(SSLSessionBindingEvent event)
H A DHandshakeCompletedEventTest.java75 HandshakeCompletedEvent event = new HandshakeCompletedEvent(socket, session);
90 HandshakeCompletedEvent event = new HandshakeCompletedEvent(socket, session);
91 assertEquals("SuiteName", event.getCipherSuite());
101 HandshakeCompletedEvent event = new HandshakeCompletedEvent(socket, session);
102 assertNull(event.getLocalCertificates());
112 HandshakeCompletedEvent event = new HandshakeCompletedEvent(socket, session);
113 assertNull(event.getLocalPrincipal());
124 HandshakeCompletedEvent event = new HandshakeCompletedEvent(socket, session);
126 event.getPeerCertificateChain();
134 event
607 handshakeCompleted(HandshakeCompletedEvent event) argument
[all...]
H A DSSLSocketTest.java45 public void handshakeCompleted(HandshakeCompletedEvent event) { argument
H A DSSLSessionTest.java333 public void valueBound(SSLSessionBindingEvent event) {} argument
334 public void valueUnbound(SSLSessionBindingEvent event) {} argument
/libcore/luni/src/test/java/libcore/libcore/net/event/
H A DNetworkEventDispatcherTest.java17 package libcore.libcore.net.event;
21 import libcore.net.event.NetworkEventDispatcher;
22 import libcore.net.event.NetworkEventListener;
/libcore/ojluni/src/main/native/
H A DEPoll.c74 struct epoll_event event; local
77 event.events = events;
78 event.data.fd = fd;
80 RESTARTABLE(epoll_ctl(epfd, (int)opcode, (int)fd, &event), res); local
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DDdmServer.java92 * JDWP "event", which does not elicit a response from the server.
108 private static void broadcast(int event) argument
116 switch (event) {
/libcore/luni/src/test/java/libcore/java/util/beans/
H A DPropertyChangeSupportTest.java178 public void propertyChange(PropertyChangeEvent event) {}
194 public void propertyChange(PropertyChangeEvent event) {}
270 public void propertyChange(PropertyChangeEvent event) { argument
271 log.add(event);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DAbstractPollArrayWrapper.java71 void putEventOps(int i, int event) { argument
73 pollArray.putShort(offset, (short)event);

Completed in 479 milliseconds