Home
last modified time | relevance | path

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

/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
DJsonWireAdapter.java50 private final DataInputStream mInputStream; field in JsonWireAdapter
64 mInputStream = new DataInputStream(input); in JsonWireAdapter()
81 mInputStream.readFully(payloadLenBytes); in getNextMessage()
84 mInputStream.readFully(outerJsonBytes); in getNextMessage()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothRfcommFacade.java350 private InputStream mInputStream; field in BluetoothConnection
363 mInputStream = mSocket.getInputStream(); in BluetoothConnection()
365 mReader = new BufferedReader(new InputStreamReader(mInputStream, "ASCII")); in BluetoothConnection()
387 mInputStream.available(); in isConnected()
421 int bytesRead = mInputStream.read(buffer); in readBinary()
501 if (mInputStream != null) { in stop()
503 mInputStream.close(); in stop()
508 mInputStream = null; in stop()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlWireAdapter.java42 private final InputStream mInputStream; field in XmlWireAdapter
58 mInputStream = input; in XmlWireAdapter()
75 XmlMessageWrapper.fromInputStream(mInputStream); in getNextMessage()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
DProtobufWireAdapter.java61 private final InputStream mInputStream; field in ProtobufWireAdapter
74 mInputStream = input; in ProtobufWireAdapter()
188 int inc = mInputStream.read(buf, bytesRead, numBytes - bytesRead); in readBytesBlocking()