Home | History | Annotate | Download | only in common

Lines Matching defs:id

79     WORD32 id;
84 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
86 ps_buf_mgr->au4_status[id] = 0;
87 ps_buf_mgr->apv_ptr[id] = NULL;
121 /* Check if buffer ID is within allowed range */
127 /* Check if the current ID is being used to hold some other buffer */
153 * Pointer to the id of the free buffer
166 WORD32 id;
170 for(id = 0; id < (WORD32)ps_buf_mgr->u4_max_buf_cnt; id++)
173 if((ps_buf_mgr->au4_status[id] == 0) && (ps_buf_mgr->apv_ptr[id]))
175 *pi4_buf_id = id;
177 ps_buf_mgr->au4_status[id] = 1;
178 pv_ret_ptr = ps_buf_mgr->apv_ptr[id];
209 UWORD32 id;
211 for(id = 0; id < ps_buf_mgr->u4_max_buf_cnt; id++)
213 if((ps_buf_mgr->au4_status[id] == 0) &&
214 (ps_buf_mgr->apv_ptr[id]))
233 * the id)
239 * ID of the buffer status to be released
256 /* If the given id is pointing to an id which is not yet added */
287 * id)
294 * ID of the buffer whose status needs to be modified
335 * Returns the status of the buffer corresponding to the id
341 * ID of the buffer status required
343 * @returns Status of the buffer corresponding to the id
365 * Returns the pointer to the buffer corresponding to the id
371 * ID of the buffer required