Searched defs:triesSize (Results 1 - 9 of 9) sorted by relevance

/dalvik/libdex/
H A DDexCatch.cpp27 if (pCode->triesSize == 0) {
41 if (pCode->triesSize == 0) {
52 int dexFindCatchHandlerOffset0(u2 triesSize, const DexTry* pTries, argument
56 int max = triesSize - 1;
H A DDexCatch.h114 int dexFindCatchHandlerOffset0(u2 triesSize, const DexTry* pTries,
122 u2 triesSize = pCode->triesSize; local
126 switch (triesSize) {
148 offset = dexFindCatchHandlerOffset0(triesSize, dexGetTries(pCode),
H A DDexFile.h341 u2 triesSize; member in struct:DexCode
346 /* followed by try_item[triesSize] */
769 return (const u1*) &pTries[pCode->triesSize];
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DCatchStructs.java99 public int triesSize() { method in class:CatchStructs
185 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
/dalvik/dx/src/com/android/dx/dex/file/
H A DCatchStructs.java96 public int triesSize() { method in class:CatchStructs
182 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
/dalvik/vm/analysis/
H A DDexVerify.cpp141 u4 triesSize = pCode->triesSize; local
145 if (triesSize == 0) {
151 for (idx = 0; idx < triesSize; idx++) {
/dalvik/vm/compiler/codegen/x86/
H A DLower.cpp285 u4 triesSize = pCode->triesSize; local
288 for (i = 0; i < triesSize; i++) {
/dalvik/vm/compiler/
H A DFrontend.cpp846 int triesSize = pCode->triesSize; local
850 if (triesSize == 0) {
858 for (i = 0; i < triesSize; i++) {
/dalvik/dexdump/
H A DDexDump.cpp569 u4 triesSize = pCode->triesSize; local
571 if (triesSize == 0) {
576 printf(" catches : %d\n", triesSize);
581 for (i = 0; i < triesSize; i++) {

Completed in 419 milliseconds