Searched refs:databuf (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java117 ByteBuffer databuf = new ByteBuffer(DATA_BUF_SIZE); field in class:ClassWriter
575 databuf.appendChar(pool.put(attrName));
576 databuf.appendInt(0);
577 return databuf.length;
583 putInt(databuf, index - 4, databuf.length - index);
590 databuf.appendChar(0);
591 return databuf.length;
597 putChar(databuf, index - 2, count);
616 databuf
[all...]
H A DCRTable.java84 /** Compute source positions and write CRT to the databuf.
85 * @param databuf The buffer to write bytecodes to.
87 public int writeCRT(ByteBuffer databuf, Position.LineMap lineMap, Log log) { argument
128 databuf.appendChar(entry.startPc);
130 databuf.appendChar(entry.endPc - 1);
131 databuf.appendInt(startPos);
132 databuf.appendInt(endPos);
133 databuf.appendChar(entry.flags);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DInputRecord.java337 private void hashInternal(byte databuf [], int offset, int len) {
344 hd.encodeBuffer(new ByteArrayInputStream(databuf, offset, len),
348 handshakeHash.update(databuf, offset, len);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java2368 DataOutputStream databuf = new DataOutputStream(buf);
2430 f.asm.write(env, databuf, f.field, tab);
2443 databuf.writeShort(natts);
2447 databuf.writeShort(tab.index("LineNumberTable"));
2448 databuf.writeInt(attbuf.size());
2456 databuf.writeShort(tab.index("CoverageTable"));
2457 databuf.writeInt(attbuf.size());
2464 databuf.writeShort(tab.index("LocalVariableTable"));
2465 databuf.writeInt(attbuf.size());

Completed in 46 milliseconds