Home
last modified time | relevance | path

Searched refs:TransportService (Results 1 – 10 of 10) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DGenericListeningConnector.java48 Map<Map<String,? extends Connector.Argument>, TransportService.ListenKey> listenMap;
49 TransportService transportService;
57 private GenericListeningConnector(TransportService ts, in GenericListeningConnector()
84 … listenMap = new HashMap<Map<String,? extends Connector.Argument>,TransportService.ListenKey>(10); in GenericListeningConnector()
92 protected GenericListeningConnector(TransportService ts) { in GenericListeningConnector()
100 public static GenericListeningConnector create(TransportService ts) { in create()
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()
DGenericAttachingConnector.java50 TransportService transportService;
58 private GenericAttachingConnector(TransportService ts, in GenericAttachingConnector()
93 protected GenericAttachingConnector(TransportService ts) { in GenericAttachingConnector()
101 public static GenericAttachingConnector create(TransportService ts) { in create()
DRawCommandLineLauncher.java41 TransportService transportService;
44 public TransportService transportService() { in transportService()
57 transportService = (TransportService)c.newInstance(); in RawCommandLineLauncher()
115 TransportService.ListenKey listener = transportService.startListening(address); in launch()
DAbstractLauncher.java128 TransportService.ListenKey listenKey, in launch()
129 TransportService ts) in launch()
150 private TransportService.ListenKey listenKey;
151 private TransportService ts;
158 Helper(String[] commandArray, String address, TransportService.ListenKey listenKey, in Helper()
159 TransportService ts) { in Helper()
DVirtualMachineManagerImpl.java113 ServiceLoader<TransportService> transportLoader = in VirtualMachineManagerImpl()
114 ServiceLoader.load(TransportService.class, in VirtualMachineManagerImpl()
115 TransportService.class.getClassLoader()); in VirtualMachineManagerImpl()
117 Iterator<TransportService> transportServices = in VirtualMachineManagerImpl()
121 TransportService transportService; in VirtualMachineManagerImpl()
DSunCommandLineLauncher.java47 TransportService transportService;
51 TransportService transportService() { in transportService()
68 transportService = (TransportService)c.newInstance(); in SunCommandLineLauncher()
176 TransportService.ListenKey listenKey; in launch()
DProcessAttachingConnector.java124 TransportService ts = null; in attach()
131 ts = (TransportService)c.newInstance(); in attach()
DSocketTransportService.java41 public class SocketTransportService extends TransportService {
518 class SocketTransportServiceCapabilities extends TransportService.Capabilities {
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/
DTransport.java28 import com.sun.jdi.connect.spi.TransportService; // for javadoc
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/
DTransportService.java81 public abstract class TransportService { class