Home
last modified time | relevance | path

Searched defs:buffer (Results 1 – 25 of 127) sorted by relevance

123456

/libcore/ojluni/src/main/java/sun/nio/fs/
DNativeBuffers.java61 NativeBuffer buffer = buffers[i]; in getNativeBufferFromCache() local
77 NativeBuffer buffer = getNativeBufferFromCache(size); in getNativeBuffer() local
90 static void releaseNativeBuffer(NativeBuffer buffer) { in releaseNativeBuffer()
123 static void copyCStringToNativeBuffer(byte[] cstr, NativeBuffer buffer) { in copyCStringToNativeBuffer()
143 NativeBuffer buffer = getNativeBuffer(cstr.length+1); in asNativeBuffer() local
DUnixNativeDispatcher.java42 NativeBuffer buffer = NativeBuffers.getNativeBufferFromCache(size); in copyToNativeBuffer() local
69 NativeBuffer buffer = copyToNativeBuffer(path); in open() local
83 NativeBuffer buffer = NativeBuffers.asNativeBuffer(path); in openat() local
139 NativeBuffer buffer = copyToNativeBuffer(path); in unlink() local
152 NativeBuffer buffer = NativeBuffers.asNativeBuffer(path); in unlinkat() local
166 NativeBuffer buffer = copyToNativeBuffer(path); in mknod() local
212 NativeBuffer buffer = copyToNativeBuffer(path); in mkdir() local
225 NativeBuffer buffer = copyToNativeBuffer(path); in rmdir() local
240 NativeBuffer buffer = copyToNativeBuffer(path); in readlink() local
255 NativeBuffer buffer = copyToNativeBuffer(path); in realpath() local
[all …]
DLinuxNativeDispatcher.java71 NativeBuffer buffer = NativeBuffers.asNativeBuffer(name); in fgetxattr() local
88 NativeBuffer buffer = NativeBuffers.asNativeBuffer(name); in fsetxattr() local
103 NativeBuffer buffer = NativeBuffers.asNativeBuffer(name); in fremovexattr() local
/libcore/ojluni/src/main/java/java/nio/
DCharBufferSpliterator.java40 private final CharBuffer buffer; field in CharBufferSpliterator
44 CharBufferSpliterator(CharBuffer buffer) { in CharBufferSpliterator()
48 CharBufferSpliterator(CharBuffer buffer, int origin, int limit) { in CharBufferSpliterator()
/libcore/ojluni/src/test/java/io/CharArrayReader/
DReadCharBuffer.java60 public void read(CharBuffer buffer) throws IOException { in read()
83 private void fillBuffer(CharBuffer buffer) { in fillBuffer()
/libcore/luni/src/test/native/
Dlibcore_java_nio_BufferTest.cpp21 JNIEnv* env, jobject /* clazz */, jobject buffer) { in Java_libcore_java_nio_BufferTest_jniGetDirectBufferAddress() argument
26 JNIEnv* env, jobject /* clazz */, jobject buffer) { in Java_libcore_java_nio_BufferTest_jniGetDirectBufferCapacity() argument
/libcore/ojluni/src/test/java/io/InputStreamReader/
DReadCharBuffer.java62 public void read(CharBuffer buffer) throws IOException { in read()
83 private void fillBuffer(CharBuffer buffer) { in fillBuffer()
/libcore/support/src/test/java/tests/support/
DSupport_OutputStream.java17 private byte[] buffer; field in Support_OutputStream
58 public void write(byte buffer[]) throws IOException { in write()
68 public void write(byte buffer[], int offset, int count) throws IOException { in write()
DStreams.java50 char[] buffer = new char[1024]; in streamToString() local
/libcore/luni/src/test/java/libcore/java/io/
DOldFilterWriterTest.java48 public void write(char[] buffer, int offset, int count) throws IOException { in write()
96 char[] buffer = new char[5]; in test_write$CII() local
102 char[] buffer = new char[10]; in test_write$CII_Exception() local
DOldFilterReaderTest.java58 public int read(char[] buffer, int offset, int count) throws IOException { in read()
113 char[] buffer = new char[5]; in test_read$CII() local
120 char[] buffer = new char[10]; in test_read$CII_Exception() local
DInputStreamReaderTest.java37 char[] buffer = new char[1024]; in testReadDoesNotBlockUnnecessarily() local
/libcore/luni/src/test/java/libcore/java/util/logging/
DOldErrorManagerTest.java55 public void write(byte[] buffer) { in write()
60 public synchronized void write(byte[] buffer, int offset, int len) { in write()
/libcore/ojluni/src/main/java/sun/security/pkcs/
DSigningCertificateInfo.java95 StringBuffer buffer = new StringBuffer(); in toString() local
154 StringBuffer buffer = new StringBuffer(); in toString() local
/libcore/ojluni/src/test/java/lang/StringBuffer/
DSubstring.java39 StringBuffer buffer = new StringBuffer(); in main() local
/libcore/luni/src/test/java/libcore/java/nio/channels/
DMembershipKeyTest.java114 ByteBuffer buffer = ByteBuffer.allocate(1048); in check_drop() local
180 ByteBuffer buffer = ByteBuffer.allocate(1048); in test_blockWithJoinWithoutSource() local
230 ByteBuffer buffer = ByteBuffer.allocate(1048); in test_unblockWithJoinWithoutSource() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStringBufferTest.java33 StringBuffer buffer = new StringBuffer("abcde"); in test_setLengthI() local
95 StringBuffer buffer = new StringBuffer(); in test_toString() local
125 StringBuffer buffer = new StringBuffer(25); in test_trimToSize() local
/libcore/ojluni/src/main/java/java/text/
DCharacterIteratorFieldDelegate.java57 StringBuffer buffer) { in formatted()
96 int start, int end, StringBuffer buffer) { in formatted()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DASCCharsetDecoderTest.java58 ByteBuffer buffer = ByteBuffer.allocate(8); in getMalformedByteBuffer() local
DGBCharsetDecoderTest.java53 ByteBuffer buffer = ByteBuffer.allocate(20); in getMalformedByteBuffer() local
DUTFCharsetDecoderTest.java53 ByteBuffer buffer = ByteBuffer.allocate(getByteBuffer().remaining() + 1); in getMalformedByteBuffer() local
/libcore/ojluni/src/main/java/sun/security/util/
DManifestEntryVerifier.java157 public void update(byte buffer) { in update()
168 public void update(byte buffer[], int off, int len) { in update()
/libcore/luni/src/test/java/libcore/sun/misc/
DUnsafeTest.java256 long buffer = unsafe.allocateMemory(Byte.BYTES); in test_putByte_getByte_Absolute() local
266 long buffer = unsafe.allocateMemory(Integer.BYTES); in test_putInt_getInt_Absolute() local
276 long buffer = unsafe.allocateMemory(Long.BYTES); in test_putLong_getLong_Absolute() local
286 long buffer = unsafe.allocateMemory(Float.BYTES); in test_putFloat_getFloat_Absolute() local
296 long buffer = unsafe.allocateMemory(Double.BYTES); in test_putDouble_getDouble_Absolute() local
/libcore/luni/src/main/java/javax/xml/transform/stream/
DFilePathToURI.java64 StringBuilder buffer = new StringBuilder(len*3); in filepath2URI() local
/libcore/luni/src/main/java/javax/xml/parsers/
DFilePathToURI.java64 StringBuilder buffer = new StringBuilder(len*3); in filepath2URI() local

123456