Searched refs:amt (Results 1 – 11 of 11) sorted by relevance
/dalvik/dexgen/src/com/android/dexgen/util/ |
D | FileUtils.java | 78 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()
|
D | AnnotatedOutput.java | 62 public void annotate(int amt, String msg); in annotate() argument
|
D | TwoColumnOutput.java | 248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument 249 while (amt > 0) { in writeSpaces() 251 amt--; in writeSpaces()
|
D | ByteArrayAnnotatedOutput.java | 377 public void annotate(int amt, String msg) { in annotate() argument 394 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
|
/dalvik/vm/ |
D | RawDexFile.cpp | 76 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/ |
D | AnnotatedOutput.java | 62 public void annotate(int amt, String msg); in annotate() argument
|
D | TwoColumnOutput.java | 248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument 249 while (amt > 0) { in writeSpaces() 251 amt--; in writeSpaces()
|
D | ByteArrayAnnotatedOutput.java | 373 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/ |
D | ClassPathOpener.java | 273 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/ |
D | DexFile.java | 635 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/ |
D | DexFile.java | 618 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()
|