Lines Matching defs:write
197 * Write blob data.
201 public void write(int v) throws IOException {
204 pos += blob.write(b, 0, pos, 1);
208 * Write blob data.
212 public void write(byte[] b) throws IOException {
214 pos += blob.write(b, 0, pos, b.length);
219 * Write blob data.
225 public void write(byte[] b, int off, int len) throws IOException {
233 pos += blob.write(b, off, pos, len);
287 * Internal blob write method.
295 native int write(byte[] b, int off, int pos, int len) throws IOException;