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

/system/extras/libublock/include/ublock/
H A Dublock.h29 int (*write)(const char *buf, uint64_t length, uint64_t offset); member in struct:ublock_ops
35 * May call your read and write functions as the kernel scans partition
/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/adb/
H A Dtransport_local.c93 D("write remote packet: %04x arg0=%0x arg1=%0x data_length=%0x data_check=%0x magic=%0x\n",
97 D("remote local: write terminated\n");
191 * Redefine open and write for qemu_pipe.h that contains inlined references
195 #undef write macro
197 #define write adb_write macro
200 #undef write macro
202 #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;
276 D("[ %s: write descriptors failed: errno=%d ]\n", USB_FFS_ADB_EP0, errno);
367 D("about to write (fd=%d, len=%d)\n", h->bulk_in, len);
446 h->write = usb_ffs_write;
477 return h->write(h, data, len);
H A Dsysdeps.h137 return write(fd, buf, len);
139 #undef write macro
140 #define write ___xxx_write macro
384 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
386 #undef write macro
387 #define write ___xxx_write macro
H A Dadb.c154 * Redefine open and write for qemu_pipe.h that contains inlined references
159 #undef write macro
161 #define write adb_write macro
164 #undef write macro
166 #define write ___xxx_write macro
739 // If |buffer| is NULL, does not write but returns required size.
761 // 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
150 cnt = MIN(line_len, e_buf->buf_size - e_buf->write);
151 memcpy(e_buf->buf + e_buf->write, line, cnt);
156 e_buf->write = (e_buf->write + line_len) % e_buf->buf_size;
180 * The kernel will take a maximum of 1024 bytes in any single write to
270 if (a_buf->e_buf.read < a_buf->e_buf.write) {
286 memcpy(nbuf + first_chunk_len, a_buf->e_buf.buf, a_buf->e_buf.write);
287 print_buf_lines(log_info, nbuf, first_chunk_len + a_buf->e_buf.write);
[all...]
/system/core/libsparse/
H A Doutput_file.c73 int (*write)(struct output_file *, void *, int); member in struct:output_file_ops
119 int (*write)(void *priv, const void *buf, int len); member in struct:output_file_callback
164 ret = write(outn->fd, data, len);
166 error_errno("write");
169 error("incomplete write");
187 .write = file_write,
271 .write = gz_file_write,
288 ret = outc->write(outc->priv, NULL, to_write);
308 return outc->write(outc->priv, data, len);
322 .write
[all...]
/system/core/include/private/pixelflinger/
H A Dggl_context.h357 void (*write)(const surface_t* s, context_t* c, member in struct:android::surface_t
/system/core/libpixelflinger/
H A Dscanline.cpp907 // write
908 c->state.buffers.color.write(
1153 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16
1175 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_32to16
1210 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16_srcA
1254 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_32to16_modulate
1284 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_32to16_modulate
1326 void write(uint32_t s, uint16_t* dst) { function in struct:android::blender_x32to16_modulate
1348 void write(uint32_t s, uint16_t* dst, ditherer& di) { function in struct:android::blender_x32to16_modulate
1381 void write(uint16_ function in struct:android::blender_16to16_modulate
[all...]

Completed in 263 milliseconds