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

/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java273 int targetLen = descr.length();
278 while (targetLen > 1 && descr.charAt(offset) == '[') {
280 targetLen--;
284 if (targetLen == 1) {
287 targetLen = descr.length();
290 if (targetLen >= 2 && descr.charAt(offset) == 'L' &&
291 descr.charAt(offset+targetLen-1) == ';')
293 targetLen -= 2; /* two fewer chars to copy */
298 char[] buf = new char[targetLen + arrayDepth * 2];
302 for (i = 0; i < targetLen;
[all...]
/dalvik/dexdump/
H A DDexDump.cpp128 int targetLen = strlen(str); local
134 while (targetLen > 1 && str[offset] == '[') {
136 targetLen--;
140 if (targetLen == 1) {
144 targetLen = strlen(str);
147 if (targetLen >= 2 && str[offset] == 'L' &&
148 str[offset+targetLen-1] == ';')
150 targetLen -= 2;
155 newStr = (char*)malloc(targetLen + arrayDepth * 2 +1);
159 for (i = 0; i < targetLen;
[all...]
/dalvik/vm/jdwp/
H A DJdwpEvent.cpp422 int targetLen = strlen(target); local
426 pattern+1, target + (targetLen-patLen));
428 if (targetLen < patLen)
430 return strcmp(pattern+1, target + (targetLen-patLen)) == 0;

Completed in 279 milliseconds