Searched defs:impl (Results 1 - 11 of 11) sorted by relevance

/libcore/support/src/test/java/tests/resources/ServiceLoader/
H A Dhyts_services.jar ... resources.ServiceLoader.ServiceMoreThanOne tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfAbstractService.class ImplementationOfAbstractService.java package ...
H A Dhyts_services2.jar ... resources.ServiceLoader.ServiceIn2File tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfServiceIn2File2.class ImplementationOfServiceIn2File2.java package ...
/libcore/dom/src/test/java/org/w3c/domts/
H A DLSDocumentBuilderFactory.java34 private final DOMImplementation impl; field in class:LSDocumentBuilderFactory
279 impl = (DOMImplementation) getDOMImplementationMethod.invoke(domRegistry,
281 Method createLSParserMethod = impl.getClass().getMethod("createLSParser",
283 parser = createLSParserMethod.invoke(impl,
349 return impl;
/libcore/luni/src/main/java/java/net/
H A DServerSocket.java39 private final SocketImpl impl; field in class:ServerSocket
45 return impl;
62 this.impl = factory != null ? factory.createSocketImpl()
64 impl.create(true);
99 this.impl = factory != null ? factory.createSocketImpl()
104 impl.create(true);
106 impl.bind(addr, port);
108 impl.listen(backlog > 0 ? backlog : DEFAULT_BACKLOG);
120 localAddress = IoBridge.getSocketLocalAddress(impl.fd);
164 impl
[all...]
H A DDatagramSocket.java39 DatagramSocketImpl impl; field in class:DatagramSocket
113 impl.close();
124 impl.onClose();
135 impl.disconnect();
151 impl.onDisconnect();
155 impl = factory != null ? factory.createDatagramSocketImpl()
157 impl.create();
159 impl.bind(aPort, addr);
184 return IoBridge.getSocketLocalAddress(impl.fd);
203 return impl
[all...]
H A DSocket.java34 final SocketImpl impl; field in class:Socket
57 this.impl = factory != null ? factory.createSocketImpl() : new PlainSocketImpl();
85 this.impl = factory != null ? factory.createSocketImpl() : new PlainSocketImpl(proxy);
283 * @param impl
288 protected Socket(SocketImpl impl) throws SocketException { argument
289 this.impl = impl;
321 impl.close();
336 impl.onClose();
347 return impl
[all...]
/libcore/luni/src/main/java/java/util/
H A DTimer.java324 private final TimerImpl impl; field in class:Timer.FinalizerHelper
326 FinalizerHelper(TimerImpl impl) { argument
327 this.impl = impl;
332 synchronized (impl) {
333 impl.finished = true;
334 impl.notify();
349 private final TimerImpl impl; field in class:Timer
365 this.impl = new TimerImpl(name, isDaemon);
366 this.finalizer = new FinalizerHelper(impl);
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DServerSocketTest.java936 public MockSocket(SocketImpl impl) throws SocketException { argument
937 super(impl);
H A DDatagramSocketTest.java482 public TestDatagramSocket(DatagramSocketImpl impl) { argument
483 super(impl);
574 public SimpleTestDatagramSocket(DatagramSocketImpl impl) {
575 super(impl);
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java76 public DocumentImpl(DOMImplementationImpl impl, String namespaceURI, argument
80 this.domImplementation = impl;
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketTest.java461 public TestSocket(SocketImpl impl) throws SocketException { argument
462 super(impl);

Completed in 8420 milliseconds