Lines Matching refs:ss
329 std::stringstream ss;
330 ss.clear();
331 ss << static_cast<uint8_t>(CdmaTransportMsgType::BROADCAST);
332 ss << static_cast<uint8_t>(CdmaSmsParameterRecord::SERVICE_CATEGORY);
333 ss << static_cast<uint8_t>(0x02);
334 ss << static_cast<uint8_t>(static_cast<uint16_t>(SmsServiceCtg::CMAS_TEST) >> 8);
335 ss << static_cast<uint8_t>(static_cast<uint16_t>(SmsServiceCtg::CMAS_TEST) & 0xff);
336 ss << static_cast<uint8_t>(CdmaSmsParameterRecord::BEARER_DATA);
337 ss << static_cast<uint8_t>(sizeof(cmasTestBearerData));
339 ss << cmasTestBearerData[i];
341 SmsReadBuffer rBuffer(ss.str());
397 std::stringstream ss;
398 ss << static_cast<uint8_t>(CdmaSmsParameterRecord::BEARER_DATA);
399 ss << static_cast<uint8_t>(pdu.size() / HEX_CHAR_LEN);
400 ss << StringUtils::HexToString(pdu);
404 SmsReadBuffer rBuffer(ss.str());
414 std::stringstream ss;
415 ss << static_cast<uint8_t>(CdmaSmsParameterRecord::BEARER_DATA);
416 ss << static_cast<uint8_t>(pdu.size() / HEX_CHAR_LEN);
417 ss << StringUtils::HexToString(pdu);
421 SmsReadBuffer rBuffer(ss.str());
483 std::stringstream ss;
484 ss.clear();
485 ss << static_cast<uint8_t>(CdmaSmsParameterRecord::BEARER_DATA);
486 ss << static_cast<uint8_t>(dataStr.size() / HEX_CHAR_LEN);
487 ss << StringUtils::HexToString(dataStr);
491 SmsReadBuffer rBuffer(ss.str());