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

/dalvik/vm/
H A DMisc.cpp612 void *dvmAllocRegion(size_t byteCount, int prot, const char *name) { argument
616 byteCount = ALIGN_UP_TO_PAGE_SIZE(byteCount);
617 fd = ashmem_create_region(name, byteCount);
621 base = mmap(NULL, byteCount, prot, MAP_PRIVATE, fd, 0);
627 munmap(base, byteCount);
H A DCheckJni.cpp1710 int byteCount = strObj->length() * 2; local
1711 result = (const jchar*) GuardedCopy::create(result, byteCount, false);
1953 int byteCount = strObj->length() * 2; local
1954 result = (const jchar*) GuardedCopy::create(result, byteCount, false);
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java1052 typeList += contents.typeLists.byteCount;
1053 stringData += contents.stringDatas.byteCount;
1054 annotationsDirectory += contents.annotationsDirectories.byteCount;
1055 annotationsSet += contents.annotationSets.byteCount;
1056 annotationsSetRefList += contents.annotationSetRefLists.byteCount;
1059 code += contents.codes.byteCount;
1060 classData += contents.classDatas.byteCount;
1061 encodedArray += contents.encodedArrays.byteCount;
1062 annotation += contents.annotations.byteCount;
1063 debugInfo += contents.debugInfos.byteCount;
[all...]
/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java46 + " byteCount=" + Integer.toHexString(section.byteCount));

Completed in 146 milliseconds