Lines Matching refs:current_info
3240 res_info *current_info; in SyncResourceName() local
3248 current_info = project->FindResource(mDisplayIndex, theme, info->type, old_name); in SyncResourceName()
3250 if (current_info) in SyncResourceName()
3252 current_info->name = info->name; in SyncResourceName()
3271 res_info *current_info; in SyncResourceAdd() local
3300 current_info = new res_info(NULL, *info, TRUE); in SyncResourceAdd()
3301 parent->Attach(current_info); in SyncResourceAdd()
3303 switch (current_info->type) in SyncResourceAdd()
3307 GX_FONT *font = MakeFont(current_info, mDisplayIndex, TRUE); in SyncResourceAdd()
3311 current_info->font = font; in SyncResourceAdd()
3314 … current_info->storage_size = GetFontStorage(current_info, project, mDisplayIndex); in SyncResourceAdd()
3325 project->InitializeOnePixelmap(current_info, NULL); in SyncResourceAdd()
3344 res_info* current_info; in SyncResourcePath() local
3352 current_info = project->FindResource(mDisplayIndex, theme, info->type, info->name); in SyncResourcePath()
3354 if (current_info) in SyncResourcePath()
3356 current_info->pathinfo = info->pathinfo; in SyncResourcePath()
3367 project->InitializeOnePixelmap(current_info, NULL); in SyncResourcePath()
3404 res_info *current_info; in SyncResourceDelete() local
3416 …current_info = project->FindResourceFolder(mDisplayIndex, theme, info->type, info->folder_id, info… in SyncResourceDelete()
3418 if (current_info) in SyncResourceDelete()
3420 DeleteResourceChildren(current_info); in SyncResourceDelete()
3425 current_info = project->FindResource(mDisplayIndex, theme, info->type, info->name); in SyncResourceDelete()
3429 if (current_info) in SyncResourceDelete()
3431 project->DeleteResource(current_info); in SyncResourceDelete()