Lines Matching refs:filename
312 void ScreenRecoveryUI::LoadBitmap(const char* filename, gr_surface* surface) {
313 int result = res_create_surface(filename, surface);
315 LOGE("missing bitmap %s\n(Code %d)\n", filename, result);
319 void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, gr_surface* surface) {
320 int result = res_create_localized_surface(filename, surface);
322 LOGE("missing bitmap %s\n(Code %d)\n", filename, result);
356 char filename[40];
358 sprintf(filename, "indeterminate%02d", i+1);
359 LoadBitmap(filename, progressBarIndeterminate+i);
366 char filename[40];
369 sprintf(filename, "icon_installing_overlay%02d", i+1);
370 LoadBitmap(filename, installationOverlay+i);