Home
last modified time | relevance | path

Searched refs:amt (Results 1 – 11 of 11) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
DFileUtils.java78 int amt = in.read(result, at, length); in readFile() local
79 if (amt == -1) { in readFile()
82 at += amt; in readFile()
83 length -= amt; in readFile()
DAnnotatedOutput.java62 public void annotate(int amt, String msg); in annotate() argument
DTwoColumnOutput.java248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument
249 while (amt > 0) { in writeSpaces()
251 amt--; in writeSpaces()
DByteArrayAnnotatedOutput.java377 public void annotate(int amt, String msg) { in annotate() argument
394 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/dalvik/vm/
DRawDexFile.cpp76 ssize_t amt = read(fd, headerStart, sizeof(headerStart)); in verifyMagicAndGetAdler32() local
78 if (amt < 0) { in verifyMagicAndGetAdler32()
83 if (amt != sizeof(headerStart)) { in verifyMagicAndGetAdler32()
84 ALOGE("Unable to read full header (only got %d bytes)", (int) amt); in verifyMagicAndGetAdler32()
/dalvik/dx/src/com/android/dx/util/
DAnnotatedOutput.java62 public void annotate(int amt, String msg); in annotate() argument
DTwoColumnOutput.java248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument
249 while (amt > 0) { in writeSpaces()
251 amt--; in writeSpaces()
DByteArrayAnnotatedOutput.java373 public void annotate(int amt, String msg) { in annotate() argument
390 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/dalvik/dx/src/com/android/dx/cf/direct/
DClassPathOpener.java273 int amt = in.read(buf); in processArchive() local
274 if (amt < 0) { in processArchive()
278 baos.write(buf, 0, amt); in processArchive()
/dalvik/dx/src/com/android/dx/dex/file/
DDexFile.java635 int amt = md.digest(bytes, 12, 20); in calcSignature() local
636 if (amt != 20) { in calcSignature()
637 throw new RuntimeException("unexpected digest write: " + amt + in calcSignature()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDexFile.java618 int amt = md.digest(bytes, 12, 20); in calcSignature() local
619 if (amt != 20) { in calcSignature()
620 throw new RuntimeException("unexpected digest write: " + amt + in calcSignature()