Lines Matching refs:state
6 state: { class in BootSettingsStore
13 bootSourceOptions: (state) => state.bootSourceOptions,
14 bootSource: (state) => state.bootSource,
15 overrideEnabled: (state) => state.overrideEnabled,
16 tpmEnabled: (state) => state.tpmEnabled,
19 setBootSourceOptions: (state, bootSourceOptions) =>
20 (state.bootSourceOptions = bootSourceOptions),
21 setBootSource: (state, bootSource) => (state.bootSource = bootSource),
22 setOverrideEnabled: (state, overrideEnabled) => {
24 state.overrideEnabled = true;
27 state.overrideEnabled = false;
30 setTpmPolicy: (state, tpmEnabled) => (state.tpmEnabled = tpmEnabled),