Searched refs:ListenKey (Results 1 – 6 of 6) sorted by relevance
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/ |
D | TransportService.java | 235 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/ |
D | GenericListeningConnector.java | 48 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()
|
D | SocketTransportService.java | 48 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()
|
D | AbstractLauncher.java | 128 TransportService.ListenKey listenKey, in launch() 150 private TransportService.ListenKey listenKey; 158 Helper(String[] commandArray, String address, TransportService.ListenKey listenKey, in Helper()
|
D | RawCommandLineLauncher.java | 115 TransportService.ListenKey listener = transportService.startListening(address); in launch()
|
D | SunCommandLineLauncher.java | 176 TransportService.ListenKey listenKey; in launch()
|