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

/system/core/fastbootd/
H A Dtransport.h32 ssize_t (*write)(struct transport_handle *thandle, const void *data, size_t len); member in struct:transport
/system/media/audio_utils/include/audio_utils/
H A Decho_reference.h25 /* Buffer descriptor used by read() and write() methods, including the time stamp and delay. */
51 int (*write)(struct echo_reference_itfe *echo_reference, struct echo_reference_buffer *buffer); member in struct:echo_reference_itfe
/system/core/libion/kernel-headers/linux/
H A Dion_test.h29 int write; member in struct:ion_test_rw_data
/system/core/libion/original-kernel-headers/linux/
H A Dion_test.h27 * @size: size to read or write
28 * @write: 1 to write, 0 to read
34 int write; member in struct:ion_test_rw_data
50 * DOC: ION_IOC_TEST_DMA_MAPPING - read or write memory from a handle as DMA
60 * DOC: ION_IOC_TEST_KERNEL_MAPPING - read or write memory from a handle
/system/core/include/utils/
H A DFlattenable.h60 // write a POD structure
62 static void write(void*& buffer, size_t& size, const T& value) { function in class:android::FlattenableUtils
/system/keymaster/
H A Dserializable.cpp98 bool Buffer::write(const uint8_t* src, size_t write_length) { function in class:keymaster::Buffer
/system/extras/verity/
H A DUtils.java264 static void write(byte[] data, String fname) throws Exception{ method in class:Utils
266 out.write(data);
/system/media/audio_utils/spdif/
H A DSPDIFEncoder.cpp123 // We don't have to write zeros because buffer already set to zero
180 ssize_t SPDIFEncoder::write( const void *buffer, size_t numBytes ) function in class:android::SPDIFEncoder
184 ALOGV("SPDIFEncoder: state = %d, write(buffer[0] = 0x%02X, numBytes = %u)",
210 // Only write as many as we need to finish the frame.
/system/core/adb/
H A Dtransport_local.c96 D("write remote packet: %04x arg0=%0x arg1=%0x data_length=%0x data_check=%0x magic=%0x\n",
100 D("remote local: write terminated\n");
194 * Redefine open and write for qemu_pipe.h that contains inlined references
198 #undef write macro
200 #define write adb_write macro
203 #undef write macro
205 #define write ___xxx_write macro
H A Dusb_linux_client.c45 int (*write)(usb_handle *h, const void *data, int len); member in struct:usb_handle
190 D("about to write (fd=%d, len=%d)\n", h->fd, len);
236 h->write = usb_adb_write;
277 D("[ %s: write descriptors failed: errno=%d ]\n", USB_FFS_ADB_EP0, errno);
369 D("about to write (fd=%d, len=%d)\n", h->bulk_in, len);
451 h->write = usb_ffs_write;
482 return h->write(h, data, len);
H A Dsysdeps.h138 return write(fd, buf, len);
140 #undef write macro
141 #define write ___xxx_write macro
386 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
388 #undef write macro
389 #define write ___xxx_write macro
H A Dadb.c158 * Redefine open and write for qemu_pipe.h that contains inlined references
163 #undef write macro
165 #define write adb_write macro
168 #undef write macro
170 #define write ___xxx_write macro
789 // If |buffer| is NULL, does not write but returns required size.
811 // If |buffer| is NULL, does not write but returns required size.
/system/core/logwrapper/
H A Dlogwrap.c78 /* read and write offsets into the circular buffer */
80 int write; member in struct:ending_buf
148 cnt = MIN(line_len, e_buf->buf_size - e_buf->write);
149 memcpy(e_buf->buf + e_buf->write, line, cnt);
154 e_buf->write = (e_buf->write + line_len) % e_buf->buf_size;
182 * The kernel will take a maximum of 1024 bytes in any single write to
271 if (a_buf->e_buf.read < a_buf->e_buf.write) {
287 memcpy(nbuf + first_chunk_len, a_buf->e_buf.buf, a_buf->e_buf.write);
288 print_buf_lines(log_info, nbuf, first_chunk_len + a_buf->e_buf.write);
[all...]
/system/core/libsparse/
H A Doutput_file.c66 int (*write)(struct output_file *, void *, int); member in struct:output_file_ops
112 int (*write)(void *priv, const void *buf, int len); member in struct:output_file_callback
157 ret = write(outn->fd, data, len);
159 error_errno("write");
162 error("incomplete write");
180 .write = file_write,
264 .write = gz_file_write,
281 ret = outc->write(outc->priv, NULL, to_write);
300 return outc->write(outc->priv, data, len);
314 .write
[all...]
/system/core/include/private/pixelflinger/
H A Dggl_context.h359 void (*write)(const surface_t* s, context_t* c, member in struct:android::surface_t
/system/core/libpixelflinger/
H A Dscanline.cpp923 // write
924 c->state.buffers.color.write(
1169 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16
1191 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_32to16
1226 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16_srcA
1270 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16_modulate
1300 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_32to16_modulate
1342 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_x32to16_modulate
1364 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_x32to16_modulate
1397 void write(uint16_ function in struct:android::blender_16to16_modulate
[all...]

Completed in 7243 milliseconds