/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | TypesWriter.java | 117 public void writeBytes(byte[] buff) in writeBytes() method in TypesWriter 119 writeBytes(buff, 0, buff.length); in writeBytes() 122 public void writeBytes(byte[] buff, int off, int len) in writeBytes() method in TypesWriter 134 writeBytes(buff, off, len); in writeString() 142 writeBytes(b, 0, b.length); in writeString() 150 writeBytes(b, 0, b.length); in writeString()
|
D | PacketKexInit.java | 80 tw.writeBytes(kp.cookie, 0, 16); in getPayload()
|
/external/proguard/src/proguard/classfile/io/ |
D | RuntimeDataOutput.java | 109 public void writeBytes(String s) in writeBytes() method in RuntimeDataOutput 113 dataOutput.writeBytes(s); in writeBytes()
|
/external/guava/guava/src/com/google/common/io/ |
D | LittleEndianDataOutputStream.java | 74 @Override public void writeBytes(String s) throws IOException { in writeBytes() method in LittleEndianDataOutputStream 75 ((DataOutputStream) out).writeBytes(s); in writeBytes()
|
D | ByteArrayDataOutput.java | 48 @Deprecated @Override void writeBytes(String s); in writeBytes() method
|
D | ByteStreams.java | 492 @Override public void writeBytes(String s) { 494 output.writeBytes(s);
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSOutgoing.java | 49 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
|
D | DNSRecord.java | 197 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/ |
D | LittleEndianDataOutputStreamTest.java | 87 out.writeBytes("r\u00C9sum\u00C9"); in testWriteBytes() 104 out.writeBytes("\uAAAA\uAABB\uAACC"); in testWriteBytes_discardHighOrderBytes()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
D | ObjectInputStreamTest.java | 166 oos.writeBytes("HelloWorld"); in test_resolveProxyClass() 215 oos.writeBytes("HelloWorld"); in test_available() 226 oos.writeBytes("HelloWorld"); in test_close() 268 oos.writeBytes("HelloWorld"); in test_read$BII() 364 oos.writeBytes("HelloWorld"); in test_readFully$B() 378 oos.writeBytes("HelloWorld"); in test_readFully$BII() 404 oos.writeBytes("HelloWorld\nSecondLine"); in test_readLine() 611 oos.writeBytes("HelloWorld"); in test_skipBytesI()
|
D | RandomAccessFileTest.java | 316 raf.writeBytes("HelloWorld"); in test_readFully$B() 332 raf.writeBytes("HelloWorld"); in test_readFully$BII() 457 raf.writeBytes("HelloWorld"); in test_skipBytesI() 712 raf.writeBytes("HelloWorld"); in test_writeBytesLjava_lang_String()
|
D | DataOutputStreamTest.java | 134 new DataOutputStream(null).writeBytes(""); in test_writeBytesLjava_lang_String()
|
D | DataInputStreamTest.java | 406 os.writeBytes("Hello"); in test_readLine()
|
D | SerializationStressTest.java | 444 oos.writeBytes("HelloWorld"); in test_11_writeBytes()
|
D | ObjectOutputStreamTest.java | 790 oos.writeBytes("HelloWorld"); in test_writeBytesLjava_lang_String()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | GCOVProfiling.cpp | 155 void writeBytes(const char *Bytes, int Size) { in writeBytes() function in __anona7842e720211::GCOVRecord 160 writeBytes(reinterpret_cast<char*>(&i), 4); in write() 175 writeBytes(s.data(), s.size()); in writeGCOVString() 180 writeBytes("\0\0\0\0", 4 - (s.size() % 4)); in writeGCOVString() 248 writeBytes(LinesTag, 4); in writeOut() 292 writeBytes(FunctionTag, 4); in GCOVFunction() 322 writeBytes(BlockTag, 4); in writeOut() 335 writeBytes(EdgeTag, 4); in writeOut()
|
/external/aac/libFDK/src/ |
D | FDK_bitbuffer.cpp | 452 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/ |
D | FDK_bitbuffer.h | 158 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuffer, UCHAR outBuf[], UINT *writeBytes);
|
D | FDK_bitstream.h | 611 …_INLINE void FDKfetchBuffer(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *outputBuffer, UINT *writeBytes) in FDKfetchBuffer() argument 614 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes); in FDKfetchBuffer()
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | GrammarSerializerFoo.java | 216 out.writeBytes(s); in writeString()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 225 public void writeBytes(final int fieldNumber, final ByteString value) in writeBytes() method in CodedOutputStream 298 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
|
D | UnknownFieldSet.java | 743 output.writeBytes(fieldNumber, value); in writeTo()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | SFTPv3Client.java | 585 tw.writeBytes(createAttrs(attr)); in setstat() 610 tw.writeBytes(createAttrs(attr)); in fsetstat() 1218 tw.writeBytes(createAttrs(attr)); in openFile()
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 165 public void writeBytes(final int fieldNumber, final byte[] value) in writeBytes() method in CodedOutputByteBufferNano
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 198 public void writeBytes(final int fieldNumber, final ByteStringMicro value) in writeBytes() method in CodedOutputStreamMicro
|