HomeSort by relevance Sort by last modified time
    Searched full:arg0 (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockDatagramChannel.java 29 public MockDatagramChannel(SelectorProvider arg0) {
30 super(arg0);
41 public DatagramChannel connect(SocketAddress arg0) throws IOException {
49 public SocketAddress receive(ByteBuffer arg0) throws IOException {
53 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException {
57 public int read(ByteBuffer arg0) throws IOException {
61 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
65 public int write(ByteBuffer arg0) throws IOException {
69 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
77 protected void implConfigureBlocking(boolean arg0) throws IOException
    [all...]
MockSocketChannel.java 29 protected MockSocketChannel(SelectorProvider arg0) {
30 super(arg0);
45 public boolean connect(SocketAddress arg0) throws IOException {
53 public int read(ByteBuffer arg0) throws IOException {
57 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
61 public int write(ByteBuffer arg0) throws IOException {
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
72 protected void implConfigureBlocking(boolean arg0) throws IOException {
MockServerSocketChannel.java 28 protected MockServerSocketChannel(SelectorProvider arg0) {
29 super(arg0);
43 protected void implConfigureBlocking(boolean arg0) throws IOException {
  /dalvik/vm/mterp/c/
OP_EXECUTE_INLINE_RANGE.c 3 u4 arg0, arg1, arg2, arg3; local
4 arg0 = arg1 = arg2 = arg3 = 0; /* placate gcc */
28 arg0 = GET_REGISTER(vdst+0);
35 if (!dvmPerformInlineOp4Dbg(arg0, arg1, arg2, arg3, &retval, ref))
38 if (!dvmPerformInlineOp4Std(arg0, arg1, arg2, arg3, &retval, ref))
OP_EXECUTE_INLINE.c 19 u4 arg0, arg1, arg2, arg3; local
20 arg0 = arg1 = arg2 = arg3 = 0;
44 arg0 = GET_REGISTER(vdst & 0x0f);
51 if (!dvmPerformInlineOp4Dbg(arg0, arg1, arg2, arg3, &retval, ref))
54 if (!dvmPerformInlineOp4Std(arg0, arg1, arg2, arg3, &retval, ref))
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
SocketImplFactoryTest.java 144 protected void accept(SocketImpl arg0) throws IOException {
154 protected void bind(InetAddress arg0, int arg1) throws IOException {
164 protected void connect(String arg0, int arg1) throws IOException {
169 protected void connect(InetAddress arg0, int arg1) throws IOException {
174 protected void connect(SocketAddress arg0, int arg1) throws IOException {
179 protected void create(boolean arg0) throws IOException {
194 protected void listen(int arg0) throws IOException {
199 protected void sendUrgentData(int arg0) throws IOException {
203 public Object getOption(int arg0) throws SocketException {
207 public void setOption(int arg0, Object arg1) throws SocketException
    [all...]
DatagramSocketImplFactoryTest.java 159 protected void bind(int arg0, InetAddress arg1) throws SocketException {
188 protected void join(InetAddress arg0) throws IOException {
194 protected void joinGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException {
200 protected void leave(InetAddress arg0) throws IOException {
206 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException {
212 public int peek(InetAddress arg0) throws IOException {
218 protected int peekData(DatagramPacket arg0) throws IOException {
224 protected void receive(DatagramPacket arg0) throws IOException {
230 protected void send(DatagramPacket arg0) throws IOException {
236 protected void setTTL(byte arg0) throws IOException
    [all...]
  /external/qemu/tcg/sparc/
tcg-target.c 565 int addr_reg, data_reg, arg0, arg1, arg2, mem_index, s_bits; local
575 arg0 = TCG_REG_O0;
583 /* and addr_reg, x, arg0 */
584 tcg_out_arithi(s, arg0, addr_reg, TARGET_PAGE_MASK | ((1 << s_bits) - 1),
601 /* subcc arg0, arg2, %g0 */
602 tcg_out_arith(s, TCG_REG_G0, arg0, arg2, ARITH_SUBCC);
612 tcg_out_mov(s, arg0, addr_reg);
618 /* qemu_ld_helper[s_bits](arg0, arg1) */
632 /* data_reg = sign_extend(arg0) */
635 /* sll arg0, 24/56, data_reg *
775 int addr_reg, data_reg, arg0, arg1, arg2, mem_index, s_bits; local
    [all...]
  /dalvik/vm/
InlineNative.c 105 u4 arg0, u4 arg1, u4 arg2, u4 arg3, JValue* pResult)
121 static bool javaLangString_charAt(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
128 if (!dvmValidateObject((Object*) arg0))
131 //LOGI("String.charAt this=0x%08x index=%d\n", arg0, arg1);
132 count = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_COUNT);
137 offset = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_OFFSET);
139 dvmGetFieldObject((Object*) arg0, STRING_FIELDOFF_VALUE);
191 static bool javaLangString_compareTo(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
200 if (!dvmValidateObject((Object*) arg0) ||
207 if (arg0 == arg1)
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
vms-code.c 103 static char *fix_arg0( arg0 )
104 const char *arg0;
108 if (arg0) {
110 if ((p = strrchr(arg0, ':')) != 0) /* device punctuation */
111 arg0 = p + 1;
112 if ((p = strrchr(arg0, ']')) != 0) /* directory punctuation */
113 arg0 = p + 1;
114 if ((p = strrchr(arg0, '>')) != 0) /* alternate dir punct */
115 arg0 = p + 1;
117 if (!arg0 || !*arg0
    [all...]
  /bionic/libc/kernel/common/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException {
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException {
68 public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, UnknownHostException {
77 public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOException {
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /system/core/libacc/tests/data/
float.c 25 void testVars(float arg0, float arg1, double arg2, double arg3) {
28 f0 = arg0;
32 local0 = arg0;
37 printf("args: %g %g %g %g\n", arg0, arg1, arg2, arg3);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MockEnum.java 46 public boolean equals(Object arg0) {
47 if (!(arg0 instanceof MockEnum)) {
50 MockEnum test = (MockEnum) arg0;
MockEnum2.java 49 public boolean equals(Object arg0) {
50 if (!(arg0 instanceof MockEnum2)) {
53 MockEnum2 test = (MockEnum2) arg0;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
DictionaryTest.java 41 public Object get(Object arg0) {
56 public Object put(Object arg0, Object arg1) {
61 public Object remove(Object arg0) {
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
MockAbstractSelector.java 73 public MockAbstractSelector(SelectorProvider arg0) {
74 super(arg0);
89 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1,
93 SelectionKey key = new MockSelectionKey(this, arg0);
122 public int select(long arg0) throws IOException {
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 242 public boolean engineContainsAlias(String arg0) {
246 public void engineDeleteEntry(String arg0) throws KeyStoreException {
249 public Certificate engineGetCertificate(String arg0) {
253 public String engineGetCertificateAlias(Certificate arg0) {
257 public Certificate[] engineGetCertificateChain(String arg0) {
261 public Date engineGetCreationDate(String arg0) {
265 public Key engineGetKey(String arg0, char[] arg1)
270 public boolean engineIsCertificateEntry(String arg0) {
274 public boolean engineIsKeyEntry(String arg0) {
278 public void engineLoad(InputStream arg0, char[] arg1
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ToTextSAXHandler.java 60 public void endElement(String arg0, String arg1, String arg2)
199 String arg0,
211 public void elementDecl(String arg0, String arg1) throws SAXException
218 public void externalEntityDecl(String arg0, String arg1, String arg2)
226 public void internalEntityDecl(String arg0, String arg1)
234 public void endPrefixMapping(String arg0) throws SAXException
241 public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
250 public void processingInstruction(String arg0, String arg1)
254 super.fireEscapingEvent(arg0, arg1);
260 public void setDocumentLocator(Locator arg0)
    [all...]

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 9