Home
last modified time | relevance | path

Searched refs:subStrLen (Results 1 - 1 of 1) sorted by relevance

/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dbundle_util.cpp159 int32_t subStrLen = strlen(subStr); in EndWith() local
160 if (strLen == 0 || subStrLen == 0 || strLen < subStrLen) { in EndWith()
164 while (subStrLen >= 1) { in EndWith()
165 if (str[strLen - 1] != subStr[subStrLen - 1]) { in EndWith()
169 subStrLen--; in EndWith()
181 int32_t subStrLen = strlen(subStr); in StartWith() local
182 if (strLen == 0 || subStrLen == 0 || strLen < subStrLen) { in StartWith()
187 while (index < subStrLen) { in StartWith()
[all...]

Completed in 2 milliseconds