Searched refs:triesSize (Results 1 - 11 of 11) 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.h429 u2 triesSize; member in struct:DexCode
434 /* followed by try_item[triesSize] */
857 return (const u1*) &pTries[pCode->triesSize];
H A DDexFile.cpp500 if (pCode->triesSize != 0) {
H A DDexSwapVerify.cpp1828 u4 count = code->triesSize;
1886 SWAP_FIELD2(item->triesSize);
1920 if (item->triesSize == 0) {
/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) +
H A DCodeItem.java240 int triesSz = (catches == null) ? 0 : catches.triesSize();
/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) +
H A DCodeItem.java233 int triesSz = (catches == null) ? 0 : catches.triesSize();
/dalvik/dx/src/com/android/dex/
H A DDex.java475 int triesSize = readUnsignedShort();
481 if (triesSize > 0) {
492 skip(triesSize * SizeOf.TRY_ITEM);
494 tries = triesSection.readTries(triesSize, catchHandlers);
514 private Try[] readTries(int triesSize, CatchHandler[] catchHandlers) { argument
515 Try[] result = new Try[triesSize];
516 for (int i = 0; i < triesSize; i++) {
/dalvik/dexdump/
H A DDexDump.cpp577 u4 triesSize = pCode->triesSize; local
579 if (triesSize == 0) {
584 printf(" catches : %d\n", triesSize);
589 for (i = 0; i < triesSize; i++) {

Completed in 159 milliseconds