| /openbmc/webui-vue/docs/guide/quickstart/ |
| H A D | store-anatomy.md | 5 A "store" is a container that holds the application's state. 10 └── store 12 ├── index.js # import store modules 16 ├── FeatureStore.js # feature store 17 ├── AdditionalFeatureStore.js # additional features per store 18 ├── AnotherFeatureStore.js # additional features per store 23 The application store is divided into modules to prevent the store from getting 29 - **State:** You cannot directly mutate the store's state. 31 - **Getters:** Getters are used to compute derived state based on store stat [all...] |
| /openbmc/u-boot/test/dm/ |
| H A D | axi.c | 41 struct udevice *store; in dm_test_axi_store() local 48 ut_assertok(uclass_get_device(UCLASS_AXI_EMUL, 0, &store)); in dm_test_axi_store() 49 ut_assert(device_active(store)); in dm_test_axi_store() 51 axi_get_store(store, &data); in dm_test_axi_store() 55 axi_read(store, 0, &val, AXI_SIZE_32); in dm_test_axi_store() 59 axi_read(store, 3, &val, AXI_SIZE_32); in dm_test_axi_store() 67 axi_write(store, 0, &val, AXI_SIZE_32); in dm_test_axi_store() 71 axi_write(store, 3, &val, AXI_SIZE_32); in dm_test_axi_store()
|
| /openbmc/webui-vue/src/router/ |
| H A D | index.js | 6 import store from '../store'; 20 if (store.getters['authentication/isLoggedIn']) { 41 let currentUserRole = store.getters['global/userPrivilege']; 43 if (!currentUserRole && store.getters['authentication/isLoggedIn']) { 45 store 48 let currentUserRole = store.getters['global/userPrivilege']; 54 store.dispatch('authentication/logout');
|
| /openbmc/u-boot/drivers/axi/ |
| H A D | sandbox_store.c | 17 u8 *store; member 52 return copy_axi_data(priv->store + address, data, size); in sandbox_store_read() 60 return copy_axi_data(data, priv->store + address, size); in sandbox_store_write() 63 static int sandbox_store_get_store(struct udevice *dev, u8 **store) in sandbox_store_get_store() argument 67 *store = priv->store; in sandbox_store_get_store() 99 priv->store = calloc(reg[1], 1); in sandbox_store_probe() 100 if (!priv->store) in sandbox_store_probe() 110 free(priv->store); in sandbox_store_remove()
|
| /openbmc/webui-vue/src/env/store/ |
| H A D | ibm.js | 1 import store from '@/store'; 4 store.unregisterModule('virtualMedia'); 6 store.registerModule('key-clear', KeyClearStore); 8 export default store;
|
| H A D | intel.js | 1 import store from '@/store'; 7 store.unregisterModule('ldap'); 9 export default store;
|
| /openbmc/webui-vue/tests/unit/ |
| H A D | AppHeader.spec.js | 23 const store = createStore({ 37 global: { plugins: [store] }, 46 store.dispatch = vi.fn(); 73 expect(store.dispatch).toHaveBeenCalledTimes(1); 85 expect(store.dispatch).toHaveBeenCalledTimes(1); 90 expect(store.dispatch).toHaveBeenCalledTimes(1); 22 const store = createStore({ global() constant
|
| /openbmc/telemetry/tests/src/ |
| H A D | test_persistent_json_storage.cpp | 47 sut.store(fileName, data); in TEST_F() 59 sut.store(FilePath("report/domain-1/name-1/conf-1.json"), in TEST_F() 61 sut.store(FilePath("report/domain-1/name-2/conf-1.json"), in TEST_F() 63 sut.store(FilePath("report/domain-1/name-2/conf-2.json"), in TEST_F() 65 sut.store(FilePath("report/domain-2/name-1/conf-1.json"), in TEST_F() 78 sut.store(FilePath("report/domain-1/name-1/conf-1.json"), in TEST_F() 80 sut.store(FilePath("report/domain-1/name-2/conf-1.json"), in TEST_F() 82 sut.store(FilePath("report/domain-1/name-2/conf-2.json"), in TEST_F() 84 sut.store(FilePath("report/domain-2/name-1/conf-1.json"), in TEST_F() 101 sut.store(fileName, data); in TEST_F() [all …]
|
| /openbmc/webui-vue/src/views/Settings/Network/ |
| H A D | NetworkGlobalSettings.vue | 155 return this.$store.getters['network/globalNetworkSettings'][0]; 159 return this.$store.getters['network/globalNetworkSettings'][0] 168 return this.$store.getters['network/globalNetworkSettings'][0] 177 return this.$store.getters['network/globalNetworkSettings'][0] 186 return this.$store.getters['network/globalNetworkSettings'][0] 195 return this.$store.getters['network/globalNetworkSettings'][0] 204 return this.$store.getters['network/globalNetworkSettings'][0] 213 this.$store.dispatch('network/getEthernetData').finally(() => { 220 this.$store 231 this.$store [all...] |
| H A D | Network.vue | 125 this.$store.dispatch('network/setSelectedTabIndex', newIndex); 126 this.$store.dispatch( 153 this.$store.dispatch('network/getEthernetData'), 167 this.$store.dispatch('network/setSelectedTabIndex', 0); 170 this.$store.dispatch('network/setSelectedTabId', firstId); 204 this.$store.getters['network/globalNetworkSettings']; 217 this.$store.dispatch('network/setSelectedTabIndex', this.tabIndex); 218 this.$store.dispatch( 226 this.$store 234 this.$store [all...] |
| /openbmc/qemu/host/include/aarch64/host/ |
| H A D | store-insert-al16.h.inc | 3 * Atomic store insert into 128-bit, AArch64 version. 14 * @val: shifted value to store 15 * @msk: mask for value to store 17 * Atomically store @val to @p masked by @msk. 25 * arithmetic into the load-exclusive/store-conditional pair.
|
| /openbmc/webui-vue/docs/customization/ |
| H A D | build.md | 7 - [Store](#store) 29 **tip** [Vuex store modules](https://vuex.vuejs.org/guide/modules.html) contain 32 1. If making customizations to the default store, add `CUSTOM_STORE=true` key 34 2. Create a `<ENV_NAME>.js` file in `src/env/store` **danger** The filename 35 needs to match the `VITE_ENV_NAME` value defined in the .env file. The store 37 3. Import the base store 38 4. Import environment specific store modules 40 and `unregisterModule` instance methods to add/remove store modules 43 Example `src/env/store/ibm.js`: 46 import store fro [all...] |
| /openbmc/docs/designs/ |
| H A D | binarystore-via-blobs.md | 9 Server platform host OS often needs to store and/or access data coupled with the 17 - The data to store may not fit in the data types defined in IPMI FRU spec 18 - Host may want to store multiple copies in e.g. BMC EEPROM 20 The BMC generic IPMI blobs binary store, or "binary store" in short, serves a 22 blobs transport layer to allow users to store binary data on persistent 25 Despite its name, the binary blob store cannot be used for everything. 28 blob store and not try to write it due to concurrency concerns. It is expected 29 the only accessors are the IPMI blob store commands. 30 - It is not a key store. Because the data stored is accessible to IPMI users and 52 1. The host should only store binary data that is suitable using this transfer [all …]
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Policies/ |
| H A D | Policies.vue | 185 return this.$store.getters['policies/sshProtocolEnabled']; 193 return this.$store.getters['policies/ipmiProtocolEnabled']; 201 if (this.$store.getters['policies/rtadEnabled'] === 'Enabled') { 213 if (this.$store.getters['policies/vtpmEnabled'] === 'Enabled') { 225 return this.$store.getters['policies/getSessionTimeoutValue']; 235 this.$store.dispatch('policies/getBiosStatus'), 236 this.$store.dispatch('policies/getNetworkProtocolStatus'), 237 this.$store.dispatch('policies/getSessionTimeout'), 242 this.$store 248 this.$store [all...] |
| /openbmc/webui-vue/src/views/Operations/ServerPowerOperations/ |
| H A D | ServerPowerOperations.vue | 183 import { privilegesId } from '@/store/modules/GlobalStore'; 213 return this.$store.getters['global/serverStatus']; 216 return this.$store.getters['controls/isOperationInProgress']; 219 return this.$store.getters['controls/lastPowerOperationTime']; 222 return this.$store.getters['serverBootSettings/overrideEnabled']; 226 this.$store.getters['serverBootSettings/bootSourceOptions']; 236 this.$store.dispatch('serverBootSettings/getBootSettings'), 237 this.$store.dispatch('controls/getLastPowerOperationTime'), 243 this.$store.dispatch('controls/serverPowerOn'); 260 if (confirmed) this.$store [all...] |
| /openbmc/qemu/host/include/generic/host/ |
| H A D | store-insert-al16.h.inc | 3 * Atomic store insert into 128-bit, generic version. 14 * @val: shifted value to store 15 * @msk: mask for value to store 17 * Atomically store @val to @p masked by @msk.
|
| /openbmc/webui-vue/src/views/Settings/PowerRestorePolicy/ |
| H A D | PowerRestorePolicy.vue | 54 return this.$store.getters['powerPolicy/powerRestorePolicies']; 58 return this.$store.getters['powerPolicy/powerRestoreCurrentPolicy']; 72 this.$store.dispatch('powerPolicy/getPowerRestorePolicies'), 73 this.$store.dispatch('powerPolicy/getPowerRestoreCurrentPolicy'), 89 this.$store
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/ |
| H A D | UserManagement.vue | 226 return this.$store.getters['userManagement/allUsers']; 248 user.UserName === this.$store.getters['global/username'] 261 return this.$store.getters['userManagement/accountSettings']; 264 return this.$store.getters['userManagement/accountPasswordRequirements']; 269 this.$store.dispatch('userManagement/getUsers').finally(() => { 273 this.$store.dispatch('userManagement/getAccountSettings'); 274 this.$store.dispatch('userManagement/getAccountRoles'); 278 if ('root' === this.$store.getters['global/username']) { 312 this.$store 318 this.$store [all …]
|
| /openbmc/u-boot/arch/arm/include/debug/ |
| H A D | 8250.S | 15 .macro store, rd, rx:vararg macro 23 .macro store, rd, rx:vararg macro 35 store \rd, [\rx, #UART_TX << UART_SHIFT]
|
| /openbmc/webui-vue/src/views/HardwareStatus/Inventory/ |
| H A D | InventoryServiceIndicator.vue | 52 let systemData = this.$store.getters['system/systems'][0]; 56 return this.$store.getters['global/serverStatus']; 66 this.$store.dispatch('system/getSystem').finally(() => { 73 this.$store
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | sme-fa64.decode | 49 FAIL 0-00 110- ---- ---- ---- ---- ---- ---- # Advanced SIMD structure load/store 56 # --10 110- ---- ---- ---- ---- ---- ---- # Load/store pair of FP registers 58 # --11 1100 --0- ---- ---- ---- ---- ---- # Load/store FP register (unscaled imm) 59 # --11 1100 --1- ---- ---- ---- ---- --10 # Load/store FP register (register offset) 60 # --11 1101 ---- ---- ---- ---- ---- ---- # Load/store FP register (scaled imm)
|
| /openbmc/qemu/accel/tcg/ |
| H A D | ldst_atomicity.c.inc | 2 * Routines common to user and system emulation of load/store. 13 #include "host/store-insert-al16.h.inc" 594 * @val: value to store 596 * Atomically store 2 aligned bytes to @pv. 607 * @val: value to store 609 * Atomically store 4 aligned bytes to @pv. 620 * @val: value to store 622 * Atomically store 8 aligned bytes to @pv. 662 * @val: shifted value to store 663 * @msk: mask for value to store [all …]
|
| /openbmc/webui-vue/src/components/AppHeader/ |
| H A D | AppHeader.vue | 150 return this.$store.getters['global/assetTag']; 153 return this.$store.getters['global/modelType']; 156 return this.$store.getters['global/serialNumber']; 159 return this.$store.getters['global/isAuthorized']; 162 return this.$store.getters['global/userPrivilege']; 165 return this.$store.getters['global/serverStatus']; 168 return this.$store.getters['eventLog/healthStatus']; 196 return this.$store.getters['global/username']; 214 this.$store.dispatch('authentication/resetStoreState'); 229 this.$store [all...] |
| /openbmc/webui-vue/src/views/ProfileSettings/ |
| H A D | ProfileSettings.vue | 192 isUtcDisplay: this.$store.getters['global/isUtcDisplay'], 198 return this.$store.getters['global/username']; 201 return this.$store.getters['userManagement/accountPasswordRequirements']; 209 this.$store 236 this.$store 244 this.$store.dispatch('authentication/logout'); 250 this.$store.commit('global/setUtcTime', this.form.isUtcDisplay); 264 this.$store.getters['global/isUtcDisplay'] != this.form.isUtcDisplay 276 this.$store
|
| /openbmc/webui-vue/src/views/Overview/ |
| H A D | OverviewFirmware.vue | 40 return this.$store.getters['firmware/backupBmcFirmware']; 46 return this.$store.getters[`firmware/activeBmcFirmware`]; 57 this.$store.dispatch('firmware/getFirmwareInformation').finally(() => {
|