Home
last modified time | relevance | path

Searched refs:mOutputStream (Results 1 – 4 of 4) sorted by relevance

/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
DJsonWireAdapter.java55 private final DataOutputStream mOutputStream; field in JsonWireAdapter
65 mOutputStream = new DataOutputStream(output); in JsonWireAdapter()
138 mOutputStream.write(PoloUtil.intToBigEndianIntBytes(outBytes.length)); in writeJson()
139 mOutputStream.write(outBytes); in writeJson()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlWireAdapter.java47 private final OutputStream mOutputStream; field in XmlWireAdapter
59 mOutputStream = output; in XmlWireAdapter()
135 mOutputStream.write(message.serializeToByteArray()); in writeXML()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothRfcommFacade.java349 private OutputStream mOutputStream; field in BluetoothConnection
362 mOutputStream = mSocket.getOutputStream(); in BluetoothConnection()
396 if (mOutputStream != null) { in write()
397 mOutputStream.write(out); in write()
509 if (mOutputStream != null) { in stop()
511 mOutputStream.close(); in stop()
516 mOutputStream = null; in stop()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
DProtobufWireAdapter.java65 private final OutputStream mOutputStream; field in ProtobufWireAdapter
75 mOutputStream = output; in ProtobufWireAdapter()
243 mOutputStream.write(PoloUtil.intToBigEndianIntBytes(messageLength)); in writeMessage()
244 mOutputStream.write(messageBytes); in writeMessage()