Searched defs:triesSize (Results 1 - 6 of 6) 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/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 283 milliseconds