Home
last modified time | relevance | path

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

/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/
DTransportService.java235 public static abstract class ListenKey { class in TransportService
266 public abstract ListenKey startListening(String address) throws IOException; in startListening()
281 public abstract ListenKey startListening() throws IOException; in startListening()
305 public abstract void stopListening(ListenKey listenKey) throws IOException; in stopListening()
377 public abstract Connection accept(ListenKey listenKey, long acceptTimeout, in accept()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DGenericListeningConnector.java48 Map<Map<String,? extends Connector.Argument>, TransportService.ListenKey> listenMap;
84 … listenMap = new HashMap<Map<String,? extends Connector.Argument>,TransportService.ListenKey>(10); in GenericListeningConnector()
107 TransportService.ListenKey listener = listenMap.get(args); in startListening()
129 TransportService.ListenKey listener = listenMap.get(args); in stopListening()
148 TransportService.ListenKey listener = listenMap.get(args); in accept()
DSocketTransportService.java48 static class SocketListenKey extends ListenKey {
247 ListenKey startListening(String localaddress, int port) throws IOException { in startListening()
262 public ListenKey startListening(String address) throws IOException { in startListening()
289 public ListenKey startListening() throws IOException { in startListening()
296 public void stopListening(ListenKey listener) throws IOException { in stopListening()
316 …public Connection accept(ListenKey listener, long acceptTimeout, long handshakeTimeout) throws IOE… in accept()
DAbstractLauncher.java128 TransportService.ListenKey listenKey, in launch()
150 private TransportService.ListenKey listenKey;
158 Helper(String[] commandArray, String address, TransportService.ListenKey listenKey, in Helper()
DRawCommandLineLauncher.java115 TransportService.ListenKey listener = transportService.startListening(address); in launch()
DSunCommandLineLauncher.java176 TransportService.ListenKey listenKey; in launch()