Searched refs:getSize (Results 1 - 10 of 10) sorted by path

/dalvik/dx/src/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java88 public int getSize() { method in class:FillArrayDataPayloadDecodedInstruction
H A DInstructionCodec.java738 out.writeInt(payload.getSize());
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java1058 for (int i = 0; i < mapSet.getSize(); i++) {
1135 public int getSize() { method in class:FirstFitLocalCombiningAllocator.Multiset
/dalvik/hit/src/com/android/hit/
H A DArrayInstance.java74 public final int getSize() { method in class:ArrayInstance
H A DClassInstance.java86 public final int getSize() { method in class:ClassInstance
89 return isa.getSize();
H A DHeap.java142 System.out.println(theClass + ": base " + theClass.getSize()
H A DInstance.java76 size += instance.getSize();
83 public int getSize() { method in class:Instance
H A DRootObj.java67 public final int getSize() { method in class:RootObj
80 return instance.getSize();
/dalvik/libdex/
H A DSysUtil.cpp417 size_t getSize = (count > kBufSize) ? kBufSize : count; local
419 ssize_t actual = TEMP_FAILURE_RETRY(read(inFd, buf, getSize));
420 if (actual != (ssize_t) getSize) {
422 (int) actual, getSize);
426 if (sysWriteFully(outFd, buf, getSize, "sysCopyFileToFile") != 0)
429 count -= getSize;
H A DZipArchive.cpp633 size_t getSize = (compLen > kBufSize) ? kBufSize : compLen; local
635 ssize_t actual = TEMP_FAILURE_RETRY(read(inFd, readBuf, getSize));
636 if (actual != (ssize_t) getSize) {
638 (int)actual, getSize);
642 compLen -= getSize;
645 zstream.avail_in = getSize;

Completed in 178 milliseconds