Searched defs:bos (Results 1 - 2 of 2) sorted by last modified time

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
H A DCdmaSmsCbTest.java85 BitwiseOutputStream bos = new BitwiseOutputStream(10);
86 bos.write(8, SUBPARAM_MESSAGE_IDENTIFIER);
87 bos.write(8, 3); // length: 3 bytes
88 bos.write(4, BearerData.MESSAGE_TYPE_DELIVER);
89 bos.write(8, ((messageId >>> 8) & 0xff));
90 bos.write(8, (messageId & 0xff));
91 bos.write(1, 0); // no User Data Header
92 bos.write(3, 0); // reserved
95 bos.write(8, SUBPARAM_PRIORITY_INDICATOR);
96 bos
211 encodeBody(int encoding, String body, boolean isCmasRecord, BitwiseOutputStream bos) argument
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DFsUtils.java55 public static int writeLayoutTestListRecursively(BufferedOutputStream bos, argument
76 testCount += writeLayoutTestListRecursively(bos, s, ignoreResultsInDir);
92 bos.write(s.getBytes());
95 bos.write((" IGNORE_RESULT").getBytes());
97 bos.write('\n');
106 BufferedOutputStream bos = new BufferedOutputStream(
108 bos.write(s.getBytes());
109 bos.close();

Completed in 131 milliseconds