Home
last modified time | relevance | path

Searched refs:read_len (Results 1 – 3 of 3) sorted by relevance

/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/
Dmm_camera_thread.c213 ssize_t read_len; in mm_camera_poll_proc_pipe() local
216 read_len = read(poll_cb->pfds[0], &cmd_evt, sizeof(cmd_evt)); in mm_camera_poll_proc_pipe()
218 poll_cb->pfds[0], (int)read_len, (int)sizeof(cmd_evt), cmd_evt.cmd); in mm_camera_poll_proc_pipe()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Ddhdu.c1554 uint read_len; in dhd_load_file_bytes() local
1569 read_len = fsize - tot_len; in dhd_load_file_bytes()
1570 if (read_len >= blk_sz) { in dhd_load_file_bytes()
1571 read_len = blk_sz; in dhd_load_file_bytes()
1574 read_len = ROUNDUP(start, MEMBLOCK) - start; in dhd_load_file_bytes()
1577 len = fread(memblock, sizeof(uint8), read_len, fp); in dhd_load_file_bytes()
1578 if ((len < read_len) && !feof(fp)) { in dhd_load_file_bytes()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
Dmkvmuxer.cpp108 const int64 read_len = (size > kBufSize) ? kBufSize : size; in ChunkedCopy() local
109 if (source->Read(offset, static_cast<long>(read_len), buf)) in ChunkedCopy()
111 dst->Write(buf, static_cast<uint32>(read_len)); in ChunkedCopy()
112 offset += read_len; in ChunkedCopy()
113 size -= read_len; in ChunkedCopy()