Lines Matching refs:p_table
5943 int32_t QCameraParameters::initBatchUpdate(parm_buffer_t *p_table) in initBatchUpdate() argument
5948 memset(p_table, 0, sizeof(parm_buffer_t)); in initBatchUpdate()
5949 p_table->first_flagged_entry = CAM_INTF_PARM_MAX; in initBatchUpdate()
5950 AddSetParmEntryToBatch(p_table, CAM_INTF_PARM_HAL_VERSION, in initBatchUpdate()
5970 int32_t QCameraParameters::AddSetParmEntryToBatch(parm_buffer_t *p_table, in AddSetParmEntryToBatch() argument
5981 current = GET_FIRST_PARAM_ID(p_table); in AddSetParmEntryToBatch()
5985 SET_NEXT_PARAM_ID(position, p_table, current); in AddSetParmEntryToBatch()
5986 SET_FIRST_PARAM_ID(p_table, position); in AddSetParmEntryToBatch()
5989 while (position > GET_NEXT_PARAM_ID(current, p_table)) in AddSetParmEntryToBatch()
5990 current = GET_NEXT_PARAM_ID(current, p_table); in AddSetParmEntryToBatch()
5993 if (position != GET_NEXT_PARAM_ID(current, p_table)) { in AddSetParmEntryToBatch()
5994 next = GET_NEXT_PARAM_ID(current, p_table); in AddSetParmEntryToBatch()
5995 SET_NEXT_PARAM_ID(current, p_table, position); in AddSetParmEntryToBatch()
5996 SET_NEXT_PARAM_ID(position, p_table, next); in AddSetParmEntryToBatch()
6008 memcpy(POINTER_OF(paramType,p_table), paramValue, paramLength); in AddSetParmEntryToBatch()
6025 int32_t QCameraParameters::AddGetParmEntryToBatch(parm_buffer_t *p_table, in AddGetParmEntryToBatch() argument
6034 current = GET_FIRST_PARAM_ID(p_table); in AddGetParmEntryToBatch()
6038 SET_NEXT_PARAM_ID(position, p_table, current); in AddGetParmEntryToBatch()
6039 SET_FIRST_PARAM_ID(p_table, position); in AddGetParmEntryToBatch()
6042 while (position > GET_NEXT_PARAM_ID(current, p_table)) in AddGetParmEntryToBatch()
6043 current = GET_NEXT_PARAM_ID(current, p_table); in AddGetParmEntryToBatch()
6046 if (position != GET_NEXT_PARAM_ID(current, p_table)) { in AddGetParmEntryToBatch()
6047 next=GET_NEXT_PARAM_ID(current, p_table); in AddGetParmEntryToBatch()
6048 SET_NEXT_PARAM_ID(current, p_table, position); in AddGetParmEntryToBatch()
6049 SET_NEXT_PARAM_ID(position, p_table, next); in AddGetParmEntryToBatch()