HomeSort by relevance Sort by last modified time
    Searched refs:triesSize (Results 1 - 16 of 16) sorted by null

  /dalvik/libdex/
DexCatch.cpp 27 if (pCode->triesSize == 0) {
41 if (pCode->triesSize == 0) {
52 int dexFindCatchHandlerOffset0(u2 triesSize, const DexTry* pTries,
56 int max = triesSize - 1;
DexCatch.h 114 int dexFindCatchHandlerOffset0(u2 triesSize, const DexTry* pTries,
122 u2 triesSize = pCode->triesSize;
126 switch (triesSize) {
148 offset = dexFindCatchHandlerOffset0(triesSize, dexGetTries(pCode),
DexFile.h 341 u2 triesSize;
346 /* followed by try_item[triesSize] */
769 return (const u1*) &pTries[pCode->triesSize];
DexFile.cpp 503 if (pCode->triesSize != 0) {
DexSwapVerify.cpp     [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethodImplementation.java 90 final int triesSize = dexFile.readUshort(codeOffset + CodeItem.TRIES_SIZE_OFFSET);
91 if (triesSize > 0) {
95 final int handlersStartOffset = triesStartOffset + triesSize*CodeItem.TryItem.ITEM_SIZE;
108 return triesSize;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 99 public int triesSize() {
185 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
CodeItem.java 240 int triesSz = (catches == null) ? 0 : catches.triesSize();
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 96 public int triesSize() {
182 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
CodeItem.java 231 int triesSz = (catches == null) ? 0 : catches.triesSize();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 97 public int triesSize() {
183 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
CodeItem.java 240 int triesSz = (catches == null) ? 0 : catches.triesSize();
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 646 int triesSize = readUnsignedShort();
652 if (triesSize > 0) {
663 skip(triesSize * SizeOf.TRY_ITEM);
665 tries = triesSection.readTries(triesSize, catchHandlers);
685 private Try[] readTries(int triesSize, CatchHandler[] catchHandlers) {
686 Try[] result = new Try[triesSize];
687 for (int i = 0; i < triesSize; i++) {
    [all...]
  /dalvik/dexdump/
DexDump.cpp 569 u4 triesSize = pCode->triesSize;
571 if (triesSize == 0) {
576 printf(" catches : %d\n", triesSize);
581 for (i = 0; i < triesSize; i++) {
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 

Completed in 538 milliseconds