Searched refs:match_data (Results 1 – 6 of 6) sorted by relevance
/hardware/qcom/camera/QCamera2/util/ |
D | QCameraQueue.cpp | 299 void* QCameraQueue::dequeue(match_fn_data match, void *match_data){ in dequeue() argument 305 if ( NULL == match || NULL == match_data ) { in dequeue() 318 if ( match(node->data, m_userData, match_data) ) { in dequeue() 430 void QCameraQueue::flushNodes(match_fn_data match, void *match_data){ in flushNodes() argument 447 if ( match(node->data, m_userData, match_data) ) { in flushNodes()
|
D | QCameraQueue.h | 41 typedef bool (*match_fn_data)(void *data, void *user_data, void *match_data);
|
/hardware/qcom/camera/QCamera2/HAL/ |
D | QCameraMuxer.h | 202 static bool matchFrameId(void *data, void *user_data, void *match_data); 203 static bool findPreviousJpegs(void *data, void *user_data, void *match_data);
|
D | QCameraPostProc.h | 198 static bool matchJobId(void *data, void *user_data, void *match_data);
|
D | QCameraMuxer.cpp | 2431 void *match_data) in matchFrameId() argument 2435 if (!data || !match_data) { in matchFrameId() 2440 uint32_t frame_idx = *((uint32_t *) match_data); in matchFrameId() 2458 void *match_data) in findPreviousJpegs() argument 2462 if (!data || !match_data) { in findPreviousJpegs() 2466 uint32_t frame_idx = *((uint32_t *) match_data); in findPreviousJpegs()
|
D | QCameraPostProc.cpp | 3312 bool QCameraPostProcessor::matchJobId(void *data, void *, void *match_data) in matchJobId() argument 3315 uint32_t job_id = *((uint32_t *) match_data); in matchJobId()
|