Lines Matching refs:entry
128 APP_ANIMATION *entry = app_animation_created_list; in app_animation_clean_up() local
132 while (entry) in app_animation_clean_up()
134 next = entry->app_animation_next; in app_animation_clean_up()
135 if (entry->app_animation_win_thread_id == data->win32_window_ThreadId) in app_animation_clean_up()
139 pre->app_animation_next = entry->app_animation_next; in app_animation_clean_up()
143 app_animation_created_list = entry->app_animation_next; in app_animation_clean_up()
146 if (entry->app_animation->gx_animation_status != GX_ANIMATION_IDLE) in app_animation_clean_up()
148 gx_animation_stop(entry->app_animation); in app_animation_clean_up()
151 delete entry->app_animation; in app_animation_clean_up()
152 delete entry; in app_animation_clean_up()
156 pre = entry; in app_animation_clean_up()
158 entry = next; in app_animation_clean_up()
196 APP_ANIMATION *entry = app_animation_created_list; in app_animation_delete() local
199 while (entry) in app_animation_delete()
201 if (entry->app_animation->gx_animation_info.gx_animation_id == animation_id) in app_animation_delete()
205 pre->app_animation_next = entry->app_animation_next; in app_animation_delete()
209 app_animation_created_list = entry->app_animation_next; in app_animation_delete()
212 delete entry->app_animation; in app_animation_delete()
213 delete entry; in app_animation_delete()
216 pre = entry; in app_animation_delete()
217 entry = entry->app_animation_next; in app_animation_delete()