Home
last modified time | relevance | path

Searched refs:writeBytes (Results 1 – 23 of 23) sorted by relevance

/external/guava/guava/src/com/google/common/io/
DLittleEndianDataOutputStream.java74 @Override public void writeBytes(String s) throws IOException { in writeBytes() method in LittleEndianDataOutputStream
75 ((DataOutputStream) out).writeBytes(s); in writeBytes()
DByteArrayDataOutput.java48 @Deprecated @Override void writeBytes(String s); in writeBytes() method
DByteStreams.java492 @Override public void writeBytes(String s) {
494 output.writeBytes(s);
/external/proguard/src/proguard/classfile/io/
DRuntimeDataOutput.java109 public void writeBytes(String s) in writeBytes() method in RuntimeDataOutput
113 dataOutput.writeBytes(s); in writeBytes()
/external/jmdns/src/javax/jmdns/impl/
DDNSOutgoing.java49 void writeBytes(String str, int off, int len) { in writeBytes() method in DNSOutgoing.MessageOutputStream
55 void writeBytes(byte data[]) { in writeBytes() method in DNSOutgoing.MessageOutputStream
57 writeBytes(data, 0, data.length); in writeBytes()
61 void writeBytes(byte data[], int off, int len) { in writeBytes() method in DNSOutgoing.MessageOutputStream
DDNSRecord.java197 out.writeBytes(buffer, 0, length); in write()
242 out.writeBytes(buffer, 0, length); in write()
554 out.writeBytes(_text, 0, _text.length); in write()
/external/guava/guava-tests/test/com/google/common/io/
DLittleEndianDataOutputStreamTest.java87 out.writeBytes("r\u00C9sum\u00C9"); in testWriteBytes()
104 out.writeBytes("\uAAAA\uAABB\uAACC"); in testWriteBytes_discardHighOrderBytes()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp170 void writeBytes(const char *Bytes, int Size) { in writeBytes() function in __anon6c247a230211::GCOVRecord
175 writeBytes(reinterpret_cast<char*>(&i), 4); in write()
190 writeBytes(s.data(), s.size()); in writeGCOVString()
195 writeBytes("\0\0\0\0", 4 - (s.size() % 4)); in writeGCOVString()
267 writeBytes(LinesTag, 4); in writeOut()
360 writeBytes(FunctionTag, 4); in writeOut()
375 writeBytes(BlockTag, 4); in writeOut()
389 writeBytes(EdgeTag, 4); in writeOut()
/external/chromium_org/third_party/tlslite/tlslite/
Dx509.py107 def writeBytes(self): member in X509
Dmessages.py412 bytes = cert.writeBytes()
417 bytes = cert.writeBytes()
/external/aac/libFDK/src/
DFDK_bitbuffer.cpp452 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuf, UCHAR *outBuf, UINT *writeBytes) in FDK_Fetch() argument
458 …UINT noOfBytes = fMin(bToWrite, *writeBytes); //(bToWrite < *writeBytes) ? bToWrite : *writeBytes ; in FDK_Fetch()
478 *writeBytes = bTotal ; in FDK_Fetch()
/external/aac/libFDK/include/
DFDK_bitbuffer.h158 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuffer, UCHAR outBuf[], UINT *writeBytes);
DFDK_bitstream.h611 …_INLINE void FDKfetchBuffer(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *outputBuffer, UINT *writeBytes) in FDKfetchBuffer() argument
614 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes); in FDKfetchBuffer()
/external/chromium_org/third_party/angle/src/libGLESv2/
DBinaryStream.h172 void writeBytes(const unsigned char *bytes, size_t count) in writeBytes() function
DProgramBinary.cpp1365 …stream.writeBytes(reinterpret_cast<const unsigned char*>(ANGLE_COMMIT_HASH), ANGLE_COMMIT_HASH_SIZ… in save()
1479 stream.writeBytes(vertexBlob, vertexShaderSize); in save()
1498 stream.writeBytes(pixelBlob, pixelShaderSize); in save()
1507 stream.writeBytes(geometryBlob, geometryShaderSize); in save()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammarSerializerFoo.java216 out.writeBytes(s); in writeString()
/external/chromium_org/content/browser/resources/media/
Dmain.js91 cacheEntries[id].writeBytes(update.params.offset,
Dcache_entry.js87 writeBytes: function(start, length) { method in CacheEntry
/external/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java225 public void writeBytes(final int fieldNumber, final ByteString value) in writeBytes() method in CodedOutputStream
298 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
DUnknownFieldSet.java743 output.writeBytes(fieldNumber, value); in writeTo()
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java165 public void writeBytes(final int fieldNumber, final byte[] value) in writeBytes() method in CodedOutputByteBufferNano
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java198 public void writeBytes(final int fieldNumber, final ByteStringMicro value) in writeBytes() method in CodedOutputStreamMicro
/external/okhttp/okio/src/test/java/okio/
DOkBufferTest.java344 @Test public void writeBytes() throws Exception { in writeBytes() method in OkBufferTest