HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 201 - 225 of 4398) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 37 public void write(int oneByte) throws IOException { method in class:InterruptableOutputStream
39 mOutputStream.write(oneByte);
43 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:InterruptableOutputStream
48 mOutputStream.write(buffer, offset, bytesCount);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
FileWriterWithEncoding.java 60 * @param filename the name of the file to write to, not null
72 * @param filename the name of the file to write to, not null
85 * @param filename the name of the file to write to, not null
97 * @param filename the name of the file to write to, not null
110 * @param filename the name of the file to write to, not null
122 * @param filename the name of the file to write to, not null
135 * @param file the file to write to, not null
147 * @param file the file to write to, not null
161 * @param file the file to write to, not null
173 * @param file the file to write to, not nul
265 public void write(int idx) throws IOException { method in class:FileWriterWithEncoding
274 public void write(char[] chr) throws IOException { method in class:FileWriterWithEncoding
285 public void write(char[] chr, int st, int end) throws IOException { method in class:FileWriterWithEncoding
294 public void write(String str) throws IOException { method in class:FileWriterWithEncoding
305 public void write(String str, int st, int end) throws IOException { method in class:FileWriterWithEncoding
    [all...]
  /art/tools/ahat/src/test/com/android/ahat/
TestHandler.java 28 public void write(int b) throws IOException { method in class:TestHandler.NullOutputStream
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedAnnotation.java 39 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedAnnotation
44 annotationElement.write(file);
EncodedCatchHandler.java 42 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandler
46 encodedTypeAddrPair.write(file);
RawDexObject.java 22 * Base class for any data structure that we may read or write from a DEX file.
33 * Write information for this DEX data to the file.
37 public void write(DexRandomAccessFile file) throws IOException; method in interface:RawDexObject
TypeList.java 37 public void write(DexRandomAccessFile file) throws IOException { method in class:TypeList
42 typeItem.write(file);
  /bionic/libc/include/bits/fortify/
unistd.h 163 ssize_t write(int fd, const void* const __pass_object_size0 buf, size_t count)
165 __error_if_overflows_ssizet(count, write)
166 __error_if_overflows_objectsize(count, __bos0(buf), write) {
170 return __call_bypassing_fortify(write)(fd, buf, count);
214 ssize_t __write_real(int, const void*, size_t) __RENAME(write); variable
229 __errordecl(__write_dest_size_error, "write called with size bigger than destination");
230 __errordecl(__write_count_toobig_error, "write called with count > SSIZE_MAX");
380 ssize_t write(int fd, const void* buf, size_t count) { function
  /build/make/tools/
post_process_props.py 69 sys.stderr.write("error: %s cannot exceed %d bytes: " %
71 sys.stderr.write("%s (%d)\n" % (value, len(value)))
108 def write(self, f): member in class:PropFile
109 f.write("\n".join(self.lines))
110 f.write("\n")
129 sys.stderr.write("bad command line: " + str(argv) + "\n")
140 properties.write(f)
  /build/soong/bpfix/cmd/
bpfix.go 39 write = flag.Bool("w", false, "write result to (source) file instead of stdout")
94 if *write {
106 out.Write(data)
109 if !*list && !*write && !*doDiff {
110 _, err = out.Write(res)
137 if *write {
178 f1.Write(b1)
179 f2.Write(b2)
38 write = flag.Bool("w", false, "write result to (source) file instead of stdout") var
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteGiftTest.java 58 for (File write : writeList) {
59 write.getParentFile().mkdirs();
60 write.createNewFile();
61 assertFileReadWriteAccess(write);
63 writeInt(write, 102);
64 assertEquals(102, readInt(write));
  /cts/tests/tests/os/src/android/os/cts/
SharedMemoryService.java 58 public void write(int index, byte value) throws RemoteException { method in class:SharedMemoryService.SharedMemoryServiceImpl
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10x.java 76 write(out, opcodeUnit(insn, 0)); method
Form11x.java 80 write(out, opcodeUnit(insn, regs.get(0).getReg())); method
Form22x.java 82 write(out, method
Form23x.java 84 write(out, method
Form32x.java 82 write(out, method
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 91 public void write(int c) throws IOException { method in class:IndentingWriter
106 out.write('\n');
116 out.write(prefix);
121 out.write(' ');
127 out.write(c);
139 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
142 write(cbuf[off]);
151 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
154 write(str.charAt(off));
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/dex/code/form/
Form10x.java 70 write(out, opcodeUnit(insn, 0)); method
Form30t.java 80 write(out, opcodeUnit(insn, 0), offset); method
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeOutput.java 24 /** array to write to */
58 public void write(short codeUnit) { method in class:ShortArrayCodeOutput
65 public void write(short u0, short u1) { method in class:ShortArrayCodeOutput
66 write(u0);
67 write(u1);
72 public void write(short u0, short u1, short u2) { method in class:ShortArrayCodeOutput
73 write(u0);
74 write(u1);
75 write(u2);
80 public void write(short u0, short u1, short u2, short u3) method in class:ShortArrayCodeOutput
89 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput
100 write((short) value); method
101 write((short) (value >> 16)); method
107 write((short) value); method
108 write((short) (value >> 16)); method
109 write((short) (value >> 32)); method
110 write((short) (value >> 48)); method
115 public void write(byte[] data) { method in class:ShortArrayCodeOutput
124 write((short) value); method
130 write((short) value); method
136 public void write(short[] data) { method in class:ShortArrayCodeOutput
144 public void write(int[] data) { method in class:ShortArrayCodeOutput
152 public void write(long[] data) { method in class:ShortArrayCodeOutput
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 91 public void write(int c) throws IOException { method in class:IndentingWriter
106 out.write('\n');
116 out.write(prefix);
121 out.write(' ');
127 out.write(c);
139 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
142 write(cbuf[off]);
151 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
154 write(str.charAt(off));
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...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
QuotedPrintable.java 58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);

Completed in 560 milliseconds

1 2 3 4 5 6 7 891011>>