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

1 2 3 4 5 6 7 8 9

  /external/llvm/lib/DebugInfo/CodeView/
StreamWriter.cpp 21 Error StreamWriter::writeBytes(ArrayRef<uint8_t> Buffer) {
22 if (auto EC = Stream.writeBytes(Offset, Buffer))
47 if (auto EC = Stream.writeBytes(Offset, Bytes))
73 if (auto EC = writeBytes(Chunk))
ByteStream.cpp 18 static Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Src,
24 static Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Src,
56 Error ByteStream<Writable>::writeBytes(uint32_t Offset,
58 return ::writeBytes(Offset, Buffer, Data);
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecordBuilder.h 45 void writeBytes(StringRef Value) { Stream << Value; }
StreamRef.h 57 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) const {
60 return Stream->writeBytes(ViewOffset + Offset, Data);
  /libcore/ojluni/src/main/java/java/io/
DataOutput.java 279 void writeBytes(String s) throws IOException;
DataOutputStream.java 273 public final void writeBytes(String s) throws IOException {
  /libcore/ojluni/src/main/native/
io_util.c 153 writeBytes(JNIEnv *env, jobject this, jbyteArray bytes,
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 92 // writeBytes writes a length-prefixed byte slice to z.w.
93 func (z *Writer) writeBytes(b []byte) error {
173 z.err = z.writeBytes(z.Extra)
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 92 // writeBytes writes a length-prefixed byte slice to z.w.
93 func (z *Writer) writeBytes(b []byte) error {
173 z.err = z.writeBytes(z.Extra)
  /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/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 98 void CParameterBlackboard::writeBytes(const std::vector<uint8_t> &bytes, size_t offset)
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 183 void writeBytes(const SmallVectorImpl<char> &ByteVec,
185 writeBytes(StringRef(ByteVec.data(), ByteVec.size()), ZeroFillSize);
188 void writeBytes(StringRef Str, unsigned ZeroFillSize = 0) {
  /external/proguard/src/proguard/classfile/io/
RuntimeDataOutput.java 109 public void writeBytes(String s)
113 dataOutput.writeBytes(s);
  /external/protobuf/js/binary/
encoder.js 375 jspb.BinaryEncoder.prototype.writeBytes = function(bytes) {
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 147 public synchronized void writeBytes(byte[] body, int start) {
  /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 43 mMemoryFile.writeBytes(data, 0, 0, 512);
57 mMemoryFile.writeBytes(data, srcOffset, destOffset, count);
86 mMemoryFile.writeBytes(data, 0, 0, 512);
93 mMemoryFile.writeBytes(data, 0, 0, 512);
119 mMemoryFile.writeBytes(data, 0, 0, data.length);
154 mMemoryFile.writeBytes(data, 0, 0, 128);
  /external/sonic/
wave.c 29 static void writeBytes(
52 writeBytes(file, string, strlen(string));
67 writeBytes(file, bytes, 4);
82 writeBytes(file, bytes, 2);
362 writeBytes(file, bytes, bytePos);
370 writeBytes(file, bytes, bytePos);
  /libcore/ojluni/src/main/java/java/sql/
SQLOutput.java 184 void writeBytes(byte[] x) throws SQLException;
  /prebuilts/go/darwin-x86/src/compress/flate/
huffman_bit_writer.go 174 func (w *huffmanBitWriter) writeBytes(bytes []byte) {
180 w.err = InternalError("writeBytes with unfinished bits")
491 w.writeBytes(input)
528 w.writeBytes(input)
662 w.writeBytes(input)
  /prebuilts/go/linux-x86/src/compress/flate/
huffman_bit_writer.go 174 func (w *huffmanBitWriter) writeBytes(bytes []byte) {
180 w.err = InternalError("writeBytes with unfinished bits")
491 w.writeBytes(input)
528 w.writeBytes(input)
662 w.writeBytes(input)
  /external/llvm/lib/DebugInfo/PDB/Raw/
MappedBlockStream.cpp 225 Error MappedBlockStream::writeBytes(uint32_t Offset,
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
UnknownFieldSetLite.java 165 output.writeBytes(fieldNumber, (ByteString) objects[i]);
  /frameworks/base/core/java/android/os/
MemoryFile.java 222 public void writeBytes(byte[] buffer, int srcOffset, int destOffset, int count)
337 writeBytes(buffer, offset, mOffset, count);

Completed in 752 milliseconds

1 2 3 4 5 6 7 8 9