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

  /dalvik/libdex/
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 435 u2 triesSize;
440 /* followed by try_item[triesSize] */
863 return (const u1*) &pTries[pCode->triesSize];
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 30 public short triesSize;
54 triesSize = file.readUShort();
58 if (triesSize > 0) {
63 tries = new TryItem[triesSize];
64 for (int i = 0; i < triesSize; i++) {
97 file.writeUShort(triesSize);
104 if (triesSize > 0) {
127 if (kind == IndexUpdateKind.TYPE_ID && triesSize > 0) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 99 public int triesSize() {
185 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 96 public int triesSize() {
182 return (triesSize() * TRY_ITEM_WRITE_SIZE) +
  /art/tools/dexfuzz/src/dexfuzz/program/
MutatableCode.java 60 public short triesSize;
176 if (triesSize > 0) {
  /art/dexdump/
dexdump.cc 731 const u4 triesSize = accessor.TriesSize();
734 if (triesSize == 0) {
740 fprintf(gOutFile, " catches : %d\n", triesSize);
    [all...]
  /dalvik/dexdump/
DexDump.cpp 570 u4 triesSize = pCode->triesSize;
572 if (triesSize == 0) {
577 printf(" catches : %d\n", triesSize);
582 for (i = 0; i < triesSize; i++) {
    [all...]
  /dalvik/dx/src/com/android/dex/
Dex.java 475 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) {
515 Try[] result = new Try[triesSize];
516 for (int i = 0; i < triesSize; i++) {
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 

Completed in 1194 milliseconds