Home
last modified time | relevance | path

Searched refs:strLen (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/go/go-1.18/
H A DCVE-2022-41723.patch96 strLen, p, err := readVarInt(7, p)
101 if d.maxStrLen != 0 && strLen > uint64(d.maxStrLen) {
110 if uint64(len(p)) < strLen {
115 - s = string(p[:strLen])
117 - return s, p[strLen:], nil
121 + u.b = p[:strLen]
122 + return u, p[strLen:], nil
129 - if err := huffmanDecode(buf, d.maxStrLen, p[:strLen]); err != nil {
150 - return s, p[strLen:], nil
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/
H A DBits.h351 unsigned int strLen = strlen((const char*)str); in setUtf8String() local
353 set4BE(buf, strLen); in setUtf8String()
354 memcpy(buf + sizeof(unsigned int), str, strLen); in setUtf8String()
/OK3568_Linux_fs/external/recovery/minzip/
H A DBits.h351 unsigned int strLen = strlen((const char*)str); in setUtf8String() local
353 set4BE(buf, strLen); in setUtf8String()
354 memcpy(buf + sizeof(unsigned int), str, strLen); in setUtf8String()
/OK3568_Linux_fs/external/rkupdate/
H A DUpgrade.cpp111 string strOffset, strLen; in ParsePartitionInfo() local
123 strLen = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
124 strLen.erase(0, strLen.find_first_not_of(_T(" "))); in ParsePartitionInfo()
125 strLen.erase(strLen.find_last_not_of(_T(" ")) + 1); in ParsePartitionInfo()
126 if (strchr(strLen.c_str(), '-')) in ParsePartitionInfo()
132 iCount = sscanf(strLen.c_str(), "0x%x", &uiLen); in ParsePartitionInfo()
H A DRKAndroidDevice.cpp3176 string strOffset, strLen; in ParsePartitionInfo() local
3188 strLen = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
3189 strLen.erase(0, strLen.find_first_not_of(" ")); in ParsePartitionInfo()
3190 strLen.erase(strLen.find_last_not_of(" ") + 1); in ParsePartitionInfo()
3191 if (strchr(strLen.c_str(), '-')) in ParsePartitionInfo()
3197 iCount = sscanf(strLen.c_str(), "0x%x", &uiLen); in ParsePartitionInfo()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/gp/include/
H A Dxml_internal_api.h558 uint32_t strLen = 0; in Invoke_GetPropertyName() local
581 strLen = strlen(propertyName) + 1; in Invoke_GetPropertyName()
584 strLen); in Invoke_GetPropertyName()
589 propertyName, strLen)); in Invoke_GetPropertyName()