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.java80 int amt = in.read(result, at, length); in readFile() local
81 if (amt == -1) { in readFile()
84 at += amt; in readFile()
85 length -= amt; in readFile()
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()
DAnnotatedOutput.java62 public void annotate(int amt, String msg); in annotate() argument
DByteArrayAnnotatedOutput.java377 public void annotate(int amt, String msg) { in annotate() argument
394 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/dalvik/dx/src/com/android/dex/util/
DFileUtils.java74 int amt = in.read(result, at, length); in readFile() local
75 if (amt == -1) { in readFile()
78 at += amt; in readFile()
79 length -= amt; in readFile()
/dalvik/dx/src/com/android/multidex/
DPath.java68 int amt = in.read(readBuffer); in readStream() local
69 if (amt < 0) { in readStream()
73 baos.write(readBuffer, 0, amt); in readStream()
/dalvik/dx/src/com/android/dx/util/
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()
DAnnotatedOutput.java62 public void annotate(int amt, String msg); in annotate() argument
DByteArrayAnnotatedOutput.java391 public void annotate(int amt, String msg) { in annotate() argument
408 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/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()
/dalvik/dx/src/com/android/dx/dex/file/
DDexFile.java776 int amt = md.digest(bytes, 12, 20); in calcSignature() local
777 if (amt != 20) { in calcSignature()
778 throw new RuntimeException("unexpected digest write: " + amt + in calcSignature()