/frameworks/av/media/mtp/ |
H A D | MtpResponsePacket.cpp | 39 int MtpResponsePacket::write(IMtpHandle *h) { function in class:android::MtpResponsePacket 42 int ret = h->write(mBuffer, mPacketSize);
|
H A D | MtpDevHandle.cpp | 47 int MtpDevHandle::write(const void *data, size_t len) { function in class:android::MtpDevHandle 48 return ::write(mFd, data, len);
|
H A D | MtpEventPacket.cpp | 39 int MtpEventPacket::write(IMtpHandle *h) { function in class:android::MtpEventPacket
|
H A D | MtpRequestPacket.cpp | 63 // write our buffer to the given endpoint (host mode) 64 int MtpRequestPacket::write(struct usb_request *request) function in class:android::MtpRequestPacket
|
/frameworks/native/include/binder/ |
H A D | 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/binder/include/binder/ |
H A D | 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/ |
H A D | 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);
|
/frameworks/av/media/img_utils/src/ |
H A D | ByteArrayOutput.cpp | 32 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 D | FileOutput.cpp | 47 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 D | EndianUtils.cpp | 48 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/libeffects/dynamicsproc/dsp/ |
H A D | SHCircularBuffer.h | 39 inline void write(T value) { function in class:SHCircularBuffer 47 ALOGE("Error: SHCircularBuffer no space to write. allocated size %zu ", getSize());
|
/frameworks/av/media/libnbaio/ |
H A D | LibsndfileSink.cpp | 37 ssize_t LibsndfileSink::write(const void *buffer, size_t count) function in class:android::LibsndfileSink
|
H A D | 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/base/core/java/android/bluetooth/ |
H A D | BluetoothOutputStream.java | 51 public void write(int oneByte) throws IOException { method in class:BluetoothOutputStream 54 mSocket.write(b, 0, 1); 63 * @param count the number of bytes from {@code buffer} to write to this stream. 69 public void write(byte[] b, int offset, int count) throws IOException { method in class:BluetoothOutputStream 76 mSocket.write(b, offset, count);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/net/ |
H A D | IpConfigStoreTest.java | 130 public void write(String filePath, Writer w) { method in class:IpConfigStoreTest.MockedDelayedDiskWrite
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
H A D | EthernetConfigStore.java | 58 public void write(String iface, IpConfiguration config) { method in class:EthernetConfigStore
|
/frameworks/support/compat/src/main/java/androidx/core/util/ |
H A D | LogWriter.java | 55 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
|
/frameworks/av/services/audioflinger/ |
H A D | SpdifStreamOut.cpp | 118 return AudioStreamOut::write(buffer, bytes); 121 ssize_t SpdifStreamOut::write(const void* buffer, size_t numBytes) function in class:android::SpdifStreamOut 124 return mSpdifEncoder.write(buffer, numBytes);
|
/frameworks/base/core/java/android/util/ |
H A D | Base64OutputStream.java | 40 * @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 D | LogWriter.java | 64 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
|
/frameworks/base/core/java/com/android/internal/util/ |
H A D | BitwiseOutputStream.java | 20 * 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 D | DrmOutputStream.java | 76 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 D | SoundPoolThread.cpp | 25 void SoundPoolThread::write(SoundPoolMsg msg) { function in class:android::SoundPoolThread 102 write(SoundPoolMsg(SoundPoolMsg::LOAD_SAMPLE, sampleID));
|
/frameworks/base/obex/javax/obex/ |
H A D | PrivateOutputStream.java | 55 * 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 D | MtpFileWriter.java | 52 int write(long offset, int size, byte[] bytes) throws IOException, ErrnoException { method in class:MtpFileWriter 61 return Os.write(mCacheFd.getFileDescriptor(), bytes, 0, size);
|