Home
last modified time | relevance | path

Searched refs:arg0 (Results 1 – 25 of 53) sorted by relevance

123

/libcore/luni/src/test/java/libcore/java/net/
DOldDatagramSocketImplFactoryTest.java134 protected void bind(int arg0, InetAddress arg1) throws SocketException { in bind() argument
157 protected void join(InetAddress arg0) throws IOException { in join() argument
161 protected void joinGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { in joinGroup() argument
165 protected void leave(InetAddress arg0) throws IOException { in leave() argument
169 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { in leaveGroup() argument
173 public int peek(InetAddress arg0) throws IOException { in peek() argument
178 protected int peekData(DatagramPacket arg0) throws IOException { in peekData() argument
183 protected void receive(DatagramPacket arg0) throws IOException { in receive() argument
187 protected void send(DatagramPacket arg0) throws IOException { in send() argument
191 protected void setTTL(byte arg0) throws IOException { in setTTL() argument
[all …]
DOldSocketImplFactoryTest.java120 protected void accept(SocketImpl arg0) throws IOException { in accept() argument
129 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind() argument
137 protected void connect(String arg0, int arg1) throws IOException { in connect() argument
141 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect() argument
145 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect() argument
149 protected void create(boolean arg0) throws IOException { in create() argument
163 protected void listen(int arg0) throws IOException { in listen() argument
167 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData() argument
170 public Object getOption(int arg0) throws SocketException { in getOption() argument
174 public void setOption(int arg0, Object arg1) throws SocketException { in setOption() argument
DOldServerSocketTest.java331 protected void create(boolean arg0) throws IOException { in create() argument
334 protected void connect(String arg0, int arg1) throws IOException { in connect() argument
337 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect() argument
340 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect() argument
343 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind() argument
346 protected void listen(int arg0) throws IOException { in listen() argument
349 protected void accept(SocketImpl arg0) throws IOException { in accept() argument
367 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData() argument
370 public void setOption(int arg0, Object arg1) throws SocketException { in setOption() argument
373 public Object getOption(int arg0) throws SocketException { in getOption() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DMockDatagramChannel.java35 public MockDatagramChannel(SelectorProvider arg0) { in MockDatagramChannel() argument
36 super(arg0); in MockDatagramChannel()
50 public DatagramChannel connect(SocketAddress arg0) throws IOException { in connect() argument
60 public SocketAddress receive(ByteBuffer arg0) throws IOException { in receive() argument
65 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { in send() argument
70 public int read(ByteBuffer arg0) throws IOException { in read() argument
75 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read() argument
80 public int write(ByteBuffer arg0) throws IOException { in write() argument
85 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write() argument
95 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
DMockSocketChannel.java32 protected MockSocketChannel(SelectorProvider arg0) { in MockSocketChannel() argument
33 super(arg0); in MockSocketChannel()
52 public boolean connect(SocketAddress arg0) throws IOException { in connect() argument
62 public int read(ByteBuffer arg0) throws IOException { in read() argument
67 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read() argument
72 public int write(ByteBuffer arg0) throws IOException { in write() argument
77 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write() argument
86 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
DMockServerSocketChannel.java32 protected MockServerSocketChannel(SelectorProvider arg0) { in MockServerSocketChannel() argument
33 super(arg0); in MockServerSocketChannel()
51 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStore3Test.java186 public boolean engineContainsAlias(String arg0) { in engineContainsAlias() argument
190 public void engineDeleteEntry(String arg0) throws KeyStoreException { in engineDeleteEntry() argument
193 public Certificate engineGetCertificate(String arg0) { in engineGetCertificate() argument
197 public String engineGetCertificateAlias(Certificate arg0) { in engineGetCertificateAlias() argument
201 public Certificate[] engineGetCertificateChain(String arg0) { in engineGetCertificateChain() argument
205 public Date engineGetCreationDate(String arg0) { in engineGetCreationDate() argument
209 public Key engineGetKey(String arg0, char[] arg1) in engineGetKey() argument
214 public boolean engineIsCertificateEntry(String arg0) { in engineIsCertificateEntry() argument
218 public boolean engineIsKeyEntry(String arg0) { in engineIsKeyEntry() argument
222 public void engineLoad(InputStream arg0, char[] arg1) in engineLoad() argument
[all …]
/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() argument
51 public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) { in chooseServerAlias() argument
59 public X509Certificate[] getCertificateChain(String arg0) { in getCertificateChain() argument
67 public String[] getClientAliases(String arg0, Principal[] arg1) { in getClientAliases() argument
75 public PrivateKey getPrivateKey(String arg0) { in getPrivateKey() argument
83 public String[] getServerAliases(String arg0, Principal[] arg1) { in getServerAliases() argument
DSSLServerSocketFactoryTest.java45 public ServerSocket createServerSocket(int arg0) throws IOException { in createServerSocket() argument
50 public ServerSocket createServerSocket(int arg0, int arg1) in createServerSocket() argument
56 public ServerSocket createServerSocket(int arg0, int arg1, in createServerSocket() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DRefSortedMap.java306 public boolean containsKey(Object arg0) {
307 return bsearch(arg0) >= 0;
310 public boolean containsValue(Object arg0) {
312 if (arg0.equals(v)) {
320 public V get(Object arg0) {
321 int idx = bsearch(arg0);
329 public V put(K arg0, V arg1) {
331 int idx = bsearch(arg0);
335 entries.add(-idx - 1, new MapEntry<K, V>(arg0, arg1));
339 public void putAll(Map<? extends K, ? extends V> arg0) {
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
DMockAbstractSelector.java32 public MockAbstractSelector(SelectorProvider arg0) { in MockAbstractSelector() argument
33 super(arg0); in MockAbstractSelector()
48 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1, in register() argument
77 public int select(long arg0) throws IOException { in select() argument
/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() argument
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException { in createSocket() argument
68 …public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, … in createSocket() argument
77 …public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOExcept… in createSocket() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DMockEnum.java46 public boolean equals(Object arg0) { in equals() argument
47 if (!(arg0 instanceof MockEnum)) { in equals()
50 MockEnum test = (MockEnum) arg0; in equals()
DMockEnum2.java49 public boolean equals(Object arg0) { in equals() argument
50 if (!(arg0 instanceof MockEnum2)) { in equals()
53 MockEnum2 test = (MockEnum2) arg0; in equals()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DUTF16CharsetTest.java27 public UTF16CharsetTest(String arg0) { in UTF16CharsetTest() argument
28 super(arg0, "UTF-16", new String[] { "UTF_16" }, true, true); in UTF16CharsetTest()
DUTF16LECharsetTest.java27 public UTF16LECharsetTest(String arg0) { in UTF16LECharsetTest() argument
28 super(arg0, "UTF-16LE", new String[] { "UTF_16LE", "X-UTF-16LE" }, in UTF16LECharsetTest()
DUTF16BECharsetTest.java27 public UTF16BECharsetTest(String arg0) { in UTF16BECharsetTest() argument
28 super(arg0, "UTF-16BE", new String[] { "X-UTF-16BE", "UTF_16BE" }, in UTF16BECharsetTest()
DISOCharsetTest.java27 public ISOCharsetTest(String arg0) { in ISOCharsetTest() argument
28 super(arg0, "ISO-8859-1", new String[] { "iso-ir-100", "8859_1", in ISOCharsetTest()
DASCCharsetTest.java28 public ASCCharsetTest(String arg0) { in ASCCharsetTest() argument
29 super(arg0, "US-ASCII", new String[] { "ISO646-US", "ASCII", "cp367", in ASCCharsetTest()
DUTF8CharsetTest.java30 public UTF8CharsetTest(String arg0) { in UTF8CharsetTest() argument
31 super(arg0, "UTF-8", new String[] { "UTF8" }, true, true); in UTF8CharsetTest()
DCharsetEncoder2Test.java91 public MockCharsetEncoderForHarmony491(Charset arg0, float arg1, in MockCharsetEncoderForHarmony491() argument
93 super(arg0, arg1, arg2); in MockCharsetEncoderForHarmony491()
96 protected CoderResult encodeLoop(CharBuffer arg0, ByteBuffer arg1) { in encodeLoop() argument
100 public boolean isLegalReplacement(byte[] arg0) { in isLegalReplacement() argument
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DMyMessageDigest1.java68 public void engineUpdate(byte arg0) { in engineUpdate() argument
75 public void engineUpdate(byte[] arg0, int arg1, int arg2) { in engineUpdate() argument
/libcore/luni/src/test/java/libcore/java/util/
DOldFormattableTest.java29 public void formatTo(Formatter arg0, int arg1, int arg2, int arg3) { in formatTo() argument
39 arg0.format(sb.toString()); in formatTo()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DResponseCacheTest.java60 public CacheResponse get(URI arg0, String arg1, Map arg2) in get() argument
65 public CacheRequest put(URI arg0, URLConnection arg1) in put() argument
/libcore/luni/src/test/java/tests/security/interfaces/
DUtil.java94 protected byte[] engineGenerateSeed(int arg0) { in engineGenerateSeed() argument
105 protected void engineSetSeed(byte[] arg0) { in engineSetSeed() argument

123