Home
last modified time | relevance | path

Searched refs:oss (Results 1 – 13 of 13) sorted by relevance

/base/telephony/cellular_data/services/src/
Dcellular_data_service.cpp361 std::ostringstream oss; in GetBeginTime() local
362 oss << beginTime_; in GetBeginTime()
363 TELEPHONY_LOGI("bindTime := %{public}s", oss.str().c_str()); in GetBeginTime()
364 return oss.str(); in GetBeginTime()
369 std::ostringstream oss; in GetEndTime() local
370 oss << endTime_; in GetEndTime()
371 TELEPHONY_LOGI("endTime := %{public}s", oss.str().c_str()); in GetEndTime()
372 return oss.str(); in GetEndTime()
377 std::ostringstream oss; in GetCellularDataSlotIdDump() local
378 oss << "slotId:" << GetDefaultCellularDataSlotId(); in GetCellularDataSlotIdDump()
[all …]
/base/sensors/sensor/utils/ipc/src/
Dstream_session.cpp120 std::ostringstream oss; in UpdateDescript() local
121 oss << "fd = " << StreamSessionGetFd(streamSessionPtr_.get()) in UpdateDescript()
129 descript_ = oss.str().c_str(); in UpdateDescript()
131 std::ostringstream oss; in UpdateDescript()
132 oss << "fd = " << fd_ in UpdateDescript()
139 descript_ = oss.str().c_str(); in UpdateDescript()
/base/update/updater/services/include/log/
Ddump.h61 std::ostringstream oss; in DumpInfo() local
63 ((oss << args << (++n != sizeof ...(Args) ? "," : "")), ...); in DumpInfo()
64 std::string str = oss.str(); in DumpInfo()
/base/hiviewdfx/hiview/plugins/freeze_detector/
Dvendor.cpp118 void Vendor::DumpEventInfo(std::ostringstream& oss, const std::string& header, const WatchPoint& wa… in DumpEventInfo() argument
121 oss << header << std::endl; in DumpEventInfo()
122 oss << FreezeCommon::EVENT_DOMAIN << FreezeCommon::COLON << watchPoint.GetDomain() << std::endl; in DumpEventInfo()
123oss << FreezeCommon::EVENT_STRINGID << FreezeCommon::COLON << watchPoint.GetStringId() << std::end… in DumpEventInfo()
124 oss << FreezeCommon::EVENT_TIMESTAMP << FreezeCommon::COLON << in DumpEventInfo()
127 oss << FreezeCommon::EVENT_PID << FreezeCommon::COLON << watchPoint.GetPid() << std::endl; in DumpEventInfo()
128 oss << FreezeCommon::EVENT_UID << FreezeCommon::COLON << watchPoint.GetUid() << std::endl; in DumpEventInfo()
129oss << FreezeCommon::EVENT_PACKAGE_NAME << FreezeCommon::COLON << watchPoint.GetPackageName() << s… in DumpEventInfo()
130oss << FreezeCommon::EVENT_PROCESS_NAME << FreezeCommon::COLON << watchPoint.GetProcessName() << s… in DumpEventInfo()
131 oss << FreezeCommon::EVENT_MSG << FreezeCommon::COLON << watchPoint.GetMsg() << std::endl; in DumpEventInfo()
Dvendor.h40 …void DumpEventInfo(std::ostringstream& oss, const std::string& header, const WatchPoint& watchPoin…
/base/msdp/device_status/utils/ipc/src/
Dstream_session.cpp100 std::ostringstream oss; in UpdateDescript() local
101 oss << "fd = " << fd_ in UpdateDescript()
106 descript_ = oss.str().c_str(); in UpdateDescript()
/base/security/code_signature/test/unittest/
Dmulti_thread_local_sign_test.cpp87 std::ostringstream oss; in LocalCodeSignAndEnforce() local
88 oss << thisId; in LocalCodeSignAndEnforce()
89 std::string thisIdStr = oss.str(); in LocalCodeSignAndEnforce()
/base/telephony/state_registry/services/src/
Dtelephony_state_registry_service.cpp663 std::ostringstream oss; in GetBindStartTime() local
664 oss << bindStartTime_; in GetBindStartTime()
665 return oss.str(); in GetBindStartTime()
670 std::ostringstream oss; in GetBindEndTime() local
671 oss << bindEndTime_; in GetBindEndTime()
672 return oss.str(); in GetBindEndTime()
677 std::ostringstream oss; in GetBindSpendTime() local
678 oss << (bindEndTime_ - bindStartTime_); in GetBindSpendTime()
679 return oss.str(); in GetBindSpendTime()
/base/telephony/cellular_call/services/manager/src/
Dcellular_call_service.cpp275 std::ostringstream oss; in GetBindTime() local
276 oss << bindTime_; in GetBindTime()
277 return oss.str(); in GetBindTime()
282 std::ostringstream oss; in GetEndTime() local
283 oss << endTime_; in GetEndTime()
284 return oss.str(); in GetEndTime()
290 std::ostringstream oss; in GetSpendTime() local
291 oss << spendTime_; in GetSpendTime()
292 return oss.str(); in GetSpendTime()
/base/hiviewdfx/hilog/services/hilogd/
Dlog_persister.cpp280 std::ostringstream oss; in WriteLogData() local
281 LogPrintWithFormat(content, format, oss); in WriteLogData()
282 std::string formatedLogStr = oss.str(); in WriteLogData()
/base/telephony/call_manager/services/call_manager_service/src/
Dcall_manager_service.cpp178 std::ostringstream oss; in GetBindTime() local
179 oss << bindTime_; in GetBindTime()
180 return oss.str(); in GetBindTime()
185 std::ostringstream oss; in GetStartServiceSpent() local
186 oss << spendTime_; in GetStartServiceSpent()
187 return oss.str(); in GetStartServiceSpent()
/base/update/updater/utils/
Dutils.cpp755 std::ostringstream oss; in DurationToString() local
756 oss << std::fixed << std::setprecision(precision) << duration.count(); in DurationToString()
757 return oss.str(); in DurationToString()
/base/hiviewdfx/hiview/plugins/freeze_detector/test/unittest/common/
Dfreeze_detector_unittest.cpp289 std::ostringstream oss; variable
301 vendor->DumpEventInfo(oss, header, watchPoint);