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

1 2 3 4

  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 157 byte writeBytes[] = new byte[5];
160 writeBytes[0] = (byte) (toWrite >> 24);
161 writeBytes[1] = (byte) (toWrite >> 16);
162 writeBytes[2] = (byte) (toWrite >> 8);
163 writeBytes[3] = (byte) (toWrite);
164 writeBytes[4] = 0;
165 out.write(writeBytes, 0, writeBytes.length);
228 byte writeBytes[] = new byte[1024 * 2];
229 for (int i = 0; i < (writeBytes.length - 4); i += 4)
    [all...]
OldAndroidDataOutputStreamTest.java 42 a.writeBytes("BYTES");
OldDataOutputStreamTest.java 139 os.writeBytes(testString);
151 os.writeBytes(testString);
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 45 mMemoryFile.writeBytes(data, 0, 0, 512);
59 mMemoryFile.writeBytes(data, srcOffset, destOffset, count);
88 mMemoryFile.writeBytes(data, 0, 0, 512);
95 mMemoryFile.writeBytes(data, 0, 0, 512);
118 mMemoryFile.writeBytes(data, 0, 0, data.length);
153 mMemoryFile.writeBytes(data, 0, 0, 128);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
TypesWriter.java 117 public void writeBytes(byte[] buff)
119 writeBytes(buff, 0, buff.length);
122 public void writeBytes(byte[] buff, int off, int len)
134 writeBytes(buff, off, len);
142 writeBytes(b, 0, b.length);
150 writeBytes(b, 0, b.length);
  /libcore/luni/src/main/java/java/io/
DataOutput.java 100 public abstract void writeBytes(String str) throws IOException;
DataOutputStream.java 148 public final void writeBytes(String str) throws IOException {
  /frameworks/base/core/tests/coretests/src/android/os/
MemoryFileTest.java 35 throw new Exception("readBytes did not read back what writeBytes wrote");
53 newFile.writeBytes(testString, 0, 0, testString.length);
78 file.writeBytes(testString, 0, 2000, testString.length);
127 file.writeBytes(testString, 0, 0, testString.length);
172 file.writeBytes(testString, 0, 0, testString.length);
194 file.writeBytes(data, 0, 0, 128);
222 file.writeBytes(data, 0, 0, 128);
223 fail("writeBytes() after close() did not throw IOException.");
234 file.writeBytes(data, 0, 0, 128);
252 file.writeBytes(testString, 0, 0, testString.length)
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataOutput.java 48 @Deprecated @Override void writeBytes(String s);
LittleEndianDataOutputStream.java 69 * @deprecated The semantics of {@code writeBytes(String s)} are considered
74 @Override public void writeBytes(String s) throws IOException {
75 ((DataOutputStream) out).writeBytes(s);
  /external/proguard/src/proguard/classfile/io/
RuntimeDataOutput.java 109 public void writeBytes(String s)
113 dataOutput.writeBytes(s);
  /libcore/luni/src/main/java/java/sql/
SQLOutput.java 141 public void writeBytes(byte[] theBytes) throws SQLException;
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 87 out.writeBytes("r\u00C9sum\u00C9");
104 out.writeBytes("\uAAAA\uAABB\uAACC");
  /external/aac/libFDK/include/
FDK_bitbuffer.h 158 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuffer, UCHAR outBuf[], UINT *writeBytes);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 147 public synchronized void writeBytes(byte[] body, int start) {
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 49 void writeBytes(String str, int off, int len) {
55 void writeBytes(byte data[]) {
57 writeBytes(data, 0, data.length);
61 void writeBytes(byte data[], int off, int len) {
  /libcore/luni/src/main/java/libcore/io/
Posix.java 194 return writeBytes(fd, buffer, buffer.position(), buffer.remaining());
196 return writeBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + buffer.position(), buffer.remaining());
201 return writeBytes(fd, bytes, byteOffset, byteCount);
203 private native int writeBytes(FileDescriptor fd, Object buffer, int offset, int byteCount) throws ErrnoException;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 166 oos.writeBytes("HelloWorld");
215 oos.writeBytes("HelloWorld");
226 oos.writeBytes("HelloWorld");
268 oos.writeBytes("HelloWorld");
364 oos.writeBytes("HelloWorld");
378 oos.writeBytes("HelloWorld");
404 oos.writeBytes("HelloWorld\nSecondLine");
611 oos.writeBytes("HelloWorld");
    [all...]
DataOutputStreamTest.java 121 * @tests java.io.DataOutputStream#writeBytes(java.lang.String)
134 new DataOutputStream(null).writeBytes("");
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 155 void writeBytes(const char *Bytes, int Size) {
160 writeBytes(reinterpret_cast<char*>(&i), 4);
175 writeBytes(s.data(), s.size());
180 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
248 writeBytes(LinesTag, 4);
292 writeBytes(FunctionTag, 4);
322 writeBytes(BlockTag, 4);
335 writeBytes(EdgeTag, 4);
  /frameworks/base/core/java/android/os/
MemoryFile.java 217 public void writeBytes(byte[] buffer, int srcOffset, int destOffset, int count)
332 writeBytes(buffer, offset, mOffset, count);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 165 oos.writeBytes("HelloWorld");
214 oos.writeBytes("HelloWorld");
225 oos.writeBytes("HelloWorld");
267 oos.writeBytes("HelloWorld");
363 oos.writeBytes("HelloWorld");
377 oos.writeBytes("HelloWorld");
403 oos.writeBytes("HelloWorld\nSecondLine");
610 oos.writeBytes("HelloWorld");
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectInputStreamTest.java 89 oos.writeBytes(testString);
163 oos.writeBytes(testString);
213 oos.writeBytes(testString);
253 oos.writeBytes(testString);
312 oos.writeBytes("Lorem\nipsum\rdolor sit amet...");
  /external/aac/libFDK/src/
FDK_bitbuffer.cpp 452 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuf, UCHAR *outBuf, UINT *writeBytes)
458 UINT noOfBytes = fMin(bToWrite, *writeBytes); //(bToWrite < *writeBytes) ? bToWrite : *writeBytes ;
478 *writeBytes = bTotal ;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 216 out.writeBytes(s);

Completed in 331 milliseconds

1 2 3 4