HomeSort by relevance Sort by last modified time
    Searched defs:bMsgStream (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 250 InputStream bMsgStream;
252 bMsgStream = op.openInputStream();
253 message = BluetoothMapbMessage.parse(bMsgStream, appParams.getCharset()); // Decode the messageBody
271 bMsgStream.close();
BluetoothMapbMessage.java 374 public static BluetoothMapbMessage parse(InputStream bMsgStream, int appParamCharset) throws IllegalArgumentException{
402 while ((len = bMsgStream.read(buffer)) > 0) {
426 /* We failed to create the the log-file, just continue using the original bMsgStream. */
428 /* overwrite the bMsgStream using the file written to the SD-Card */
430 bMsgStream.close();
434 /* Open the file and overwrite bMsgStream to read from the file */
436 bMsgStream = new FileInputStream(file);
445 reader = new BMsgReader(bMsgStream);
525 bMsgStream.close();
    [all...]

Completed in 223 milliseconds