Searched defs:write (Results 26 - 50 of 586) sorted by relevance

1234567891011>>

/external/libunwind/src/ptrace/
H A D_UPT_access_mem.c32 int write, void *arg)
41 if (write)
86 int write, void *arg)
97 iod.piod_op = write ? PIOD_WRITE_D : PIOD_READ_D;
98 if (write)
102 if (!write)
31 _UPT_access_mem(unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, void *arg) argument
85 _UPT_access_mem(unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, void *arg) argument
/external/libunwind/src/x86/
H A DGregs.c40 int write)
50 if (write)
57 if (write)
66 if (write)
115 if (write)
123 int write)
174 if (write)
39 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) argument
122 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) argument
/external/libunwind/src/x86_64/
H A DGregs.c66 int write)
76 if (write)
83 if (write)
92 if (write)
127 if (write)
135 int write)
65 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) argument
134 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) argument
/external/llvm/include/llvm/Support/
H A DEndianStream.h25 /// Adapter to write values to a stream in a particular byte order.
29 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
31 OS.write((const char *)&Val, sizeof(value_type));
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeWriterVariable.java23 public static void write(long v, ByteBuffer bb, int bytes) { method in class:IsoTypeWriterVariable
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DPackageWriter.java26 public void write(Movie qualities) throws IOException; method in interface:PackageWriter
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DBitstreamElement.java28 public abstract void write(OutputStream out) throws IOException; method in class:BitstreamElement
/external/okhttp/okio/src/main/java/okio/
H A DSink.java22 * Receives a stream of bytes. Use this interface to write data wherever it's
43 * java.io.OutputStream#write(int) single-byte write} method that is awkward to
52 void write(OkBuffer source, long byteCount) throws IOException; method in interface:Sink
65 * resources held by this sink. It is an error to write a closed sink. It is
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs75 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs73 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java100 * @param buf the non-null array containing characters to write.
102 * @param count maximum number of characters to write
107 public void write(char[] buf, int offset, int count) { method in class:Support_StringWriter
124 * @param oneChar The character to write
127 public void write(int oneChar) { method in class:Support_StringWriter
137 * @param str the non-null String containing the characters to write.
140 public void write(String str) { method in class:Support_StringWriter
151 * @param str the non-null String containing the characters to write.
153 * @param count the number of characters to retrieve and write.
158 public void write(Strin method in class:Support_StringWriter
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageWriter.java76 public void write( method in class:AbstractMessageWriter
H A DContentLengthOutputStream.java62 * write operations will be ignored.
77 * the stream. Subsequent write operations will be ignored.
109 public void write(byte[] b, int off, int len) throws IOException { method in class:ContentLengthOutputStream
111 throw new IOException("Attempted write to closed stream.");
118 this.out.write(b, off, len);
123 public void write(byte[] b) throws IOException { method in class:ContentLengthOutputStream
124 write(b, 0, b.length);
127 public void write(int b) throws IOException { method in class:ContentLengthOutputStream
129 throw new IOException("Attempted write to closed stream.");
132 this.out.write(
[all...]
H A DIdentityOutputStream.java87 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);
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/apache-http/src/org/apache/http/io/
H A DSessionOutputBuffer.java54 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/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java33 * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException; method in interface:WriterChain
56 public void write(char[] chars) throws IOException; method in interface:WriterChain
58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
60 public void write(String chars) throws IOException; method in interface:WriterChain
62 public void write(Strin method in interface:WriterChain
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java40 public void write(OutputStream zOut) method in class:CMSProcessableByteArray
43 zOut.write(bytes);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDigestCalculatorProvider.java55 public void write(byte[] bytes, int off, int len) method in class:BcDigestCalculatorProvider.DigestOutputStream
61 public void write(byte[] bytes) method in class:BcDigestCalculatorProvider.DigestOutputStream
67 public void write(int b) method in class:BcDigestCalculatorProvider.DigestOutputStream
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestOutputStream.java19 public void write(int b) method in class:DigestOutputStream
25 public void write( method in class:DigestOutputStream
H A DMacOutputStream.java19 public void write(int b) method in class:MacOutputStream
25 public void write( method in class:MacOutputStream
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeOutputStream.java18 public void write(byte[] buf) method in class:TeeOutputStream
21 this.output1.write(buf);
22 this.output2.write(buf);
25 public void write(byte[] buf, int off, int len) method in class:TeeOutputStream
28 this.output1.write(buf, off, len);
29 this.output2.write(buf, off, len);
32 public void write(int b) method in class:TeeOutputStream
35 this.output1.write(b);
36 this.output2.write(b);
/external/chromium_org/build/android/
H A Dsymbolize.py34 def write(self, data): member in class:Symbolizer
38 self._output.write(data)
62 self._output.write(data[:post])
69 self._output.write(data[:pre])
70 self._output.write(frame)
71 self._output.write(' ')
72 self._output.write(sym)
83 symbolizer.write(line)
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DReverbInputBuffer.cpp43 void ReverbInputBuffer::write(const float* sourceP, size_t numberOfFrames) function in class:blink::ReverbInputBuffer
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dwebkit-patch47 # to write(), so when passed a raw string already encoded as utf8,
53 def write(self, object): member in class:ForgivingUTF8Writer
58 # write non-Unicode/UTF-8 data (which we shouldn't).
60 return codecs.StreamWriter.write(self, object)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dlogtesting.py60 # constructor should support write() and flush():
63 def write(self, message): member in class:TestLogStream

Completed in 538 milliseconds

1234567891011>>