Home
last modified time | relevance | path

Searched defs:arg0 (Results 1 – 25 of 45) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/net/
DOldDatagramSocketImplFactoryTest.java134 protected void bind(int arg0, InetAddress arg1) throws SocketException { in bind()
157 protected void join(InetAddress arg0) throws IOException { in join()
161 protected void joinGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { in joinGroup()
165 protected void leave(InetAddress arg0) throws IOException { in leave()
169 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { in leaveGroup()
173 public int peek(InetAddress arg0) throws IOException { in peek()
178 protected int peekData(DatagramPacket arg0) throws IOException { in peekData()
183 protected void receive(DatagramPacket arg0) throws IOException { in receive()
187 protected void send(DatagramPacket arg0) throws IOException { in send()
191 protected void setTTL(byte arg0) throws IOException { in setTTL()
[all …]
DOldSocketImplFactoryTest.java120 protected void accept(SocketImpl arg0) throws IOException { in accept()
129 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind()
137 protected void connect(String arg0, int arg1) throws IOException { in connect()
141 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect()
145 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect()
149 protected void create(boolean arg0) throws IOException { in create()
163 protected void listen(int arg0) throws IOException { in listen()
167 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData()
170 public Object getOption(int arg0) throws SocketException { in getOption()
174 public void setOption(int arg0, Object arg1) throws SocketException { in setOption()
DOldServerSocketTest.java331 protected void create(boolean arg0) throws IOException { in create()
334 protected void connect(String arg0, int arg1) throws IOException { in connect()
337 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect()
340 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect()
343 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind()
346 protected void listen(int arg0) throws IOException { in listen()
349 protected void accept(SocketImpl arg0) throws IOException { in accept()
367 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData()
370 public void setOption(int arg0, Object arg1) throws SocketException { in setOption()
373 public Object getOption(int arg0) throws SocketException { in getOption()
DSocketTest.java205 @Override protected void accept(SocketImpl arg0) throws IOException { } in test_SocketOptions_setOption()
207 @Override protected void bind(InetAddress arg0, int arg1) throws IOException { } in test_SocketOptions_setOption()
209 @Override protected void connect(String arg0, int arg1) throws IOException { } in test_SocketOptions_setOption()
210 @Override protected void connect(InetAddress arg0, int arg1) throws IOException { } in test_SocketOptions_setOption()
211 @Override protected void connect(SocketAddress arg0, int arg1) throws IOException { } in test_SocketOptions_setOption()
214 @Override protected void listen(int arg0) throws IOException { } in test_SocketOptions_setOption()
215 @Override protected void sendUrgentData(int arg0) throws IOException { } in test_SocketOptions_setOption()
216 public Object getOption(int arg0) throws SocketException { return null; } in test_SocketOptions_setOption()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStore3Test.java186 public boolean engineContainsAlias(String arg0) { in engineContainsAlias()
190 public void engineDeleteEntry(String arg0) throws KeyStoreException { in engineDeleteEntry()
193 public Certificate engineGetCertificate(String arg0) { in engineGetCertificate()
197 public String engineGetCertificateAlias(Certificate arg0) { in engineGetCertificateAlias()
201 public Certificate[] engineGetCertificateChain(String arg0) { in engineGetCertificateChain()
205 public Date engineGetCreationDate(String arg0) { in engineGetCreationDate()
209 public Key engineGetKey(String arg0, char[] arg1) in engineGetKey()
214 public boolean engineIsCertificateEntry(String arg0) { in engineIsCertificateEntry()
218 public boolean engineIsKeyEntry(String arg0) { in engineIsKeyEntry()
222 public void engineLoad(InputStream arg0, char[] arg1) in engineLoad()
[all …]
DMessageDigestSpiTest.java192 public void engineUpdate(byte arg0) { in engineUpdate()
196 public void engineUpdate(byte[] arg0, int arg1, int arg2) { in engineUpdate()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DMockDatagramChannel.java35 public MockDatagramChannel(SelectorProvider arg0) { in MockDatagramChannel()
50 public DatagramChannel connect(SocketAddress arg0) throws IOException { in connect()
60 public SocketAddress receive(ByteBuffer arg0) throws IOException { in receive()
65 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { in send()
70 public int read(ByteBuffer arg0) throws IOException { in read()
75 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read()
80 public int write(ByteBuffer arg0) throws IOException { in write()
85 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write()
95 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking()
DMockSocketChannel.java32 protected MockSocketChannel(SelectorProvider arg0) { in MockSocketChannel()
52 public boolean connect(SocketAddress arg0) throws IOException { in connect()
62 public int read(ByteBuffer arg0) throws IOException { in read()
67 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read()
72 public int write(ByteBuffer arg0) throws IOException { in write()
77 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write()
86 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking()
DMockServerSocketChannel.java32 protected MockServerSocketChannel(SelectorProvider arg0) { in MockServerSocketChannel()
51 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
DX509ExtendedKeyManagerTest.java43 public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) { in chooseClientAlias()
51 public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) { in chooseServerAlias()
59 public X509Certificate[] getCertificateChain(String arg0) { in getCertificateChain()
67 public String[] getClientAliases(String arg0, Principal[] arg1) { in getClientAliases()
75 public PrivateKey getPrivateKey(String arg0) { in getPrivateKey()
83 public String[] getServerAliases(String arg0, Principal[] arg1) { in getServerAliases()
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DSSLSocketFactoryImpl.java50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException { in createSocket()
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException { in createSocket()
68 …public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, … in createSocket()
77 …public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOExcept… in createSocket()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
DMockAbstractSelector.java32 public MockAbstractSelector(SelectorProvider arg0) { in MockAbstractSelector()
48 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1, in register()
77 public int select(long arg0) throws IOException { in select()
DAbstractSelectionKeyTest.java68 public SelectionKey interestOps(int arg0) { in interestOps()
/libcore/luni/src/test/java/tests/security/interfaces/
DUtil.java94 protected byte[] engineGenerateSeed(int arg0) { in engineGenerateSeed()
105 protected void engineSetSeed(byte[] arg0) { in engineSetSeed()
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DMyMessageDigest1.java68 public void engineUpdate(byte arg0) { in engineUpdate()
75 public void engineUpdate(byte[] arg0, int arg1, int arg2) { in engineUpdate()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DServerSocketTest.java920 protected void create(boolean arg0) throws IOException { in create()
924 protected void connect(String arg0, int arg1) throws IOException { in connect()
928 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect()
932 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect()
936 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind()
940 protected void listen(int arg0) throws IOException { in listen()
944 protected void accept(SocketImpl arg0) throws IOException { in accept()
964 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData()
968 public void setOption(int arg0, Object arg1) throws SocketException { in setOption()
972 public Object getOption(int arg0) throws SocketException { in getOption()
DDatagramSocketTest.java430 protected void bind(int arg0, InetAddress arg1) in bind()
435 protected void send(DatagramPacket arg0) throws IOException { in send()
439 protected int peek(InetAddress arg0) throws IOException { in peek()
444 protected int peekData(DatagramPacket arg0) throws IOException { in peekData()
449 protected void receive(DatagramPacket arg0) throws IOException { in receive()
453 protected void setTTL(byte arg0) throws IOException { in setTTL()
462 protected void setTimeToLive(int arg0) throws IOException { in setTimeToLive()
471 protected void join(InetAddress arg0) throws IOException { in join()
480 protected void leave(InetAddress arg0) throws IOException { in leave()
484 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) in leaveGroup()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DUTF16CharsetTest.java27 public UTF16CharsetTest(String arg0) { in UTF16CharsetTest()
DUTF16LECharsetTest.java27 public UTF16LECharsetTest(String arg0) { in UTF16LECharsetTest()
DUTF16BECharsetTest.java27 public UTF16BECharsetTest(String arg0) { in UTF16BECharsetTest()
DISOCharsetTest.java27 public ISOCharsetTest(String arg0) { in ISOCharsetTest()
DASCCharsetTest.java28 public ASCCharsetTest(String arg0) { in ASCCharsetTest()
DCharsetEncoder2Test.java91 public MockCharsetEncoderForHarmony491(Charset arg0, float arg1, in MockCharsetEncoderForHarmony491()
96 protected CoderResult encodeLoop(CharBuffer arg0, ByteBuffer arg1) { in encodeLoop()
100 public boolean isLegalReplacement(byte[] arg0) { in isLegalReplacement()
DUTF8CharsetTest.java30 public UTF8CharsetTest(String arg0) { in UTF8CharsetTest()
/libcore/luni/src/test/java/libcore/java/util/
DOldFormattableTest.java29 public void formatTo(Formatter arg0, int arg1, int arg2, int arg3) { in formatTo()

12