/libcore/ojluni/src/main/java/javax/sql/ |
ConnectionEventListener.java | 61 void connectionClosed(ConnectionEvent event); 68 * contained in the given <code>ConnectionEvent</code> object. 74 void connectionErrorOccurred(ConnectionEvent event);
|
ConnectionEvent.java | 32 * source of a connection-related event. <code>ConnectionEvent</code> 34 * and when an error occurs. The <code>ConnectionEvent</code> object 45 public class ConnectionEvent extends java.util.EventObject { 48 * <P>Constructs a <code>ConnectionEvent</code> object initialized with 55 public ConnectionEvent(PooledConnection con) { 60 * <P>Constructs a <code>ConnectionEvent</code> object initialized with 68 public ConnectionEvent(PooledConnection con, SQLException ex) { 75 * <code>ConnectionEvent</code> object. May be <code>null</code>.
|
/libcore/luni/src/test/java/libcore/javax/sql/ |
OldConnectionEventTest.java | 22 import javax.sql.ConnectionEvent; 32 ConnectionEvent ce = new ConnectionEvent(ipc); 33 ConnectionEvent ce2 = new ConnectionEvent(ipc,null); 39 ConnectionEvent ce = new ConnectionEvent(ipc); 41 ConnectionEvent ce2 = new ConnectionEvent(ipc, null); 46 ConnectionEvent ce3 = new ConnectionEvent(ipc, e) [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
ConnectionEventTest.java | 22 import javax.sql.ConnectionEvent; 33 new ConnectionEvent(null); 39 ConnectionEvent ce = new ConnectionEvent(ipc); 46 new ConnectionEvent(null, null); 52 ConnectionEvent ce = new ConnectionEvent(ipc, null); 57 ce = new ConnectionEvent(ipc, e); 68 ConnectionEvent ce = new ConnectionEvent(ipc, e) [all...] |
/device/google/wahoo/wifi_offload/ |
chre_interface_callbacks.h | 30 enum ConnectionEvent { CONNECTED, DISCONNECTED, CONNECTION_ABORT }; 34 virtual void handleConnectionEvents(ConnectionEvent event) = 0;
|
chre_interface.cpp | 140 void ChreInterface::reportConnectionEvent(ChreInterfaceCallbacks::ConnectionEvent event) { 143 case ChreInterfaceCallbacks::ConnectionEvent::CONNECTED: 149 case ChreInterfaceCallbacks::ConnectionEvent::DISCONNECTED: 150 case ChreInterfaceCallbacks::ConnectionEvent::CONNECTION_ABORT:
|
chre_interface.h | 70 void reportConnectionEvent(ChreInterfaceCallbacks::ConnectionEvent /* event */);
|
offload_server.cpp | 156 ChreInterfaceCallbacks::ConnectionEvent event) { 158 case ChreInterfaceCallbacks::ConnectionEvent::DISCONNECTED: 159 case ChreInterfaceCallbacks::ConnectionEvent::CONNECTION_ABORT: { 164 case ChreInterfaceCallbacks::ConnectionEvent::CONNECTED: {
|
offload_server.h | 22 void handleConnectionEvents(ChreInterfaceCallbacks::ConnectionEvent event);
|
/device/google/wahoo/wifi_offload/test/ |
mock_chre_interface_callbacks.h | 37 MOCK_METHOD1(handleConnectionEvents, void(ChreInterfaceCallbacks::ConnectionEvent event));
|
mock_chre_interface.h | 40 MOCK_METHOD1(reportConnectionEvent, void(ChreInterfaceCallbacks::ConnectionEvent event));
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiMetricsTest.java | 95 WifiMetricsProto.ConnectionEvent.ROAM_ENTERPRISE); 97 WifiMetrics.ConnectionEvent.FAILURE_AUTHENTICATION_FAILURE, 98 WifiMetricsProto.ConnectionEvent.HLF_DHCP); 101 WifiMetrics.ConnectionEvent.FAILURE_AUTHENTICATION_FAILURE, 102 WifiMetricsProto.ConnectionEvent.HLF_DHCP); 105 WifiMetricsProto.ConnectionEvent.ROAM_ENTERPRISE); 107 WifiMetricsProto.ConnectionEvent.ROAM_ENTERPRISE); [all...] |
WifiConnectivityManagerTest.java | 673 * failure. A failure code that is not {@link WifiMetrics.ConnectionEvent#FAILURE_NONE} 681 WifiMetrics.ConnectionEvent.FAILURE_CONNECT_NETWORK_FAILED); 688 * failure after a successful connection. {@link WifiMetrics.ConnectionEvent#FAILURE_NONE} 696 WifiMetrics.ConnectionEvent.FAILURE_NONE); [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiMetrics.java | 99 * The ConnectionEvent, SystemStateEntries & ScanReturnEntries metrics are stored during 107 private final List<ConnectionEvent> mConnectionEventList = new ArrayList<>(); 111 private ConnectionEvent mCurrentConnectionEvent; 224 class ConnectionEvent { 225 WifiMetricsProto.ConnectionEvent mConnectionEvent; 264 private ConnectionEvent() { 265 mConnectionEvent = new WifiMetricsProto.ConnectionEvent(); 349 case WifiMetricsProto.ConnectionEvent.HLF_NONE: 352 case WifiMetricsProto.ConnectionEvent.HLF_DHCP: 355 case WifiMetricsProto.ConnectionEvent.HLF_NO_INTERNET [all...] |
WifiStateMachine.java | [all...] |
WifiConnectivityManager.java | [all...] |
/frameworks/base/proto/src/ |
wifi.proto | 28 repeated ConnectionEvent connection_event = 1; 423 message ConnectionEvent { [all...] |
/libcore/ |
openjdk_java_files.mk | [all...] |
/prebuilts/sdk/11/ |
android.jar | |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/13/ |
android.jar | |
/prebuilts/sdk/16/ |
android.jar | |
/prebuilts/sdk/17/ |
android.jar | |
/prebuilts/sdk/22/ |
android.jar | |
/prebuilts/sdk/23/ |
android.jar | |