Home
last modified time | relevance | path

Searched defs:address (Results 1 – 25 of 89) sorted by relevance

1234

/libcore/luni/src/main/java/libcore/icu/
DNativeCollation.java25 public static native void closeCollator(long address); in closeCollator()
26 public static native int compare(long address, String source, String target); in compare()
27 public static native int getAttribute(long address, int type); in getAttribute()
28 public static native long getCollationElementIterator(long address, String source); in getCollationElementIterator()
29 public static native String getRules(long address); in getRules()
30 public static native byte[] getSortKey(long address, String source); in getSortKey()
36 public static native long safeClone(long address); in safeClone()
37 public static native void setAttribute(long address, int type, int value); in setAttribute()
40 public static native void closeElements(long address); in closeElements()
41 public static native int getMaxExpansion(long address, int order); in getMaxExpansion()
[all …]
DNativePluralRules.java35 private final long address; field in NativePluralRules
37 private NativePluralRules(long address) { in NativePluralRules()
65 private static native void finalizeImpl(long address); in finalizeImpl()
67 private static native int quantityForIntImpl(long address, int value); in quantityForIntImpl()
DCollationElementIteratorICU.java154 private CollationElementIteratorICU(long address) { in CollationElementIteratorICU()
178 private final long address; field in CollationElementIteratorICU
/libcore/luni/src/main/java/libcore/io/
DMemory.java153 public static native byte peekByte(long address); in peekByte()
155 public static int peekInt(long address, boolean swap) { in peekInt()
162 private static native int peekIntNative(long address); in peekIntNative()
164 public static long peekLong(long address, boolean swap) { in peekLong()
171 private static native long peekLongNative(long address); in peekLongNative()
173 public static short peekShort(long address, boolean swap) { in peekShort()
180 private static native short peekShortNative(long address); in peekShortNative()
182 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount); in peekByteArray()
183 …public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, bo… in peekCharArray()
184 …public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCou… in peekDoubleArray()
[all …]
DMemoryMappedFile.java36 private long address; field in MemoryMappedFile
42 public MemoryMappedFile(long address, long size) { in MemoryMappedFile()
53 long address = Libcore.os.mmap(0L, size, PROT_READ, MAP_SHARED, fd, 0); in mmapRO() local
DNioBufferIterator.java28 private final long address; field in NioBufferIterator
34 NioBufferIterator(long address, int size, boolean swap) { in NioBufferIterator()
/libcore/luni/src/main/native/
Dlibcore_icu_NativeCollation.cpp84 static UCollator* toCollator(jlong address) { in toCollator()
88 static CollationElements* toCollationElements(jlong address) { in toCollationElements()
92 static void NativeCollation_closeCollator(JNIEnv*, jclass, jlong address) { in NativeCollation_closeCollator()
96 static void NativeCollation_closeElements(JNIEnv* env, jclass, jlong address) { in NativeCollation_closeElements()
102 static jint NativeCollation_compare(JNIEnv* env, jclass, jlong address, jstring javaLhs, jstring ja… in NativeCollation_compare()
114 static jint NativeCollation_getAttribute(JNIEnv* env, jclass, jlong address, jint type) { in NativeCollation_getAttribute()
121 static jlong NativeCollation_getCollationElementIterator(JNIEnv* env, jclass, jlong address, jstrin… in NativeCollation_getCollationElementIterator()
137 static jint NativeCollation_getMaxExpansion(JNIEnv*, jclass, jlong address, jint order) { in NativeCollation_getMaxExpansion()
141 static jint NativeCollation_getOffset(JNIEnv*, jclass, jlong address) { in NativeCollation_getOffset()
145 static jstring NativeCollation_getRules(JNIEnv* env, jclass, jlong address) { in NativeCollation_getRules()
[all …]
Dlibcore_icu_NativePluralRules.cpp28 static icu::PluralRules* toPluralRules(jlong address) { in toPluralRules()
32 static void NativePluralRules_finalizeImpl(JNIEnv*, jclass, jlong address) { in NativePluralRules_finalizeImpl()
58 static jint NativePluralRules_quantityForIntImpl(JNIEnv*, jclass, jlong address, jint value) { in NativePluralRules_quantityForIntImpl()
Dlibcore_icu_NativeConverter.cpp60 static UConverter* toUConverter(jlong address) { in toUConverter()
170 static void NativeConverter_closeConverter(JNIEnv*, jclass, jlong address) { in NativeConverter_closeConverter()
182 static jint NativeConverter_encode(JNIEnv* env, jclass, jlong address, in NativeConverter_encode()
238 static jint NativeConverter_decode(JNIEnv* env, jclass, jlong address, in NativeConverter_decode()
294 static void NativeConverter_resetByteToChar(JNIEnv*, jclass, jlong address) { in NativeConverter_resetByteToChar()
301 static void NativeConverter_resetCharToByte(JNIEnv*, jclass, jlong address) { in NativeConverter_resetCharToByte()
308 static jint NativeConverter_getMaxBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMaxBytesPerChar()
313 static jint NativeConverter_getMinBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getMinBytesPerChar()
318 static jfloat NativeConverter_getAveBytesPerChar(JNIEnv*, jclass, jlong address) { in NativeConverter_getAveBytesPerChar()
387 static void NativeConverter_setCallbackEncode(JNIEnv* env, jclass, jlong address, in NativeConverter_setCallbackEncode()
[all …]
Djava_util_regex_Matcher.cpp32 static icu::RegexMatcher* toRegexMatcher(jlong address) { in toRegexMatcher()
44 MatcherAccessor(JNIEnv* env, jlong address, jstring javaInput, bool reset) { in MatcherAccessor()
65 MatcherAccessor(JNIEnv* env, jlong address) { in MatcherAccessor()
98 void init(JNIEnv* env, jlong address) { in init()
119 static void Matcher_closeImpl(JNIEnv*, jclass, jlong address) { in Matcher_closeImpl()
/libcore/luni/src/main/java/java/net/
DInterfaceAddress.java30 private final InetAddress address; field in InterfaceAddress
42 InterfaceAddress(Inet4Address address, Inet4Address broadcastAddress, Inet4Address mask) { in InterfaceAddress()
51 InterfaceAddress(Inet6Address address, short prefixLength) { in InterfaceAddress()
DProxy.java38 private SocketAddress address; field in Proxy
92 public SocketAddress address() { in address() method in Proxy
DSocketImpl.java39 protected InetAddress address; field in SocketImpl
87 protected abstract void bind(InetAddress address, int port) throws IOException; in bind()
120 protected abstract void connect(InetAddress address, int port) in connect()
DProxySelector.java129 public abstract void connectFailed(URI uri, SocketAddress address, IOException failure); in connectFailed()
/libcore/luni/src/test/java/libcore/java/nio/channels/
DServerSocketChannelTest.java97 InetSocketAddress address = in test_bind_nullBindsToAll() local
128 InetSocketAddress address = in test_bind_loopback() local
139 private static boolean canConnect(InetSocketAddress address) { in canConnect()
/libcore/luni/src/main/java/java/nio/
DMemoryBlock.java38 private MemoryMappedBlock(long address, long byteCount) { in MemoryMappedBlock()
70 private NonMovableHeapBlock(byte[] array, long address, long byteCount) { in NonMovableHeapBlock()
90 private UnmanagedBlock(long address, long byteCount) { in UnmanagedBlock()
95 protected long address; field in MemoryBlock
122 long address = Libcore.os.mmap(0L, size, prot, flags, fd, offset); in mmap() local
132 long address = runtime.addressOf(array); in allocate() local
136 public static MemoryBlock wrapFromJni(long address, long byteCount) { in wrapFromJni()
140 private MemoryBlock(long address, long size) { in MemoryBlock()
DNIOAccess.java30 long address = b.effectiveDirectAddress; in getBasePointer() local
/libcore/luni/src/main/java/java/nio/channels/
DSocketChannel.java115 public static SocketChannel open(SocketAddress address) throws IOException { in open()
198 public abstract boolean connect(SocketAddress address) throws IOException; in connect()
DDatagramChannel.java130 public abstract DatagramChannel connect(SocketAddress address) in connect()
219 public abstract int send(ByteBuffer source, SocketAddress address) throws IOException; in send()
/libcore/luni/src/main/java/java/nio/charset/
DCharsetEncoderICU.java68 long address = 0; in newInstance() local
84 private static byte[] makeReplacement(String icuCanonicalName, long address) { in makeReplacement()
94 …U(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) { in CharsetEncoderICU()
/libcore/support/src/test/java/tests/net/
DStuckServer.java47 private InetSocketAddress address; field in StuckServer
/libcore/luni/src/test/resources/wf/
Dstaff.dtd5 <!ELEMENT address (#PCDATA)> element
/libcore/dom/src/test/resources/
Dstaff.dtd5 <!ELEMENT address (#PCDATA)> element
/libcore/luni/src/test/resources/systemid/
Dstaff.dtd5 <!ELEMENT address (#PCDATA)> element
/libcore/luni/src/test/resources/nwf/
Dstaff.dtd5 <!ELEMENT address (#PCDATA)> element

1234