Lines Matching refs:write

313                 outStream.write(ELT_ID_CONCATENATED_8_BIT_REFERENCE);  in toByteArray()
314 outStream.write(3); in toByteArray()
315 outStream.write(concatRef.refNumber); in toByteArray()
317 outStream.write(ELT_ID_CONCATENATED_16_BIT_REFERENCE); in toByteArray()
318 outStream.write(4); in toByteArray()
319 outStream.write(concatRef.refNumber >>> 8); in toByteArray()
320 outStream.write(concatRef.refNumber & 0x00FF); in toByteArray()
322 outStream.write(concatRef.msgCount); in toByteArray()
323 outStream.write(concatRef.seqNumber); in toByteArray()
328 outStream.write(ELT_ID_APPLICATION_PORT_ADDRESSING_8_BIT); in toByteArray()
329 outStream.write(2); in toByteArray()
330 outStream.write(portAddrs.destPort); in toByteArray()
331 outStream.write(portAddrs.origPort); in toByteArray()
333 outStream.write(ELT_ID_APPLICATION_PORT_ADDRESSING_16_BIT); in toByteArray()
334 outStream.write(4); in toByteArray()
335 outStream.write(portAddrs.destPort >>> 8); in toByteArray()
336 outStream.write(portAddrs.destPort & 0x00FF); in toByteArray()
337 outStream.write(portAddrs.origPort >>> 8); in toByteArray()
338 outStream.write(portAddrs.origPort & 0x00FF); in toByteArray()
342 outStream.write(ELT_ID_NATIONAL_LANGUAGE_SINGLE_SHIFT); in toByteArray()
343 outStream.write(1); in toByteArray()
344 outStream.write(smsHeader.languageShiftTable); in toByteArray()
347 outStream.write(ELT_ID_NATIONAL_LANGUAGE_LOCKING_SHIFT); in toByteArray()
348 outStream.write(1); in toByteArray()
349 outStream.write(smsHeader.languageTable); in toByteArray()
352 outStream.write(ELT_ID_SPECIAL_SMS_MESSAGE_INDICATION); in toByteArray()
353 outStream.write(2); in toByteArray()
354 outStream.write(specialSmsMsg.msgIndType & 0xFF); in toByteArray()
355 outStream.write(specialSmsMsg.msgCount & 0xFF); in toByteArray()
358 outStream.write(miscElt.id); in toByteArray()
359 outStream.write(miscElt.data.length); in toByteArray()
360 outStream.write(miscElt.data, 0, miscElt.data.length); in toByteArray()