Home
last modified time | relevance | path

Searched refs:assetTag (Results 1 – 19 of 19) sorted by relevance

/openbmc/webui-vue/src/
H A DApp.vue11 assetTag() {
13 //return this.$store.getters['global/assetTag'];
17 assetTag: function (tag) {
24 if (this.assetTag) {
25 document.title = `${this.assetTag} - ${to.meta.title}`;
/openbmc/webui-vue/src/store/modules/
H A DGlobalStore.js32 assetTag: null, property in GlobalStore.state
46 assetTag: (state) => state.assetTag,
58 setAssetTag: (state, assetTag) => (state.assetTag = assetTag),
/openbmc/phosphor-host-ipmid/
H A Ddcmihandler.cpp204 std::string assetTag{}; in readAssetTag() local
207 dcmi::assetTagIntf, dcmi::assetTagProp, assetTag); in readAssetTag()
216 return assetTag; in readAssetTag()
219 bool writeAssetTag(ipmi::Context::ptr& ctx, const std::string& assetTag) in writeAssetTag() argument
233 dcmi::assetTagIntf, dcmi::assetTagProp, assetTag); in writeAssetTag()
471 std::string& assetTag = assetTagResp.value(); in getAssetTag() local
474 if (assetTag.size() > dcmi::assetTagMaxSize) in getAssetTag()
476 assetTag.resize(dcmi::assetTagMaxSize); in getAssetTag()
479 if (offset >= assetTag.size()) in getAssetTag()
485 if ((offset + count) >= assetTag.size()) in getAssetTag()
[all …]
/openbmc/pldm/platform-mc/
H A Ddbus_impl_fru.cpp45 std::string PldmEntityReq::assetTag(std::string value) in assetTag() function in pldm::dbus_api::PldmEntityReq
47 return assettagserver::assetTag(value); in assetTag()
H A Ddbus_impl_fru.hpp86 std::string assetTag(std::string value);
H A Dterminus.cpp703 inventoryItemBoardInft->assetTag(fruField); in updateInventoryWithFru()
/openbmc/webui-vue/src/components/AppHeader/
H A DAppHeader.vue47 <span class="pl-3 asset-tag">{{ assetTag }}</span>
150 return this.assetTag || this.modelType || this.serialNumber;
152 assetTag() {
153 return this.$store.getters['global/assetTag'];
/openbmc/webui-vue/src/store/modules/HardwareStatus/
H A DChassisStore.js42 assetTag: AssetTag,
H A DProcessorStore.js51 assetTag: AssetTag,
H A DSystemStore.js15 system.assetTag = data.AssetTag;
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventoryTableChassis.vue67 <dt>{{ $t('pageInventory.table.assetTag') }}:</dt>
69 {{ dataFormatter(item.assetTag) }}
H A DInventoryTableSystem.vue59 <dt>{{ $t('pageInventory.table.assetTag') }}:</dt>
61 {{ dataFormatter(item.assetTag) }}
H A DInventoryTableProcessors.vue95 <dt>{{ $t('pageInventory.table.assetTag') }}:</dt>
96 <dd>{{ dataFormatter(item.assetTag) }}</dd>
/openbmc/smbios-mdr/include/
H A Dcpu.hpp363 uint8_t assetTag; member
H A Ddimm.hpp175 uint8_t assetTag; member
/openbmc/s2600wf-misc/hsbp-manager/include/
H A Dutils.hpp40 constexpr const char* assetTag = variable
/openbmc/bmcweb/redfish-core/lib/
H A Dsystems.hpp1758 const std::string& assetTag) in setAssetTag() argument
1765 assetTag](const boost::system::error_code& ec, in setAssetTag()
1806 "AssetTag", assetTag); in setAssetTag()
3177 std::optional<std::string> assetTag; in handleComputerSystemPatch() local
3197 "AssetTag", assetTag, // in handleComputerSystemPatch()
3223 if (assetTag) in handleComputerSystemPatch()
3225 setAssetTag(asyncResp, *assetTag); in handleComputerSystemPatch()
/openbmc/s2600wf-misc/hsbp-manager/src/
H A Dhsbp_manager.cpp892 assetTag); in populateAsset()
942 objServer.add_interface(hsbpItemIface->get_object_path(), assetTag); in run()
1590 assetTag) == objDict.begin()->second.end()) in updateAssets()
/openbmc/smbios-mdr/src/
H A Dmdrv2.cpp912 record["Asset Tag"] = positionToString(memoryInfo->assetTag, in getRecordType()