Searched defs:write (Results 1 - 25 of 97) sorted by relevance

1234

/frameworks/native/libs/gui/
H A DLayerState.cpp25 status_t layer_state_t::write(Parcel& output) const function in class:android::layer_state_t
40 output.write(crop);
41 output.write(finalCrop);
45 output.write(transparentRegion);
77 status_t ComposerState::write(Parcel& output) const { function in class:android::ComposerState
79 return state.write(output);
98 status_t DisplayState::write(Parcel& output) const { function in class:android::DisplayState
104 output.write(viewport);
105 output.write(frame);
/frameworks/av/media/mtp/
H A DMtpResponsePacket.cpp38 int MtpResponsePacket::write(int fd) { function in class:android::MtpResponsePacket
41 int ret = ::write(fd, mBuffer, mPacketSize);
H A DMtpEventPacket.cpp43 int MtpEventPacket::write(int fd) { function in class:android::MtpEventPacket
H A DMtpRequestPacket.cpp62 // write our buffer to the given endpoint (host mode)
63 int MtpRequestPacket::write(struct usb_request *request) function in class:android::MtpRequestPacket
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurable.java26 public void write(DataOutputStream out) throws IOException; method in interface:Durable
/frameworks/av/media/img_utils/src/
H A DByteArrayOutput.cpp32 status_t ByteArrayOutput::write(const uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::ByteArrayOutput
34 ALOGE("%s: Failed to write to ByteArrayOutput.", __FUNCTION__);
H A DFileOutput.cpp47 status_t FileOutput::write(const uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::FileOutput
49 ALOGE("%s: Could not write file %s, file not open.", __FUNCTION__, mPath.string());
H A DEndianUtils.cpp48 status_t EndianOutput::write(const uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
50 if((res = mOutput->write(buf, offset, count)) == OK) {
56 status_t EndianOutput::write(const int8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
57 return write(reinterpret_cast<const uint8_t*>(buf), offset, count);
61 status_t EndianOutput::write(const _type_* buf, size_t offset, size_t count) { \
72 status_t EndianOutput::write(const float* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
77 status_t EndianOutput::write(const double* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
/frameworks/av/media/libnbaio/
H A DLibsndfileSink.cpp37 ssize_t LibsndfileSink::write(const void *buffer, size_t count) function in class:android::LibsndfileSink
H A DPipe.cpp46 ssize_t Pipe::write(const void *buffer, size_t count) function in class:android::Pipe
52 // write() is not multi-thread safe w.r.t. itself, so no mutex or atomic op needed to read mRear
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothOutputStream.java53 public void write(int oneByte) throws IOException { method in class:BluetoothOutputStream
56 mSocket.write(b, 0, 1);
68 * the number of bytes from {@code buffer} to write to this
78 public void write(byte[] b, int offset, int count) throws IOException { method in class:BluetoothOutputStream
85 mSocket.write(b, offset, count);
/frameworks/compile/libbcc/lib/Support/
H A DOutputFile.cpp30 ssize_t OutputFile::write(const void *pBuf, size_t count) { function in class:OutputFile
37 ALOGW("OutputFile::write: count = %zu, buffer = %p", count, pBuf);
42 ssize_t write_size = ::write(mFD, pBuf, count);
47 // If the errno is EAGAIN or EINTR, then we try to write again.
/frameworks/support/buildSrc/src/main/groovy/android/support/doclava/
H A DDoclavaJavadocOptionFileOption.java48 public void write(JavadocOptionFileWriterContext writerContext) throws IOException { method in class:DoclavaJavadocOptionFileOption
57 writerContext.write(" ");
H A DDoclavaMultilineJavadocOptionFileOption.java62 public void write(JavadocOptionFileWriterContext writerContext) throws IOException { method in class:DoclavaMultilineJavadocOptionFileOption
73 writerContext.write(" ");
/frameworks/support/compat/java/android/support/v4/util/
H A DLogWriter.java55 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp119 return AudioStreamOut::write(buffer, bytes);
122 ssize_t SpdifStreamOut::write(const void* buffer, size_t numBytes) function in class:android::SpdifStreamOut
125 return mSpdifEncoder.write(buffer, numBytes);
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
53 * @param out the OutputStream to write the encoded data to
70 public void write(int b) throws IOException { method in class:Base64OutputStream
72 // bytes, we buffer up calls to write(int) in an internal
80 // internal buffer full; write it out.
88 * Flush any buffered data from calls to write(int). Needed
89 * before doing a write(byte[], int, int) or a close().
98 public void write(byte[] b, int off, int len) throws IOException { method in class:Base64OutputStream
141 out.write(coder.output, 0, coder.op);
H A DLogWriter.java64 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
/frameworks/base/core/java/com/android/internal/util/
H A DBitwiseOutputStream.java20 * An object that provides bitwise incremental write access to a byte array.
89 * @param bits the amount of data to write (gte 0, lte 8)
90 * @param data to write, will be masked to expose only bits param from lsb
92 public void write(int bits, int data) throws AccessException { method in class:BitwiseOutputStream
94 throw new AccessException("illegal write (" + bits + " bits)");
109 * @param bits the amount of data to write
116 write(increment, (byte)(arr[i] >>> (8 - increment)));
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java76 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
93 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:DrmOutputStream
106 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
113 public void write(int oneByte) throws IOException { method in class:DrmOutputStream
/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.cpp25 void SoundPoolThread::write(SoundPoolMsg msg) { function in class:android::SoundPoolThread
102 write(SoundPoolMsg(SoundPoolMsg::LOAD_SAMPLE, sampleID));
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java55 * Creates an empty <code>PrivateOutputStream</code> to write to.
75 * write is that one byte is written to the output stream. The byte to be
78 * @param b the byte to write
82 public synchronized void write(int b) throws IOException { method in class:PrivateOutputStream
85 mArray.write(b);
92 public void write(byte[] buffer) throws IOException { method in class:PrivateOutputStream
93 write(buffer, 0, buffer.length);
97 public synchronized void write(byte[] buffer, int offset, int count) throws IOException { method in class:PrivateOutputStream
112 mArray.write(buffer, offset1, bufferLeft);
118 mArray.write(buffe
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpFileWriter.java52 int write(long offset, int size, byte[] bytes) throws IOException, ErrnoException { method in class:MtpFileWriter
61 return Os.write(mCacheFd.getFileDescriptor(), bytes, 0, size);
/frameworks/base/services/core/java/com/android/server/net/
H A DDelayedDiskWrite.java40 public void write(final String filePath, final Writer w) { method in class:DelayedDiskWrite
41 write(filePath, w, true);
44 public void write(final String filePath, final Writer w, final boolean open) { method in class:DelayedDiskWrite
49 /* Do a delayed write to disk on a separate handler thread */
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsXml.java78 public static void write(AtomicFile file, IntervalStats stats) throws IOException { method in class:UsageStatsXml
81 write(fos, stats);
85 // When fos is null (successful write), this will no-op
116 static void write(OutputStream out, IntervalStats stats) throws IOException { method in class:UsageStatsXml
124 UsageStatsXmlV1.write(xml, stats);

Completed in 1268 milliseconds

1234