Searched defs:theme_path (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgfxmenu.c54 const char *theme_path; local
59 theme_path = grub_env_get ("theme");
60 if (! theme_path)
71 if (!cached_view || grub_strcmp (cached_view->theme_path, theme_path) != 0
77 cached_view = grub_gfxmenu_view_new (theme_path, mode_info.width,
H A Dicon_manager.c43 char *theme_path; member in struct:grub_gfxmenu_icon_manager
61 mgr->theme_path = 0;
82 grub_free (mgr->theme_path);
109 if (((mgr->theme_path == 0) != (path == 0))
110 || (grub_strcmp (mgr->theme_path, path) != 0))
113 grub_free (mgr->theme_path);
114 mgr->theme_path = path ? grub_strdup (path) : 0;
196 if (! mgr->theme_path)
200 char *theme_dir = grub_get_dirname (mgr->theme_path);
H A Dtheme_loader.c460 component->ops->set_property (component, "theme_path", p->filename);
636 grub_gfxmenu_view_load_theme (grub_gfxmenu_view_t view, const char *theme_path) argument
642 p.theme_dir = grub_get_dirname (theme_path);
644 file = grub_file_open (theme_path);
656 p.filename = theme_path;
711 grub_free (view->theme_path);
712 view->theme_path = grub_strdup (theme_path);
H A Dview.c49 grub_gfxmenu_view_new (const char *theme_path, argument
83 view->theme_path = 0;
93 if (grub_gfxmenu_view_load_theme (view, theme_path) != 0)
114 grub_free (view->theme_path);
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dgfxmenu_view.h33 grub_gfxmenu_view_t grub_gfxmenu_view_new (const char *theme_path,
41 const char *theme_path);
98 char *theme_path; member in struct:grub_gfxmenu_view

Completed in 25 milliseconds