OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bMsgStream
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java
581
InputStream
bMsgStream
= null;
602
bMsgStream
= op.openInputStream();
604
message = BluetoothMapbMessage.parse(
bMsgStream
, appParams.getCharset());
659
if(
bMsgStream
!= null) {
661
bMsgStream
.close();
[
all
...]
BluetoothMapbMessage.java
476
public static BluetoothMapbMessage parse(InputStream
bMsgStream
,
507
while ((len =
bMsgStream
.read(buffer)) > 0) {
532
/* We failed to create the log-file, just continue using the original
bMsgStream
. */
534
/* overwrite the
bMsgStream
using the file written to the SD-Card */
536
bMsgStream
.close();
540
/* Open the file and overwrite
bMsgStream
to read from the file */
542
bMsgStream
= new FileInputStream(file);
552
reader = new BMsgReader(
bMsgStream
);
651
bMsgStream
.close();
[
all
...]
Completed in 135 milliseconds