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

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 394 public static BluetoothMapbMessage parse(InputStream bMsgStream, int appParamCharset) throws IllegalArgumentException{
422 while ((len = bMsgStream.read(buffer)) > 0) {
446 /* We failed to create the the log-file, just continue using the original bMsgStream. */
448 /* overwrite the bMsgStream using the file written to the SD-Card */
450 bMsgStream.close();
454 /* Open the file and overwrite bMsgStream to read from the file */
456 bMsgStream = new FileInputStream(file);
465 reader = new BMsgReader(bMsgStream);
549 bMsgStream.close();
    [all...]
BluetoothMapObexServer.java 454 InputStream bMsgStream = null;
475 bMsgStream = op.openInputStream();
477 message = BluetoothMapbMessage.parse(bMsgStream, appParams.getCharset());
527 if(bMsgStream != null) {
529 bMsgStream.close();
    [all...]

Completed in 67 milliseconds