Lines Matching refs:std
38 struct bootstd_priv *std; in bootdev_first_bootflow() local
42 ret = bootstd_get_priv(&std); in bootdev_first_bootflow()
46 bflow = alist_getw(&std->bootflows, 0, struct bootflow); in bootdev_first_bootflow()
56 struct bootstd_priv *std; in bootdev_next_bootflow() local
60 ret = bootstd_get_priv(&std); in bootdev_next_bootflow()
64 bflow = alist_nextw(&std->bootflows, *bflowp); in bootdev_next_bootflow()
788 struct bootstd_priv *std; in bootdev_hunt_drv() local
791 ret = bootstd_get_priv(&std); in bootdev_hunt_drv()
795 if (!(std->hunters_used & BIT(seq))) { in bootdev_hunt_drv()
806 std->hunters_used |= BIT(seq); in bootdev_hunt_drv()
861 struct bootstd_priv *std; in bootdev_unhunt() local
864 ret = bootstd_get_priv(&std); in bootdev_unhunt()
867 if (!(std->hunters_used & BIT(i))) in bootdev_unhunt()
869 std->hunters_used &= ~BIT(i); in bootdev_unhunt()
904 void bootdev_list_hunters(struct bootstd_priv *std) in bootdev_list_hunters() argument
927 std->hunters_used & BIT(i) ? "*" : "", in bootdev_list_hunters()