Home
last modified time | relevance | path

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

123

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DMockDatagramChannel.java29 public MockDatagramChannel(SelectorProvider arg0) { in MockDatagramChannel() argument
30 super(arg0); in MockDatagramChannel()
44 public DatagramChannel connect(SocketAddress arg0) throws IOException { in connect() argument
54 public SocketAddress receive(ByteBuffer arg0) throws IOException { in receive() argument
59 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { in send() argument
64 public int read(ByteBuffer arg0) throws IOException { in read() argument
69 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read() argument
74 public int write(ByteBuffer arg0) throws IOException { in write() argument
79 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write() argument
89 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
DMockSocketChannel.java29 protected MockSocketChannel(SelectorProvider arg0) { in MockSocketChannel() argument
30 super(arg0); in MockSocketChannel()
49 public boolean connect(SocketAddress arg0) throws IOException { in connect() argument
59 public int read(ByteBuffer arg0) throws IOException { in read() argument
64 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in read() argument
69 public int write(ByteBuffer arg0) throws IOException { in write() argument
74 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { in write() argument
83 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
DMockServerSocketChannel.java28 protected MockServerSocketChannel(SelectorProvider arg0) { in MockServerSocketChannel() argument
29 super(arg0); in MockServerSocketChannel()
47 protected void implConfigureBlocking(boolean arg0) throws IOException { in implConfigureBlocking() argument
/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.java340 protected void create(boolean arg0) throws IOException { in create() argument
343 protected void connect(String arg0, int arg1) throws IOException { in connect() argument
346 protected void connect(InetAddress arg0, int arg1) throws IOException { in connect() argument
349 protected void connect(SocketAddress arg0, int arg1) throws IOException { in connect() argument
352 protected void bind(InetAddress arg0, int arg1) throws IOException { in bind() argument
355 protected void listen(int arg0) throws IOException { in listen() argument
358 protected void accept(SocketImpl arg0) throws IOException { in accept() argument
376 protected void sendUrgentData(int arg0) throws IOException { in sendUrgentData() argument
379 public void setOption(int arg0, Object arg1) throws SocketException { in setOption() argument
382 public Object getOption(int arg0) throws SocketException { in getOption() argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStore3Test.java189 public boolean engineContainsAlias(String arg0) { in engineContainsAlias() argument
193 public void engineDeleteEntry(String arg0) throws KeyStoreException { in engineDeleteEntry() argument
196 public Certificate engineGetCertificate(String arg0) { in engineGetCertificate() argument
200 public String engineGetCertificateAlias(Certificate arg0) { in engineGetCertificateAlias() argument
204 public Certificate[] engineGetCertificateChain(String arg0) { in engineGetCertificateChain() argument
208 public Date engineGetCreationDate(String arg0) { in engineGetCreationDate() argument
212 public Key engineGetKey(String arg0, char[] arg1) in engineGetKey() argument
217 public boolean engineIsCertificateEntry(String arg0) { in engineIsCertificateEntry() argument
221 public boolean engineIsKeyEntry(String arg0) { in engineIsKeyEntry() argument
225 public void engineLoad(InputStream arg0, char[] arg1) in engineLoad() argument
[all …]
/libcore/luni/src/main/java/java/security/
DSignature.java663 protected void engineUpdate(byte arg0) throws SignatureException { in engineUpdate() argument
664 getSpi().engineUpdate(arg0); in engineUpdate()
668 protected boolean engineVerify(byte[] arg0) throws SignatureException { in engineVerify() argument
669 return getSpi().engineVerify(arg0); in engineVerify()
673 protected void engineUpdate(byte[] arg0, int arg1, int arg2) throws SignatureException { in engineUpdate() argument
674 getSpi().engineUpdate(arg0, arg1, arg2); in engineUpdate()
678 protected void engineInitSign(PrivateKey arg0) throws InvalidKeyException { in engineInitSign() argument
679 getSpi(arg0).engineInitSign(arg0); in engineInitSign()
683 protected void engineInitVerify(PublicKey arg0) throws InvalidKeyException { in engineInitVerify() argument
684 getSpi(arg0).engineInitVerify(arg0); in engineInitVerify()
[all …]
DMessageDigest.java183 public void update(byte arg0) { in update() argument
184 engineUpdate(arg0); in update()
403 protected void engineUpdate(byte arg0) { in engineUpdate() argument
404 spiImpl.engineUpdate(arg0); in engineUpdate()
409 protected void engineUpdate(byte[] arg0, int arg1, int arg2) { in engineUpdate() argument
410 spiImpl.engineUpdate(arg0, arg1, arg2); in engineUpdate()
/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()
DUTF16BECharsetTest.java27 public UTF16BECharsetTest(String arg0) { in UTF16BECharsetTest() argument
28 super(arg0, "UTF-16BE", new String[] { "X-UTF-16BE", "UTF_16BE" }, in UTF16BECharsetTest()
DUTF16LECharsetTest.java27 public UTF16LECharsetTest(String arg0) { in UTF16LECharsetTest() argument
28 super(arg0, "UTF-16LE", new String[] { "UTF_16LE", "X-UTF-16LE" }, in UTF16LECharsetTest()
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()
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DMyMessageDigest2.java56 public void engineUpdate(byte arg0) { in engineUpdate() argument
63 public void engineUpdate(byte[] arg0, int arg1, int arg2) { in engineUpdate() argument
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()

123