Searched defs:numfds (Results 1 - 2 of 2) sorted by relevance

/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/
H A Dmm_camera_sock.c172 * @numfds : num of file descriptors to be sent
181 int numfds)
186 char control[CMSG_SPACE(sizeof(int) * numfds)];
207 /* if numfds is valid, we need to pass it through control msg */
208 if (numfds > 0) {
215 cmsghp->cmsg_len = CMSG_LEN(sizeof(int) * numfds);
218 memcpy(fds_ptr, sendfds, sizeof(int) * numfds);
176 mm_camera_socket_bundle_sendmsg( int fd, void *msg, size_t buf_size, int sendfds[CAM_MAX_NUM_BUFS_PER_STREAM], int numfds) argument
H A Dmm_camera.c1762 * @numfds : number of file descriptors to be sent
1772 int numfds)
1779 if(mm_camera_socket_bundle_sendmsg(my_obj->ds_fd, msg, buf_size, sendfds, numfds) > 0) {
1768 mm_camera_util_bundled_sendmsg(mm_camera_obj_t *my_obj, void *msg, size_t buf_size, int sendfds[CAM_MAX_NUM_BUFS_PER_STREAM], int numfds) argument

Completed in 63 milliseconds