HomeSort by relevance Sort by last modified time
    Searched refs:triesSize (Results 1 - 19 of 19) 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...]
  /dalvik/dx/src/com/android/dx/io/
DexBuffer.java 444 int triesSize = readUnsignedShort();
450 if (triesSize > 0) {
461 skip(triesSize * SizeOf.TRY_ITEM);
463 tries = triesSection.readTries(triesSize, catchHandlers);
483 private Try[] readTries(int triesSize, CatchHandler[] catchHandlers) {
484 Try[] result = new Try[triesSize];
485 for (int i = 0; i < triesSize; i++) {
  /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 97 public int triesSize() {
183 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
CodeItem.java 240 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();
  /dalvik/vm/compiler/codegen/x86/
Lower.cpp 285 u4 triesSize = pCode->triesSize;
288 for (i = 0; i < triesSize; i++) {
  /dalvik/vm/analysis/
VfyBasicBlock.cpp 340 if (pCode->triesSize != 0) {
358 if (tryIndex == pCode->triesSize) {
DexVerify.cpp 141 u4 triesSize = pCode->triesSize;
145 if (triesSize == 0) {
151 for (idx = 0; idx < triesSize; idx++) {
    [all...]
CodeVerify.cpp     [all...]
  /dalvik/dexdump/
DexDump.cpp 566 u4 triesSize = pCode->triesSize;
568 if (triesSize == 0) {
573 printf(" catches : %d\n", triesSize);
578 for (i = 0; i < triesSize; i++) {
    [all...]
  /dalvik/vm/compiler/
Frontend.cpp 846 int triesSize = pCode->triesSize;
850 if (triesSize == 0) {
858 for (i = 0; i < triesSize; i++) {
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 599 milliseconds