HomeSort by relevance Sort by last modified time
    Searched refs:Native (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/java/net/
SocketOptions.java 28 import java.lang.annotation.Native;
142 @Native public final static int TCP_NODELAY = 0x0001;
163 @Native public final static int SO_BINDADDR = 0x000F;
171 @Native public final static int SO_REUSEADDR = 0x04;
182 @Native public final static int SO_BROADCAST = 0x0020;
194 @Native public final static int IP_MULTICAST_IF = 0x10;
206 @Native public final static int IP_MULTICAST_IF2 = 0x1f;
214 @Native public final static int IP_MULTICAST_LOOP = 0x12;
222 @Native public final static int IP_TOS = 0x3;
240 @Native public final static int SO_LINGER = 0x0080
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
IOStatus.java 28 import java.lang.annotation.Native;
36 @Native public static final int EOF = -1; // End of file
37 @Native public static final int UNAVAILABLE = -2; // Nothing available (non-blocking)
38 @Native public static final int INTERRUPTED = -3; // System call interrupted
39 @Native public static final int UNSUPPORTED = -4; // Operation not supported
40 @Native public static final int THROWN = -5; // Exception thrown in JNI code
41 @Native public static final int UNSUPPORTED_CASE = -6; // This case not supported
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
Native.java 19 public class Native {
24 public static native int add(int a, int b);
25 public static native String arch();
BaseActivity.java 29 int sum = Native.add(2, 3);
  /libcore/ojluni/src/main/java/java/lang/annotation/
Native.java 31 * from native code.
33 * The annotation may be used as a hint by tools that generate native
42 public @interface Native {
  /libcore/ojluni/src/main/java/java/io/
FileSystem.java 29 import java.lang.annotation.Native;
103 @Native public static final int BA_EXISTS = 0x01;
104 @Native public static final int BA_REGULAR = 0x02;
105 @Native public static final int BA_DIRECTORY = 0x04;
106 @Native public static final int BA_HIDDEN = 0x08;
115 @Native public static final int ACCESS_READ = 0x04;
116 @Native public static final int ACCESS_WRITE = 0x02;
117 @Native public static final int ACCESS_EXECUTE = 0x01;
210 @Native public static final int SPACE_TOTAL = 0;
211 @Native public static final int SPACE_FREE = 1
    [all...]
  /development/samples/SimpleJNI/src/com/example/android/simplejni/
SimpleJNI.java 29 int sum = Native.add(2, 3);
35 class Native {
42 static native int add(int a, int b);
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/src/com/framework/shareduid/bit32/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 32 bit native code] 2 + 3 = " + String.valueOf(sum));
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/src/com/framework/shareduid/bit64/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 64 bit native code] 2 + 3 = " + String.valueOf(sum));
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/src/com/framework/shareduid/dual/
MainActivity.java 23 class Native {
30 static native int add(int a, int b);
39 int sum = Native.add(2, 3);
40 tv.setText("[computed by 32 bit native code] 2 + 3 = " + String.valueOf(sum));
  /external/swiftshader/third_party/subzero/pydir/
gen_test_arith_ll.py 20 def arith(Native, Type, Op):
22 define internal {{native}} @{{name}}({{native}} %a, {{native}} %b) {{{{
27 ret {{native}} %result
36 trunc_a = '%a.trunc = trunc {native} %a to {type}' if
37 Native != Type else '',
38 trunc_b = '%b.trunc = trunc {native} %b to {type}' if
39 Native != Type else '',
41 ' {type} %result.trunc to {native}' if Native != Type else ''
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/MultiPlatformLib/BoardGpios/
BoardGpios.h 141 GPIO_INIT_ITEM("HV_DDI0_HPD GPIONC_0 " ,Native ,NA ,F2 , , ,NONE ,0x13),
142 GPIO_INIT_ITEM("HV_DDI0_DDC_SDA GPIONC_1 " ,Native ,NA ,F2 , , ,NONE ,0x12),
143 GPIO_INIT_ITEM("HV_DDI0_DDC_SCL GPIONC_2 " ,Native ,NA ,F2 , , ,NONE ,0x11),
147 GPIO_INIT_ITEM("HV_DDI1_HPD GPIONC_6 " ,Native ,NA ,F2 , , ,NONE ,0x18),
148 GPIO_INIT_ITEM("HV_DDI1_DDC_SDA GPIONC_7 " ,Native ,NA ,F2 , , ,NONE ,0x19),
149 GPIO_INIT_ITEM("HV_DDI1_DDC_SCL GPIONC_8 " ,Native ,NA ,F2 , , ,NONE ,0x17),
173 GPIO_INIT_ITEM("SATA_GP0 GPIOC_0 " ,Native ,NA ,F1 , , ,NONE ,0x55),
174 GPIO_INIT_ITEM("SATA_GP1 GPIOC_1 " ,Native ,NA ,F1 , , ,NONE ,0x59),
175 GPIO_INIT_ITEM("SATA_LEDN GPIOC_2 " ,Native ,NA ,F1 , , ,NONE ,0x5d),
176 GPIO_INIT_ITEM("PCIE_CLKREQ0B GPIOC_3 " ,Native ,NA ,F1 , , ,10K_H ,0x60),
    [all...]
  /libcore/ojluni/src/main/java/jdk/net/
SocketFlow.java 28 import java.lang.annotation.Native;
50 @Native public static final int NORMAL_PRIORITY = 1;
51 @Native public static final int HIGH_PRIORITY = 2;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8155.go 8 // Alignment of stack prologue zeroing was wrong on 64-bit Native Client
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8155.go 8 // Alignment of stack prologue zeroing was wrong on 64-bit Native Client
  /external/tensorflow/tensorflow/tools/ci_build/remote/
remote_docker_build.sh 105 -DLLVM_TARGETS_TO_BUILD=Native -DCMAKE_BUILD_TYPE=Release \
  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 26 // BUG(minux): This package is not implemented on NaCl (Native Client).
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 26 // BUG(minux): This package is not implemented on NaCl (Native Client).
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 29 import java.lang.annotation.Native;
58 @Native public static final int MIN_VALUE = 0x80000000;
64 @Native public static final int MAX_VALUE = 0x7fffffff;
    [all...]
Long.java 29 import java.lang.annotation.Native;
60 @Native public static final long MIN_VALUE = 0x8000000000000000L;
66 @Native public static final long MAX_VALUE = 0x7fffffffffffffffL;
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /build/soong/python/
installer.go 53 if !ctx.Host() && !ctx.Arch().Native {
  /prebuilts/go/darwin-x86/src/syscall/
fd_nacl.go 5 // File descriptor support for Native Client.
7 // Native Client allows, so we maintain our own file descriptor table exposed
65 // Install Native Client stdin, stdout, stderr.
216 // naclFile is the fileImpl implementation for a Native Client file descriptor.
  /prebuilts/go/linux-x86/src/syscall/
fd_nacl.go 5 // File descriptor support for Native Client.
7 // Native Client allows, so we maintain our own file descriptor table exposed
65 // Install Native Client stdin, stdout, stderr.
216 // naclFile is the fileImpl implementation for a Native Client file descriptor.
  /build/soong/cc/
installer.go 69 if !ctx.Host() && !ctx.Arch().Native {

Completed in 5385 milliseconds

1 2 3 4