Home
last modified time | relevance | path

Searched refs:tempStr (Results 1 – 10 of 10) sorted by relevance

/base/hiviewdfx/hilog_lite/frameworks/js/builtin/src/
Dhilog_vector.cpp77 char **tempStr = static_cast<char**>( in Push() local
82 if (tempStr != nullptr && tempType != nullptr) { in Push()
83 vector->str = tempStr; in Push()
91 char *tempStr = static_cast<char*>(malloc(length)); in Push() local
92 if (tempStr == nullptr) { in Push()
95 vector->str[vector->size] = tempStr; in Push()
/base/hiviewdfx/hidumper/frameworks/native/src/util/
Dstring_utils.cpp88 for (const string &tempStr : strs) { in Compare() local
89 if (str == tempStr) { in Compare()
/base/telephony/ril_adapter/services/vendor/src/
Dat_network.c2008 char *tempStr = (char *)str; in FillNeighboringCellSsbId() local
2009 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2022 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2026 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2030 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2034 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2039 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2043 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillNeighboringCellSsbId()
2056 char *tempStr = (char *)str; in FillServingCellSsbId() local
2060 if (NextIntNotSkipNextComma(&tempStr, &tempData) != 0) { in FillServingCellSsbId()
[all …]
/base/telephony/sms_mms/services/sms/gsm/
Dgsm_sms_param_encode.cpp239 std::string tempStr(REL_TIME_LEN + 1, '\0'); in EncodeTimePdu() local
240 …int ret = memcpy_s(tempStr.data(), REL_TIME_LEN + 1, &(timeStamp->time.relative.time), REL_TIME_LE… in EncodeTimePdu()
244 resultValue = tempStr; in EncodeTimePdu()
/base/tee/tee_client/services/cadaemon/src/ca_daemon/
Dcadaemon_stub.cpp92 string tempStr; in GetChar() local
99 ret = data.ReadString(tempStr); in GetChar()
101 …if (strnlen(tempStr.c_str(), PATH_MAX) == PATH_MAX || strLen != strnlen(tempStr.c_str(), PATH_MAX)… in GetChar()
106 if (strcpy_s(tempChar, PATH_MAX + 1, tempStr.c_str()) != EOK) { in GetChar()
/base/global/resource_management_lite/frameworks/resmgr_lite/src/
Dres_locale.cpp463 std::string tempStr = outValue.at(j + 1); in FindAndSort() local
465 outValue.at(j) = tempStr; in FindAndSort()
/base/global/resource_management/frameworks/resmgr/src/
Dres_locale.cpp473 std::string tempStr = outValue.at(j + 1); in FindAndSort() local
475 outValue.at(j) = tempStr; in FindAndSort()
/base/notification/distributed_notification_service/services/ans/src/
Dnotification_preferences_database.cpp996 std::string tempStr = FindLastString(bundleKey, key); in IsSlotKey() local
997 size_t pos = tempStr.find_first_of(KEY_UNDER_LINE); in IsSlotKey()
1000 slotStr = tempStr.substr(0, pos); in IsSlotKey()
1056 std::string tempStr = FindLastString(findString, keyStr); in SubUniqueIdentifyFromString() local
1057 size_t pos = tempStr.find_last_of(KEY_UNDER_LINE); in SubUniqueIdentifyFromString()
1059 slotType = tempStr.substr(0, pos); in SubUniqueIdentifyFromString()
/base/usb/usb_manager/services/native/src/
Dusb_right_db_helper.cpp251 std::string tempStr; in QueryAndGetResultColumnValues() local
252 if (resultSet->GetString(columnIndex, tempStr) == E_OK) { in QueryAndGetResultColumnValues()
253 columnValues.push_back(tempStr); in QueryAndGetResultColumnValues()
/base/tee/tee_client/interfaces/kits/c/src/
Dtee_client.cpp227 string tempStr = srcStr; in WriteChar() local
230 writeRet = data.WriteString(tempStr); in WriteChar()