Lines Matching refs:pos
58 struct ComponentTypeNode *pos = NULL; in GetNextComponentId() local
65 DLIST_FOR_EACH_ENTRY_SAFE(pos, next, &g_service->head, struct ComponentTypeNode, node) in GetNextComponentId()
67 if (pos != NULL && tempId == pos->componentId) { in GetNextComponentId()
102 struct ComponentTypeNode *pos = NULL; in OmxManagerDestroyComponent() local
107 DLIST_FOR_EACH_ENTRY_SAFE(pos, next, &g_service->head, struct ComponentTypeNode, node) in OmxManagerDestroyComponent()
109 if (pos == NULL || componentId != pos->componentId) { in OmxManagerDestroyComponent()
113 struct CodecComponentNode *codecNode = CodecComponentTypeServiceGetCodecNode(pos->service); in OmxManagerDestroyComponent()
123 DListRemove(&pos->node); in OmxManagerDestroyComponent()
124 CodecComponentTypeServiceRelease(pos->service); in OmxManagerDestroyComponent()
125 OsalMemFree(pos); in OmxManagerDestroyComponent()
126 pos = NULL; in OmxManagerDestroyComponent()