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

1 2

  /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 {
RandomAccessFile.java 752 public final void writeBytes(String str) throws IOException {
ObjectOutputStream.java 700 public void writeBytes(String value) throws IOException {
702 primitiveTypes.writeBytes(value);
    [all...]
  /external/guava/src/com/google/common/io/
ByteArrayDataOutput.java 48 @Deprecated /*@Override*/ void writeBytes(String s);
  /external/proguard/src/proguard/classfile/io/
RuntimeDataOutput.java 109 public void writeBytes(String s)
113 dataOutput.writeBytes(s);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 147 public synchronized void writeBytes(byte[] body, int start) {
ClientSession.java 481 privateInput.writeBytes(body, 1);
ServerOperation.java 209 mPrivateInput.writeBytes(body, 1);
485 mPrivateInput.writeBytes(body, 1);
  /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...]
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 62 notes = "Test writeBytes",
63 method = "writeBytes",
71 mMemoryFile.writeBytes(data, 0, 0, 512);
85 mMemoryFile.writeBytes(data, srcOffset, destOffset, count);
135 @ToBeFixed(bug = "1537041", explanation = "When set mAllowPurging to true, writeBytes"
144 mMemoryFile.writeBytes(data, 0, 0, 512);
151 mMemoryFile.writeBytes(data, 0, 0, 512);
186 mMemoryFile.writeBytes(data, 0, 0, data.length);
227 mMemoryFile.writeBytes(data, 0, 0, 128);
  /libcore/luni/src/main/java/java/sql/
SQLOutput.java 141 public void writeBytes(byte[] theBytes) throws SQLException;
  /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);
ParcelFileDescriptor.java 239 file.writeBytes(data, 0, 0, data.length);
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 122 void writeBytes(const char *Bytes, int Size) {
127 writeBytes(reinterpret_cast<char*>(&i), 4);
142 writeBytes(s.data(), s.size());
147 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
215 writeBytes(LinesTag, 4);
257 writeBytes(FunctionTag, 4);
288 writeBytes(BlockTag, 4);
300 writeBytes(EdgeTag, 4);
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 743 output.writeBytes(fieldNumber, value);
CodedOutputStream.java 225 public void writeBytes(final int fieldNumber, final ByteString value)
298 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value);
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Posix.java 171 return writeBytes(fd, buffer, buffer.position(), buffer.remaining());
173 return writeBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + buffer.position(), buffer.remaining());
178 return writeBytes(fd, bytes, byteOffset, byteCount);
180 private native int writeBytes(FileDescriptor fd, Object buffer, int offset, int byteCount) throws ErrnoException;
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 198 public void writeBytes(final int fieldNumber, final ByteStringMicro value)
279 // writeBytes(WireFormatMicro.MESSAGE_SET_MESSAGE, value);
    [all...]
  /prebuilt/common/http-client/
httpmime-4.1.1.jar 
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 507 pos = writeBytes(result, pos, values[i]);
669 private int writeBytes(byte[] out, int pos, byte[] value) {
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 400 milliseconds

1 2