HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 26 - 50 of 1673) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeIdItem.java 31 public void write(DexRandomAccessFile file) throws IOException { method in class:TypeIdItem
TypeItem.java 30 public void write(DexRandomAccessFile file) throws IOException { method in class:TypeItem
  /external/apache-commons-compress/src/stub/java/com/github/luben/zstd/
ZstdOutputStream.java 43 public void write(int b) throws IOException { method in class:ZstdOutputStream
  /external/apache-commons-compress/src/stub/java/org/tukaani/xz/
LZMAOutputStream.java 37 public void write(int b) throws IOException { method in class:LZMAOutputStream
  /external/apache-http/src/org/apache/http/io/
HttpMessageWriter.java 55 void write(HttpMessage message) method in interface:HttpMessageWriter
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSProcessable.java 17 public void write(OutputStream out) method in interface:CMSProcessable
PKCS7ProcessableObject.java 31 public void write(OutputStream cOut) method in class:PKCS7ProcessableObject
42 cOut.write(enc.toASN1Primitive().getEncoded(ASN1Encoding.DER));
57 cOut.write(encoded, index, encoded.length - index);
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
InstantTypeAdapter.java 32 @Override public void write(JsonWriter out, Instant value) throws IOException { method in class:InstantTypeAdapter
  /external/conscrypt/common/src/jni/main/include/conscrypt/
bio_output_stream.h 30 int write(const char* buf, int len) { function in class:conscrypt::BioOutputStream
33 JNI_TRACE("BioOutputStream::write => could not get JNIEnv");
38 JNI_TRACE("BioOutputStream::write => called with pending exception");
44 JNI_TRACE("BioOutputStream::write => failed call to NewByteArray");
52 JNI_TRACE("BioOutputStream::write => failed call to OutputStream#write");
  /external/fonttools/Tests/afmLib/
afmLib_test.py 25 newAfm, afmData = self.write(afm)
40 def write(afm, sep='\r'): member in class:AFMTest
43 afm.write(temp, sep)
  /external/libchrome/third_party/jinja2/
meta.py 25 def write(self, x): member in class:TrackingCodeGenerator
26 """Don't write."""
  /external/llvm/include/llvm/Support/
EndianStream.h 26 /// Adapter to write values to a stream in a particular byte order.
30 template <typename value_type> void write(ArrayRef<value_type> Vals) { function in struct:llvm::support::endian::Writer
32 write(V);
34 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) { function in class:llvm::support::endian::Writer
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { function in class:llvm::support::endian::Writer
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) function in class:llvm::support::endian::Writer
60 inline void Writer<big>::write<double>(double Val) { function in class:llvm::support::endian::Writer
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
PackageWriter.java 26 public void write(Movie qualities) throws IOException; method in interface:PackageWriter
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
BitstreamElement.java 28 public abstract void write(OutputStream out) throws IOException; method in class:BitstreamElement
  /external/okhttp/okio/okio/src/main/java/okio/
Sink.java 23 * Receives a stream of bytes. Use this interface to write data wherever it's
44 * java.io.OutputStream#write(int) single-byte write} method that is awkward to
53 void write(Buffer source, long byteCount) throws IOException; method in interface:Sink
63 * resources held by this sink. It is an error to write a closed sink. It is
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteOutput.java 40 * <p/><b>Traditional write operations:</b>
42 * copying the data or completing the write before returning from the method call.
44 * <p/><b>Lazy write operations:</b> where the caller guarantees that it will never modify the
46 * maintain a reference to the buffer beyond the scope of the method call (e.g. until the write
57 public abstract void write(byte value) throws IOException; method in class:ByteOutput
69 * @param length the number of bytes to write starting from {@code offset}
72 public abstract void write(byte[] value, int offset, int length) throws IOException; method in class:ByteOutput
76 * beyond the scope of this method call (e.g. write later) since it is considered immutable and is
84 * @param length the number of bytes to write starting from {@code offset}
101 public abstract void write(ByteBuffer value) throws IOException method in class:ByteOutput
    [all...]
  /external/skia/infra/bots/
test_utils.py 18 """Write files into a given directory."""
30 def write(self, fname, mode=0640): member in class:FileWriter
31 """Write the file with the given mode and random contents."""
34 f.write(str(uuid.uuid4()))
  /external/skqp/infra/bots/
test_utils.py 18 """Write files into a given directory."""
30 def write(self, fname, mode=0640): member in class:FileWriter
31 """Write the file with the given mode and random contents."""
34 f.write(str(uuid.uuid4()))
  /external/u-boot/include/
i2c_eeprom.h 11 int (*write)(struct udevice *dev, int offset, const uint8_t *buf, member in struct:i2c_eeprom_ops
35 * i2c_eeprom_write() - write bytes to an I2C EEPROM chip
37 * @dev: Chip to write to
39 * @buf: Buffer containing data to write
40 * @size: Number of bytes to write
misc.h 20 * Write buffer to the device, optional.
23 * @offset: offset to write the device
25 * @size: data size in bytes to write the device
78 * Write buffer to the device, optional.
81 * @offset: offset to write the device
83 * @size: data size in bytes to write the device
86 int (*write)(struct udevice *dev, int offset, const void *buf, member in struct:misc_ops
  /frameworks/av/media/libnbaio/
LibsndfileSink.cpp 37 ssize_t LibsndfileSink::write(const void *buffer, size_t count) function in class:android::LibsndfileSink
Pipe.cpp 48 ssize_t Pipe::write(const void *buffer, size_t count) function in class:android::Pipe
54 ssize_t actual = mFifoWriter.write(buffer, count);
  /build/make/tools/signapk/src/com/android/signapk/
CountingOutputStream.java 39 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
40 mBase.write(b);
45 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
46 mBase.write(b, off, len);
51 public void write(int b) throws IOException { method in class:CountingOutputStream
52 mBase.write(b);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
CountingOutputStream.java 38 public void write(final int b) throws IOException { method in class:CountingOutputStream
39 out.write(b);
43 public void write(final byte[] b) throws IOException { method in class:CountingOutputStream
44 write(b, 0, b.length); method
47 public void write(final byte[] b, final int off, final int len) throws IOException { method in class:CountingOutputStream
48 out.write(b, off, len);
  /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);

Completed in 855 milliseconds

12 3 4 5 6 7 8 91011>>