Lines Matching defs:list
202 /* pop list head */
253 * we do not sort the attribute list, so even if all attribute _values_ are
269 /* search the display list first */
297 /* add to the display list */
314 _EGLResource *list;
317 list = display->ResourceLists[_EGL_RESOURCE_CONTEXT];
318 while (list) {
319 _EGLContext *ctx = (_EGLContext *) list;
320 list = list->Next;
327 list = display->ResourceLists[_EGL_RESOURCE_SURFACE];
328 while (list) {
329 _EGLSurface *surf = (_EGLSurface *) list;
330 list = list->Next;
337 list = display->ResourceLists[_EGL_RESOURCE_IMAGE];
338 while (list) {
339 _EGLImage *image = (_EGLImage *) list;
340 list = list->Next;
347 list = display->ResourceLists[_EGL_RESOURCE_SYNC];
348 while (list) {
349 _EGLSync *sync = (_EGLSync *) list;
350 list = list->Next;
402 _EGLResource *list = disp->ResourceLists[type];
407 while (list) {
408 if (res == (void *) list) {
409 assert(list->Display == disp);
412 list = list->Next;
415 return (list != NULL);