HomeSort by relevance Sort by last modified time
    Searched refs:write (Results 101 - 125 of 12827) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/util/
DerOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
77 public void write(byte tag, byte[] buf) throws IOException { method in class:DerOutputStream
78 write(tag);
80 write(buf, 0, buf.length); method
92 public void write(byte tag, DerOutputStream out) throws IOException { method in class:DerOutputStream
93 write(tag);
95 write(out.buf, 0, out.count); method
117 write(tag);
118 write(value.buf, 1, value.count-1); method
140 write(DerValue.tag_Boolean)
167 write(buf, 0, buf.length); method
275 write(DerValue.tag_OctetString, octets); method
307 write(DerValue.tag_Sequence, bytes); method
324 write(DerValue.tag_Set, bytes); method
393 write(tag, bytes); method
524 write((byte)len); method
527 write((byte)0x081); method
528 write((byte)len); method
531 write((byte)0x082); method
532 write((byte)(len >> 8)); method
533 write((byte)len); method
536 write((byte)0x083); method
537 write((byte)(len >> 16)); method
538 write((byte)(len >> 8)); method
539 write((byte)len); method
542 write((byte)0x084); method
543 write((byte)(len >> 24)); method
544 write((byte)(len >> 16)); method
545 write((byte)(len >> 8)); method
546 write((byte)len); method
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 87 public void write(byte[] b, int off, int len) throws IOException { method in class:IdentityOutputStream
89 throw new IOException("Attempted write to closed stream.");
91 this.out.write(b, off, len);
94 public void write(byte[] b) throws IOException { method in class:IdentityOutputStream
95 write(b, 0, b.length); method
98 public void write(int b) throws IOException { method in class:IdentityOutputStream
100 throw new IOException("Attempted write to closed stream.");
102 this.out.write(b);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
RandomAccessFileOutputStream.java 62 public void write(int b) throws IOException { method in class:RandomAccessFileOutputStream
63 raf.write(b);
67 public void write(byte[] b) throws IOException { method in class:RandomAccessFileOutputStream
68 write(b, 0, b.length); method
72 public void write(byte[] b, int off, int len) throws IOException { method in class:RandomAccessFileOutputStream
73 raf.write(b, off, len);
  /external/clang/utils/CIndex/
completion_logger_server.py 32 f.write("{ ");
33 f.write("\"time\": \"{0}\"".format(datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')))
34 f.write(", \"sender\": \"{0}\" ".format(addr[0]))
35 f.write(", \"data\": ")
36 f.write(data)
37 f.write(" }\n")
  /external/guava/guava-tests/test/com/google/common/io/
TestWriter.java 43 public void write(int c) throws IOException { method in class:TestWriter
44 super.write(c);
45 flush(); // flush write to TestOutputStream to get its behavior
49 public void write(char[] cbuf, int off, int len) throws IOException { method in class:TestWriter
50 super.write(cbuf, off, len);
55 public void write(String str, int off, int len) throws IOException { method in class:TestWriter
56 super.write(str, off, len);
  /external/protobuf/python/google/protobuf/internal/
encoder.py 43 strings and invokes the writer function to write those strings. Typically the
44 writer function is the write() method of a BytesIO.
372 def EncodeVarint(write, value):
376 write(six.int2byte(0x80|bits))
379 return write(six.int2byte(bits))
388 def EncodeSignedVarint(write, value):
394 write(six.int2byte(0x80|bits))
397 return write(six.int2byte(bits))
440 def EncodePackedField(write, value):
441 write(tag_bytes
    [all...]
  /external/selinux/libsepol/tests/policies/test-deps/
module.conf 8 class file {read write};
15 allow system_t file_t : file { read write };
19 allow sysadm_t file_t : file { read write };
  /external/smali/util/src/main/java/org/jf/util/
RandomAccessFileOutputStream.java 48 @Override public void write(int b) throws IOException { method in class:RandomAccessFileOutputStream
51 raf.write(b);
54 @Override public void write(byte[] b) throws IOException { method in class:RandomAccessFileOutputStream
57 raf.write(b);
60 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:RandomAccessFileOutputStream
63 raf.write(b, off, len);
  /libcore/ojluni/src/main/java/java/io/
FilterOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
67 * The <code>write</code> method of <code>FilterOutputStream</code>
68 * calls the <code>write</code> method of its underlying output stream,
69 * that is, it performs <tt>out.write(b)</tt>.
71 * Implements the abstract <tt>write</tt> method of <tt>OutputStream</tt>.
76 public void write(int b) throws IOException { method in class:FilterOutputStream
77 out.write(b);
83 * The <code>write</code> method of <code>FilterOutputStream</code>
84 * calls its <code>write</code> method of three arguments with the
89 * <code>write</code> method of its underlying stream with the singl
96 public void write(byte b[]) throws IOException { method in class:FilterOutputStream
97 write(b, 0, b.length); method
120 public void write(byte b[], int off, int len) throws IOException { method in class:FilterOutputStream
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 39 * @param out the OutputStream to write to
50 * @param b the bytes to write, not null
52 * @see java.io.OutputStream#write(byte[])
54 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
56 super.write(b);
63 * @param b the bytes to write, not null
65 * @param len the maximum number of bytes to write
67 * @see java.io.OutputStream#write(byte[], int, int)
69 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
71 super.write(b, off, len)
82 public void write(int b) throws IOException { method in class:CountingOutputStream
    [all...]
  /external/libxml2/
genUnicode.py 210 header.write(
238 output.write(
284 output.write(',\n')
287 output.write(' {"%s", xmlUCSIs%s}' % (block, name))
288 output.write('};\n\n')
290 output.write('static xmlUnicodeRange xmlUnicodeCats[] = {\n')
294 output.write(',\n')
297 output.write(' {"%s", xmlUCSIsCat%s}' % (name, name))
298 output.write('};\n\n')
323 output.write(pline + " };\n"
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 45 * @param value the value to write; all but the low 8 bits are ignored
52 * @param value the value to write; all but the low 16 bits are ignored
59 * @param value the value to write
66 * @param value the value to write
75 * @param value value to write, treated as an unsigned value
85 * @param value value to write
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); method in interface:Output
100 * @param bytes {@code non-null;} the array to write
102 * byte to write
105 public void write(byte[] bytes, int offset, int length); method in interface:Output
113 public void write(byte[] bytes); method in interface:Output
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Output.java 47 * @param value the value to write; all but the low 8 bits are ignored
55 * @param value the value to write; all but the low 16 bits are ignored
62 * @param value the value to write
69 * @param value the value to write
78 * @param value value to write, treated as an unsigned value
88 * @param value value to write
96 * @param bytes {@code non-null;} the array to write
98 public void write(ByteArray bytes); method in interface:Output
103 * @param bytes {@code non-null;} the array to write
105 * byte to write
108 public void write(byte[] bytes, int offset, int length); method in interface:Output
116 public void write(byte[] bytes); method in interface:Output
    [all...]
  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 54 void write(byte[] b, int off, int len) throws IOException; method in interface:SessionOutputBuffer
56 void write(byte[] b) throws IOException; method in interface:SessionOutputBuffer
58 void write(int b) throws IOException; method in interface:SessionOutputBuffer
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
IntegerRenderer.java 38 writer.write("-0x");
41 writer.write("0x");
47 writer.write("0x");
  /frameworks/base/core/java/android/os/
StatsLogEventWrapper.java 41 * for pushed and pulled data. The write* methods must be called in the same order as their
42 * field number. There is no checking that the correct number of write* methods is called.
43 * We also write an END_LIST character before beginning to write to parcel, but this END_LIST
50 // Write four bytes from tag, starting with least-significant bit.
54 mStorage.write(EVENT_TYPE_LIST); // This is required to start the log entry.
55 mStorage.write(fields + 2); // Indicate number of elements in this list. +1 for the tag
77 mStorage.write(val);
78 mStorage.write(val >>> 8);
79 mStorage.write(val >>> 16)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidStringWriterTest.java 28 a.write(str, 0, 26);
29 a.write('X');
33 a.write("alphabravodelta", 5, 5);
  /packages/apps/Launcher3/
print_db.py 72 out.write("""<span class="intent" title="%s">shortcut</span>""" % (
80 out.write("""<img style="width: 3em; height: 3em;" src="%s">""" % ( icon_fn ))
82 f.write(cell)
87 out.write("Application (%d)" % cell)
89 out.write("Shortcut (%d)" % cell)
91 out.write("Folder (%d)" % cell)
93 out.write("Widget (%d)" % cell)
95 out.write("%d" % cell)
99 out.write(cgi.escape(unicode(cell)))
109 out.write(" <td width=%d height=%d></td>\n"
    [all...]
  /external/nanopb-c/generator/google/protobuf/internal/
encoder.py 43 strings and invokes the writer function to write those strings. Typically the
44 writer function is the write() method of a cStringIO.
344 def EncodeVarint(write, value):
348 write(local_chr(0x80|bits))
351 return write(local_chr(bits))
361 def EncodeSignedVarint(write, value):
367 write(local_chr(0x80|bits))
370 return write(local_chr(bits))
413 def EncodePackedField(write, value):
414 write(tag_bytes
    [all...]
  /bionic/libc/bionic/
eventfd_write.cpp 33 return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1;
  /external/autotest/client/bin/result_tools/
unittest_lib.py 15 f.write('A' * size
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/term/
__init__.py 28 from _setup.term._term import terminfo, write, green, red, yellow, announce
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/term/
__init__.py 28 from _setup.term._term import terminfo, write, green, red, yellow, announce
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
getpass.cc 25 write(1, buf, res);
26 write(master, "password\n", 9);
27 while ((res = read(master, buf, sizeof(buf))) > 0) write(1, buf, res);
31 write(1, "done\n", 5);
  /external/libunwind/src/coredump/
_UPT_access_fpreg.c 29 int write, void *arg)

Completed in 540 milliseconds

1 2 3 45 6 7 8 91011>>