Home | History | Annotate | Download | only in common

Lines Matching defs:id

75     WORD32 id;
80 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
82 ps_buf_mgr->au4_status[id] = 0;
83 ps_buf_mgr->apv_ptr[id] = NULL;
117 /* Check if buffer ID is within allowed range */
123 /* Check if the current ID is being used to hold some other buffer */
149 * Pointer to the id of the free buffer
162 WORD32 id;
166 for(id = 0; id < (WORD32)ps_buf_mgr->u4_max_buf_cnt; id++)
169 if((ps_buf_mgr->au4_status[id] == 0) && (ps_buf_mgr->apv_ptr[id]))
171 *pi4_buf_id = id;
173 ps_buf_mgr->au4_status[id] = 1;
174 pv_ret_ptr = ps_buf_mgr->apv_ptr[id];
205 UWORD32 id;
207 for(id = 0; id < ps_buf_mgr->u4_max_buf_cnt; id++)
209 if((ps_buf_mgr->au4_status[id] == 0) &&
210 (ps_buf_mgr->apv_ptr[id]))
229 * the id)
235 * ID of the buffer status to be released
252 /* If the given id is pointing to an id which is not yet added */
278 * id)
285 * ID of the buffer whose status needs to be modified
326 * Returns the status of the buffer corresponding to the id
332 * ID of the buffer status required
334 * @returns Status of the buffer corresponding to the id
356 * Returns the pointer to the buffer corresponding to the id
362 * ID of the buffer required