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

  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceTask.java 33 private int mDataLength = 0;
71 if (mDataLength + length > mBuffer.length) {
72 mBuffer = Bytes.ensureCapacity(mBuffer, mDataLength + length + 1, 1024);
76 mBuffer[mDataLength + i] = data[offset + i];
78 mDataLength += length;
86 byte[] copy = new byte[mDataLength];
87 for (int i = 0; i < mDataLength; i++) {
  /system/core/include/utils/
FileMap.h 75 size_t getDataLength(void) const { return mDataLength; }
125 size_t mDataLength; // length, measured from "mDataPtr"
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WspTypeDecoder.java 200 int mDataLength;
224 mDataLength = index - startIndex + 1;
226 mStringValue = new String(mWspData, startIndex + 1, mDataLength - 2);
228 mStringValue = new String(mWspData, startIndex, mDataLength - 1);
247 mDataLength = index - startIndex + 1;
248 mStringValue = new String(mWspData, startIndex, mDataLength - 1);
267 mDataLength = 1;
290 mDataLength = 1 + lengthMultiOctet;
331 mDataLength = index - startIndex + 1;
350 mDataLength = 1
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 191 final int mDataLength = 16;
215 out.writeInt(mDataLength);
426 final int mDataLength;
430 mDataLength = dataLength + 2;
434 return 2 + 4 + mDataLength;
439 out.writeInt(mDataLength);
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 

Completed in 346 milliseconds