Searched refs:arg0 (Results 1 - 25 of 49) sorted by relevance

12

/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
H A DUTF16CharsetTest.java27 public UTF16CharsetTest(String arg0) { argument
28 super(arg0, "UTF-16", new String[] { "UTF_16" }, true, true);
H A DASCCharsetTest.java28 public ASCCharsetTest(String arg0) { argument
29 super(arg0, "US-ASCII", new String[] { "ISO646-US", "ASCII", "cp367",
H A DISOCharsetTest.java27 public ISOCharsetTest(String arg0) { argument
28 super(arg0, "ISO-8859-1", new String[] { "iso-ir-100", "8859_1",
H A DUTF16BECharsetTest.java27 public UTF16BECharsetTest(String arg0) { argument
28 super(arg0, "UTF-16BE", new String[] { "X-UTF-16BE", "UTF_16BE" },
H A DUTF16LECharsetTest.java27 public UTF16LECharsetTest(String arg0) { argument
28 super(arg0, "UTF-16LE", new String[] { "UTF_16LE", "X-UTF-16LE" },
H A DUTF8CharsetTest.java30 public UTF8CharsetTest(String arg0) { argument
31 super(arg0, "UTF-8", new String[] { "UTF8" }, true, true);
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DMockSocketChannel.java29 protected MockSocketChannel(SelectorProvider arg0) { argument
30 super(arg0);
45 public boolean connect(SocketAddress arg0) throws IOException { argument
53 public int read(ByteBuffer arg0) throws IOException { argument
57 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
61 public int write(ByteBuffer arg0) throws IOException { argument
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
72 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
H A DMockDatagramChannel.java29 public MockDatagramChannel(SelectorProvider arg0) { argument
30 super(arg0);
41 public DatagramChannel connect(SocketAddress arg0) throws IOException { argument
49 public SocketAddress receive(ByteBuffer arg0) throws IOException { argument
53 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { argument
57 public int read(ByteBuffer arg0) throws IOException { argument
61 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
65 public int write(ByteBuffer arg0) throws IOException { argument
69 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
77 protected void implConfigureBlocking(boolean arg0) throw argument
[all...]
H A DMockServerSocketChannel.java28 protected MockServerSocketChannel(SelectorProvider arg0) { argument
29 super(arg0);
43 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyMessageDigest2.java56 public void engineUpdate(byte arg0) { argument
63 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
H A DMyMessageDigest1.java68 public void engineUpdate(byte arg0) { argument
75 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java120 protected void accept(SocketImpl arg0) throws IOException { argument
129 protected void bind(InetAddress arg0, int arg1) throws IOException { argument
137 protected void connect(String arg0, int arg1) throws IOException { argument
141 protected void connect(InetAddress arg0, int arg1) throws IOException { argument
145 protected void connect(SocketAddress arg0, int arg1) throws IOException { argument
149 protected void create(boolean arg0) throws IOException { argument
163 protected void listen(int arg0) throws IOException { argument
167 protected void sendUrgentData(int arg0) throws IOException { argument
170 public Object getOption(int arg0) throws SocketException { argument
174 public void setOption(int arg0, Objec argument
[all...]
H A DOldDatagramSocketImplFactoryTest.java134 protected void bind(int arg0, InetAddress arg1) throws SocketException { argument
157 protected void join(InetAddress arg0) throws IOException { argument
161 protected void joinGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { argument
165 protected void leave(InetAddress arg0) throws IOException { argument
169 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { argument
173 public int peek(InetAddress arg0) throws IOException { argument
178 protected int peekData(DatagramPacket arg0) throws IOException { argument
183 protected void receive(DatagramPacket arg0) throws IOException { argument
187 protected void send(DatagramPacket arg0) throws IOException { argument
191 protected void setTTL(byte arg0) throw argument
195 setTimeToLive(int arg0) argument
198 getOption(int arg0) argument
202 setOption(int arg0, Object arg1) argument
[all...]
H A DOldServerSocketTest.java340 protected void create(boolean arg0) throws IOException { argument
343 protected void connect(String arg0, int arg1) throws IOException { argument
346 protected void connect(InetAddress arg0, int arg1) throws IOException { argument
349 protected void connect(SocketAddress arg0, int arg1) throws IOException { argument
352 protected void bind(InetAddress arg0, int arg1) throws IOException { argument
355 protected void listen(int arg0) throws IOException { argument
358 protected void accept(SocketImpl arg0) throws IOException { argument
376 protected void sendUrgentData(int arg0) throws IOException { argument
379 public void setOption(int arg0, Object arg1) throws SocketException { argument
382 public Object getOption(int arg0) throw argument
[all...]
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DX509ExtendedKeyManagerTest.java43 public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) { argument
51 public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) { argument
59 public X509Certificate[] getCertificateChain(String arg0) { argument
67 public String[] getClientAliases(String arg0, Principal[] arg1) { argument
75 public PrivateKey getPrivateKey(String arg0) { argument
83 public String[] getServerAliases(String arg0, Principal[] arg1) { argument
H A DSSLServerSocketFactoryTest.java45 public ServerSocket createServerSocket(int arg0) throws IOException { argument
50 public ServerSocket createServerSocket(int arg0, int arg1) argument
56 public ServerSocket createServerSocket(int arg0, int arg1, argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DMockAbstractSelector.java32 public MockAbstractSelector(SelectorProvider arg0) { argument
33 super(arg0);
48 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1, argument
77 public int select(long arg0) throws IOException { argument
H A DAbstractSelectionKeyTest.java68 public SelectionKey interestOps(int arg0) { argument
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DSSLSocketFactoryImpl.java50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException { argument
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException { argument
68 public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, UnknownHostException { argument
77 public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOException { argument
/libcore/luni/src/main/java/java/security/
H A DSignature.java610 protected void engineUpdate(byte arg0) throws SignatureException { argument
611 spiImpl.engineUpdate(arg0);
616 protected boolean engineVerify(byte[] arg0) throws SignatureException { argument
617 return spiImpl.engineVerify(arg0);
622 protected void engineUpdate(byte[] arg0, int arg1, int arg2) argument
624 spiImpl.engineUpdate(arg0, arg1, arg2);
629 protected void engineInitSign(PrivateKey arg0) argument
631 spiImpl.engineInitSign(arg0);
636 protected void engineInitVerify(PublicKey arg0) argument
638 spiImpl.engineInitVerify(arg0);
643 engineGetParameter(String arg0) argument
650 engineSetParameter(String arg0, Object arg1) argument
[all...]
H A DMessageDigest.java178 * @param arg0
182 public void update(byte arg0) { argument
183 engineUpdate(arg0);
410 protected void engineUpdate(byte arg0) { argument
411 spiImpl.engineUpdate(arg0);
416 protected void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
417 spiImpl.engineUpdate(arg0, arg1, arg2);
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyStore3Test.java189 public boolean engineContainsAlias(String arg0) { argument
193 public void engineDeleteEntry(String arg0) throws KeyStoreException { argument
196 public Certificate engineGetCertificate(String arg0) { argument
200 public String engineGetCertificateAlias(Certificate arg0) { argument
204 public Certificate[] engineGetCertificateChain(String arg0) { argument
208 public Date engineGetCreationDate(String arg0) { argument
212 public Key engineGetKey(String arg0, char[] arg1) argument
217 public boolean engineIsCertificateEntry(String arg0) { argument
221 public boolean engineIsKeyEntry(String arg0) { argument
225 public void engineLoad(InputStream arg0, cha argument
231 engineSetCertificateEntry(String arg0, Certificate arg1) argument
236 engineSetKeyEntry(String arg0, byte[] arg1, Certificate[] arg2) argument
241 engineSetKeyEntry(String arg0, Key arg1, char[] arg2, Certificate[] arg3) argument
254 engineStore(OutputStream arg0, char[] arg1) argument
[all...]
/libcore/luni/src/test/java/libcore/java/util/
H A DOldFormattableTest.java29 public void formatTo(Formatter arg0, int arg1, int arg2, int arg3) { argument
39 arg0.format(sb.toString());
/libcore/luni/src/test/java/tests/security/interfaces/
H A DUtil.java94 protected byte[] engineGenerateSeed(int arg0) { argument
105 protected void engineSetSeed(byte[] arg0) { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
H A DCharsetEncoderTest.java91 public MockCharsetEncoderForHarmony491(Charset arg0, float arg1, argument
93 super(arg0, arg1, arg2);
96 protected CoderResult encodeLoop(CharBuffer arg0, ByteBuffer arg1) { argument
100 public boolean isLegalReplacement(byte[] arg0) { argument

Completed in 322 milliseconds

12