Searched refs:accept (Results 1 - 25 of 66) sorted by relevance

123

/dalvik/libcore/luni/src/main/java/java/io/
H A DFileFilter.java40 public abstract boolean accept(File pathname); method in interface:FileFilter
H A DFilenameFilter.java40 public abstract boolean accept(File dir, String filename); method in interface:FilenameFilter
/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DServerSocketChannel.java33 * open()} method. Calling {@code accept} before bound will cause a
93 * accept()} method of the {@link ServerSocket} class.
114 public abstract SocketChannel accept() throws IOException; method in class:ServerSocketChannel
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DMockServerSocketChannel.java36 public SocketChannel accept() throws IOException { method in class:MockServerSocketChannel
H A DServerSocketChannelTest.java305 // Test for accept()
309 * Test method for 'com.ibm.io.nio.ServerSocketChannelImpl.accept()'
314 method = "accept",
321 this.serverChannel.accept();
331 method = "accept",
338 this.serverChannel.accept();
348 method = "accept",
355 this.serverChannel.accept();
365 method = "accept",
386 this.serverChannel.accept();
[all...]
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DServerSocketChannelImpl.java71 // lock for accept
109 * @see java.nio.channels.ServerSocketChannel#accept()
111 public SocketChannel accept() throws IOException { method in class:ServerSocketChannelImpl
141 // do accept.
144 ((ServerSocketAdapter) socket).accept(socketGot,
149 // continue to accept if the channel is in blocking
168 // Do nothing here. For real accept() operation in nonblocking mode,
220 * @see java.net.ServerSocket#accept()
226 public Socket accept() throws IOException { method in class:ServerSocketChannelImpl.ServerSocketAdapter
230 SocketChannel sc = channelImpl.accept();
240 private Socket accept(Socket aSocket, SocketChannelImpl sockChannel) method in class:ServerSocketChannelImpl.ServerSocketAdapter
[all...]
H A DPipeImpl.java49 source.accept();
119 void accept() throws IOException { method in class:PipeImpl.SourceChannelImpl
120 sourceSocket = (SocketChannelImpl) sourceServer.accept();
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DServerSocketTest.java147 sconn = s.accept();
148 assertNotNull("Was unable to accept connection", sconn);
157 sconn = s.accept();
158 assertNotNull("Was unable to accept connection", sconn);
218 sconn = s.accept();
267 sconn = s.accept();
268 assertNotNull("Was unable to accept connection", sconn);
318 * @tests java.net.ServerSocket#accept()
323 method = "accept",
331 sconn = s.accept();
1367 protected void accept(SocketImpl arg0) throws IOException { method in class:ServerSocketTest.MockSocketImpl
[all...]
H A DUnixSocketTest.java49 Socket worker = pingServer.accept();
H A DSocketTest.java68 s1 = ss.accept();
73 + ", accept() timeout fired: " + x);
76 System.out.println("Unable to accept: " + e.toString());
1158 Socket servSock = serverSocket.accept();
1204 Socket servSock = serverSocket.accept();
1388 Socket servSock = serverSocket.accept();
1404 servSock = serverSocket.accept();
1438 Socket servSock = serverSocket.accept();
1453 servSock = serverSocket.accept();
1474 Socket servSock = serverSocket.accept();
3263 protected void accept(SocketImpl arg0) throws IOException { method in class:SocketTest.MockSocketImpl
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DFillArrayDataInsn.java90 public void accept(Visitor visitor) { method in class:FillArrayDataInsn
H A DInsnList.java76 get(i).accept(visitor);
H A DPlainCstInsn.java57 public void accept(Visitor visitor) { method in class:PlainCstInsn
H A DSwitchInsn.java70 public void accept(Visitor visitor) { method in class:SwitchInsn
H A DThrowingCstInsn.java72 public void accept(Visitor visitor) { method in class:ThrowingCstInsn
H A DThrowingInsn.java92 public void accept(Visitor visitor) { method in class:ThrowingInsn
H A DPlainInsn.java78 public void accept(Visitor visitor) { method in class:PlainInsn
/dalvik/hit/src/com/android/hit/
H A DInstance.java39 public boolean accept(Instance instance); method in interface:Instance.Filter
H A DRootObj.java90 if (filter.accept(this)) {
H A DArrayInstance.java86 if (filter.accept(this)) {
/dalvik/vm/jdwp/
H A DJdwpPriv.h55 bool (*accept)(struct JdwpState* state); member in struct:JdwpTransport
145 return (*state->transport->accept)(state);
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaInsn.java265 public abstract void accept(Visitor v); method in class:SsaInsn
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
H A DTouchDex.java95 public boolean accept(File dir, String name) {
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java84 * the socket to accept connections on.
88 protected abstract void accept(SocketImpl newSocket) throws IOException; method in class:SocketImpl
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
H A DHttpURLConnectionTest.java78 serverSocket.accept().close();
100 Socket socket = serverSocket.accept();
111 socket = serverSocket.accept();

Completed in 596 milliseconds

123