Lines Matching defs:output

64     private final ByteArrayAnnotatedOutput output;
79 * if non-null: the output to write annotations to. No normal
80 * output is written to this.
84 /** if non-null: another possible output for annotations */
90 /** true if output should be consumed during annotation */
119 output = new ByteArrayAnnotatedOutput();
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
174 * @param debugPrint {@code null-ok;} if specified, an alternate output for
177 * @param consume whether to claim to have consumed output for
179 * @return {@code non-null;} encoded output
200 output.writeByte(DBG_SET_PROLOGUE_END);
265 return output.toByteArray();
372 int mark = output.getCursor();
379 output.writeUnsignedLeb128(line);
382 annotate(output.getCursor() - mark, "line_start: " + line);
405 mark = output.getCursor();
406 output.writeUnsignedLeb128(szParamTypes);
409 annotate(output.getCursor() - mark,
421 mark = output.getCursor();
455 annotate(output.getCursor() - mark,
614 int mark = output.getCursor();
616 output.writeByte(DBG_RESTART_LOCAL);
620 annotate(output.getCursor() - mark,
641 output.writeUnsignedLeb128(0);
643 output.writeUnsignedLeb128(
662 output.writeUnsignedLeb128(0);
664 output.writeUnsignedLeb128(
690 int mark = output.getCursor();
692 output.writeByte(DBG_START_LOCAL);
699 annotate(output.getCursor() - mark,
719 int mark = output.getCursor();
721 output.writeByte(DBG_START_LOCAL_EXTENDED);
729 annotate(output.getCursor() - mark,
748 int mark = output.getCursor();
750 output.writeByte(DBG_END_LOCAL);
751 output.writeUnsignedLeb128(entry.getRegister());
754 annotate(output.getCursor() - mark,
809 output.writeByte(opcode);
851 int mark = output.getCursor();
853 output.writeByte(DBG_ADVANCE_LINE);
854 output.writeSignedLeb128(deltaLines);
858 annotate(output.getCursor() - mark,
875 int mark = output.getCursor();
877 output.writeByte(DBG_ADVANCE_PC);
878 output.writeUnsignedLeb128(deltaAddress);
882 annotate(output.getCursor() - mark,
906 output.writeUnsignedLeb128(n);
914 output.writeByte(DBG_END_SEQUENCE);