Home
last modified time | relevance | path

Searched full:store (Results 1 – 25 of 1513) sorted by relevance

12345678910>>...61

/openbmc/webui-vue/docs/guide/quickstart/
H A Dstore-anatomy.md1 # Store Anatomy
3 ## Store section in Store Anatomy
5 A "store" is a container that holds the application's state.
9 # Store structure
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
[all …]
/openbmc/u-boot/arch/x86/include/asm/acpi/
H A Dglobutil.asl20 Store(Arg0, Local0)
28 Store(Arg0, BUFF)
39 Store(S2BF(Arg0), Local0)
40 Store(S2BF(Arg1), Local1)
41 Store(Zero, Local4)
42 Store(SLEN(Arg0), Local5)
43 Store(SLEN(Arg1), Local6)
44 Store(MIN(Local5, Local6), Local7)
47 Store(Derefof(Index(Local0, Local4)), Local2)
48 Store(Derefof(Index(Local1, Local4)), Local3)
[all …]
H A Dirqlinks.asl31 Store(0x80, PRTA)
50 Store(Zero, IRQ0)
67 Store(Local0, PRTA)
89 Store(0x80, PRTB)
108 Store(Zero, IRQ0)
125 Store(Local0, PRTB)
147 Store(0x80, PRTC)
166 Store(Zero, IRQ0)
183 Store(Local0, PRTC)
205 Store(0x80, PRTD)
[all …]
H A Ddebug.asl31 Store(0x83, CLCR)
32 Store(0x01, CDAT) /* 115200 baud (low) */
33 Store(0x00, CDLM) /* 115200 baud (high) */
34 Store(0x03, CLCR) /* word=8 stop=1 parity=none */
35 Store(0x03, CMCR) /* DTR=1 RTS=1 out1/2=Off loop=Off */
36 Store(0x00, CDLM) /* turn off interrupts */
52 Store(Arg0, CDAT)
122 Store(Arg0, BDBG)
123 Store(0, Local1)
125 Store(GETC(BDBG, Local1), Local0)
/openbmc/docs/designs/
H A Dbinarystore-via-blobs.md1 # BMC Generic Binary Blob Store via OEM IPMI Blob Transport
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
[all …]
/openbmc/webui-vue/src/router/
H A Dindex.js3 //Do not change store or routes import.
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'];
51 // our store got out of sync, start afresh
54 store.dispatch('authentication/logout');
/openbmc/webui-vue/src/env/store/
H A Dibm.js1 import store from '@/store';
2 import KeyClearStore from '@/store/modules/Operations/KeyClearStore';
4 store.unregisterModule('virtualMedia');
6 store.registerModule('key-clear', KeyClearStore);
8 export default store;
H A Dintel.js1 import store from '@/store';
3 // Use store.registerModule() to register env specific
4 // store modules
7 store.unregisterModule('ldap');
9 export default store;
/openbmc/u-boot/test/dm/
H A Daxi.c38 /* Test that we can use the store device correctly */
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()
62 /* Reset data store */ 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/docs/customization/
H A Dbuild.md7 - [Store](#store)
27 ## Store section in Build Customization
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
36 store import in `src/main.js` will resolve to this new file.
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`:
[all …]
/openbmc/u-boot/drivers/axi/
H A Dsandbox_store.c12 * struct sandbox_store_priv - Private data structure of a AXI store device
13 * @store: The buffer holding the device's internal memory, which is read from
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/docs/guide/unit-testing/
H A Dreadme.md121 ## Vuex Store
123 There are two testing strategies for testing a Vuex store, which include testing
124 store parts separately or testing a running store instance. Each strategy has
125 its pros and cons. Given the size of the store and the number of developers that
127 `test store parts separately`.
129 ### Testing Store Parts Separately argument
132 function. Store parts to test include `actions`, `getters`, and `mutations`.
147 Mutations are JavaScript functions that mutate the store state. These are basic
162 ### Testing Store Instance argument
166 - Requires the use of `localVue` when creating the store to avoid leaky tests
[all …]
/openbmc/openbmc/poky/scripts/lib/resulttool/
H A Dstore.py1 # resulttool - store test results
21 def store(args, logger): function
48 logger.info("No results found to store")
50 logger.error("No results found to store")
64 logger.info("Found %d revisions to store" % len(revisions))
104 parser_build = subparsers.add_parser('store', help='store test results into a git repository',
109 parser_build.set_defaults(func=store)
113 help='the location of the git repository to store the results in')
117 help='don\'t error if no results to store are found')
123 help='only store data for the specified revision')
/openbmc/webui-vue/src/views/Settings/Network/
H A DNetworkGlobalSettings.vue152 return this.$store.getters['network/globalNetworkSettings'][0];
156 return this.$store.getters['network/globalNetworkSettings'][0]
165 return this.$store.getters['network/globalNetworkSettings'][0]
174 return this.$store.getters['network/globalNetworkSettings'][0]
183 return this.$store.getters['network/globalNetworkSettings'][0]
192 return this.$store.getters['network/globalNetworkSettings'][0]
201 return this.$store.getters['network/globalNetworkSettings'][0]
210 this.$store.dispatch('network/getEthernetData').finally(() => {
217 this.$store
228 this.$store
[all …]
H A DNetwork.vue130 this.$store.dispatch('network/getEthernetData'),
141 this.$store.getters['network/globalNetworkSettings'][
146 this.$store.getters['network/globalNetworkSettings'][
151 this.$store.getters['network/globalNetworkSettings'][
155 this.$store.getters['network/globalNetworkSettings'][
161 this.$store.dispatch('network/setSelectedTabIndex', this.tabIndex);
162 this.$store.dispatch(
170 this.$store
178 this.$store
186 this.$store
[all …]
/openbmc/qemu/host/include/aarch64/host/
H A Dstore-insert-al16.h.inc3 * 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/src/
H A Dmain.js10 //Do not change store import.
13 import store from './store';
51 store,
57 app.use(store);
111 const isUtcDisplay = store.getters['global/isUtcDisplay'];
123 const isUtcDisplay = store.getters['global/isUtcDisplay'];
/openbmc/telemetry/tests/src/
H A Dtest_persistent_json_storage.cpp47 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/SecurityAndAccess/Policies/
H A DPolicies.vue169 return this.$store.getters['policies/sshProtocolEnabled'];
177 return this.$store.getters['policies/ipmiProtocolEnabled'];
185 if (this.$store.getters['policies/rtadEnabled'] === 'Enabled') {
197 if (this.$store.getters['policies/vtpmEnabled'] === 'Enabled') {
209 return this.$store.getters['policies/getSessionTimeoutValue'];
219 this.$store.dispatch('policies/getBiosStatus'),
220 this.$store.dispatch('policies/getNetworkProtocolStatus'),
221 this.$store.dispatch('policies/getSessionTimeout'),
226 this.$store
232 this.$store
[all …]
/openbmc/webui-vue/src/views/Operations/ServerPowerOperations/
H A DServerPowerOperations.vue181 import { privilegesId } from '@/store/modules/GlobalStore';
207 return this.$store.getters['global/serverStatus'];
210 return this.$store.getters['controls/isOperationInProgress'];
213 return this.$store.getters['controls/lastPowerOperationTime'];
216 return this.$store.getters['serverBootSettings/overrideEnabled'];
220 this.$store.getters['serverBootSettings/bootSourceOptions'];
232 this.$store.dispatch('serverBootSettings/getBootSettings'),
233 this.$store.dispatch('controls/getLastPowerOperationTime'),
239 this.$store.dispatch('controls/serverPowerOn');
258 if (confirmed) this.$store.dispatch('controls/serverSoftReboot');
[all …]
/openbmc/qemu/target/hexagon/imported/
H A Dldst.idef19 * Load and Store instruction definitions
103 /* The set of addressing modes standard to all Store instructions */
115 /* The set of 32-bit store instructions */
116 STD_ST_AMODES(storerb, "Rt32", "memb","Store Byte",ATTRIBS(A_MEMSIZE_1B,A_STORE),"0",fSTORE(1,1,EA,…
117 STD_ST_AMODES(storerh, "Rt32", "memh","Store Half integer",ATTRIBS(A_REGWRSIZE_2B,A_MEMSIZE_2B,A_ST…
118 STD_ST_AMODES(storerf, "Rt.H32", "memh","Store Upper Half integer",ATTRIBS(A_REGWRSIZE_2B,A_MEMSIZE…
119 STD_ST_AMODES(storeri, "Rt32", "memw","Store Word",ATTRIBS(A_REGWRSIZE_4B,A_MEMSIZE_4B,A_STORE),"2"…
120 STD_ST_AMODES(storerd, "Rtt32","memd","Store Double integer",ATTRIBS(A_REGWRSIZE_8B,A_MEMSIZE_8B,A_…
121 STD_ST_AMODES(storerinew, "Nt8.new", "memw","Store Word",ATTRIBS(A_REGWRSIZE_4B,A_NOTE_NEWVAL_SLOT0…
122 STD_ST_AMODES(storerbnew, "Nt8.new", "memb","Store Byte",ATTRIBS(A_NOTE_NEWVAL_SLOT0,A_NVSTORE,A_NO…
[all …]
/openbmc/qemu/accel/tcg/
H A Dldst_atomicity.c.inc2 * 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/tests/unit/
H A DAppHeader.spec.js21 const store = createStore({ actions, modules }); constant
23 store, field in AnonymousClass62b9a1390201
32 store.dispatch = jest.fn();
59 expect(store.dispatch).toHaveBeenCalledTimes(1);
72 expect(store.dispatch).toHaveBeenCalledTimes(1);
77 expect(store.dispatch).toHaveBeenCalledTimes(1);
/openbmc/telemetry/redfish-tests/
H A Dconftest.py7 "--host_addr", action="store", default="https://localhost:4443"
9 parser.addoption("--username", action="store", default="root")
10 parser.addoption("--password", action="store", default="0penBmc")
11 parser.addoption("--metric_limit", action="store", default=200)
/openbmc/qemu/tests/tcg/hexagon/
H A Dmem_noshuf_exception.c22 * That the load will get the data from the store if the addresses overlap.
23 * To accomplish this, we perform the store first. However, we have to
24 * handle the case where the store raises an exception. In that case, the
25 * store should not alter the machine state.
27 * We test this with a mem_noshuf packet with a store to a global variable,
32 * raise an exception and allows the store to happen.
98 * raise an exception and allows the store to happen. in main()

12345678910>>...61