Home
last modified time | relevance | path

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

/art/dexdump/
Ddexdump.cc125 int targetLen = strlen(str); in descriptorToDot() local
129 while (targetLen > 1 && str[offset] == '[') { in descriptorToDot()
131 targetLen--; in descriptorToDot()
136 if (targetLen == 1) { in descriptorToDot()
140 targetLen = strlen(str); in descriptorToDot()
143 if (targetLen >= 2 && str[offset] == 'L' && in descriptorToDot()
144 str[offset + targetLen - 1] == ';') { in descriptorToDot()
145 targetLen -= 2; in descriptorToDot()
151 std::unique_ptr<char[]> newStr(new char[targetLen + arrayDepth * 2 + 1]); in descriptorToDot()
153 for (; i < targetLen; i++) { in descriptorToDot()
[all …]