Searched refs:amt (Results 1 - 12 of 12) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DAnnotatedOutput.java58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg); argument
H A DFileUtils.java78 int amt = in.read(result, at, length);
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
H A DTwoColumnOutput.java246 * @param amt {@code >= 0;} the number of spaces to write
248 private static void writeSpaces(Writer out, int amt) throws IOException { argument
249 while (amt > 0) {
251 amt--;
H A DByteArrayAnnotatedOutput.java377 public void annotate(int amt, String msg) { argument
394 annotations.add(new Annotation(startAt, startAt + amt, msg));
/dalvik/dx/src/com/android/dx/util/
H A DAnnotatedOutput.java58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg); argument
H A DFileUtils.java78 int amt = in.read(result, at, length);
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
H A DTwoColumnOutput.java246 * @param amt {@code >= 0;} the number of spaces to write
248 private static void writeSpaces(Writer out, int amt) throws IOException { argument
249 while (amt > 0) {
251 amt--;
H A DByteArrayAnnotatedOutput.java370 public void annotate(int amt, String msg) { argument
387 annotations.add(new Annotation(startAt, startAt + amt, msg));
/dalvik/vm/
H A DRawDexFile.cpp76 ssize_t amt = read(fd, headerStart, sizeof(headerStart)); local
78 if (amt < 0) {
83 if (amt != sizeof(headerStart)) {
84 ALOGE("Unable to read full header (only got %d bytes)", (int) amt);
/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java234 int amt = in.read(buf);
235 if (amt < 0) {
239 baos.write(buf, 0, amt);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDexFile.java618 int amt = md.digest(bytes, 12, 20);
619 if (amt != 20) {
620 throw new RuntimeException("unexpected digest write: " + amt +
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java637 int amt = md.digest(bytes, 12, 20);
638 if (amt != 20) {
639 throw new RuntimeException("unexpected digest write: " + amt +

Completed in 3100 milliseconds