HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 26 - 50 of 4398) 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-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
  /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/libmojo/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/syslinux/gpxe/src/include/gpxe/
bitbash.h 21 * @v data Value to write
29 void ( * write ) ( struct bit_basher *basher, unsigned int bit_id, member in struct:bit_basher_operations
  /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);
  /frameworks/native/libs/binder/include/binder/
SafeInterface.h 46 status_t write(Parcel* parcel, bool b) const { function in namespace:android::SafeInterface
58 typename std::enable_if<std::is_enum<E>::value, status_t>::type write(Parcel* parcel, function in namespace:android
60 return write(parcel, static_cast<typename std::underlying_type<E>::type>(e));
68 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write( function
70 return callParcel("write(Flattenable)", [&]() { return parcel->write(t); });
79 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write(
81 return callParcel("write(sp<Flattenable>)", [&]() { return parcel->write(*(t.get())); });
89 typename std::enable_if<std::is_base_of<LightFlattenable<T>, T>::value, status_t>::type write(
    [all...]
  /frameworks/native/libs/gui/
LayerState.cpp 25 status_t layer_state_t::write(Parcel& output) const function in class:android::layer_state_t
40 output.write(crop);
41 output.write(finalCrop);
52 output.write(transparentRegion);
92 status_t ComposerState::write(Parcel& output) const { function in class:android::ComposerState
94 return state.write(output);
113 status_t DisplayState::write(Parcel& output) const { function in class:android::DisplayState
119 output.write(viewport);
120 output.write(frame);
  /libcore/ojluni/src/main/java/java/io/
ObjectOutput.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
41 * Write an object to the underlying storage or stream. The
57 public void write(int b) throws IOException; method in interface:ObjectOutput
65 public void write(byte b[]) throws IOException; method in interface:ObjectOutput
74 public void write(byte b[], int off, int len) throws IOException; method in interface:ObjectOutput
77 * Flushes the stream. This will write any buffered
  /libcore/ojluni/src/main/java/java/nio/channels/
AsynchronousByteChannel.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * An asynchronous channel that can read and write bytes.
34 * <p> Some channels may not allow more than one read or write to be outstanding
37 * Similarly, if a write method is invoked before a previous write has completed
43 * multiple concurrent threads. When a read or write operation is initiated then
141 * <p> This method initiates an asynchronous write operation to write a
143 * handler} parameter is a completion handler that is invoked when the write
147 * <p> The write operation may write up to <i>r</i> bytes to the channel
187 <A> void write(ByteBuffer src, method in interface:AsynchronousByteChannel
212 Future<Integer> write(ByteBuffer src); method in interface:AsynchronousByteChannel
    [all...]
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Writer.java 20 * Used to write strings to an arbitrary output source.
24 * Used to write messages to another stream or object.
26 public void write(String message); method in interface:Writer
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/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...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/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...]

Completed in 757 milliseconds

12 3 4 5 6 7 8 91011>>