Home
last modified time | relevance | path

Searched refs:mDataLength (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
DSystraceTask.java33 private int mDataLength = 0; field in SystraceTask
71 if (mDataLength + length > mBuffer.length) { in addOutput()
72 mBuffer = Bytes.ensureCapacity(mBuffer, mDataLength + length + 1, 1024); in addOutput()
76 mBuffer[mDataLength + i] = data[offset + i]; in addOutput()
78 mDataLength += length; in addOutput()
86 byte[] copy = new byte[mDataLength]; in flush()
87 for (int i = 0; i < mDataLength; i++) { in flush()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
DPsdFile.java191 final int mDataLength = 16; field in PsdFile.ImageResources
215 out.writeInt(mDataLength); in write()
426 final int mDataLength; field in PsdFile.Channel
430 mDataLength = dataLength + 2; in Channel()
434 return 2 + 4 + mDataLength; in getLength()
439 out.writeInt(mDataLength); in write()