Home
last modified time | relevance | path

Searched refs:newStr (Results 1 – 3 of 3) sorted by relevance

/drivers/hdf_core/framework/utils/src/
Dhdf_cstring.c60 char *newStr = NULL; in HdfStringCopy() local
69 newStr = OsalMemAlloc(dstSize); in HdfStringCopy()
70 if (newStr == NULL) { in HdfStringCopy()
74 if (strncpy_s(newStr, dstSize, src, srcSize) != EOK) { in HdfStringCopy()
75 OsalMemFree(newStr); in HdfStringCopy()
76 newStr = NULL; in HdfStringCopy()
79 return newStr; in HdfStringCopy()
/drivers/hdf_core/framework/tools/hdi-gen/util/
Dstring_helper.h37 …::string Replace(const std::string &value, size_t position, size_t len, const std::string &newStr);
Dstring_helper.cpp114 …ngHelper::Replace(const std::string &value, size_t position, size_t len, const std::string &newStr) in Replace() argument
122 return prefix + newStr + suffix; in Replace()