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/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/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 569 u4 triesSize = pCode->triesSize;
571 if (triesSize == 0) {
576 printf(" catches : %d\n", triesSize);
581 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 1191 milliseconds