Lines Matching full:auto

11 static constexpr auto KEYWORD_SIZE = 2;
12 static constexpr auto RECORD_SIZE = 4;
13 static constexpr auto INDENTATION = 4;
14 static constexpr auto SUCCESS = 0;
15 static constexpr auto FAILURE = -1;
18 static constexpr auto STR_CMP_SUCCESS = 0;
20 constexpr auto inventoryManagerService =
22 constexpr auto baseInventoryPath = "/xyz/openbmc_project/inventory";
23 constexpr auto pimPersistPath = "/var/lib/phosphor-inventory-manager";
24 constexpr auto ipzVpdInfPrefix = "com.ibm.ipzvpd.";
26 constexpr auto vpdManagerService = "com.ibm.VPD.Manager";
27 constexpr auto vpdManagerObjectPath = "/com/ibm/VPD/Manager";
28 constexpr auto vpdManagerInfName = "com.ibm.VPD.Manager";
29 constexpr auto inventoryItemInf = "xyz.openbmc_project.Inventory.Item";
30 constexpr auto viniInf = "com.ibm.ipzvpd.VINI";
31 constexpr auto locationCodeInf = "com.ibm.ipzvpd.Location";
32 constexpr auto assetInf = "xyz.openbmc_project.Inventory.Decorator.Asset";
33 constexpr auto objectMapperService = "xyz.openbmc_project.ObjectMapper";
34 constexpr auto objectMapperObjectPath = "/xyz/openbmc_project/object_mapper";
35 constexpr auto objectMapperInfName = "xyz.openbmc_project.ObjectMapper";
36 constexpr auto chassisStateManagerService = "xyz.openbmc_project.State.Chassis";
37 constexpr auto chassisStateManagerObjectPath =
39 constexpr auto chassisStateManagerInfName = "xyz.openbmc_project.State.Chassis";
40 constexpr auto dbusService = "org.freedesktop.DBus";
41 constexpr auto dbusObjectPath = "/org/freedesktop/DBus";
42 constexpr auto dbusInterface = "org.freedesktop.DBus";
43 constexpr auto biosConfigMgrService = "xyz.openbmc_project.BIOSConfigManager";
44 constexpr auto networkInf =
46 constexpr auto pcieSlotInf = "xyz.openbmc_project.Inventory.Item.PCIeSlot";
47 constexpr auto slotNumInf = "xyz.openbmc_project.Inventory.Decorator.Slot";
48 constexpr auto i2cDeviceInf =
50 constexpr auto vpdManagerProcessName = "vpd-manager";
51 constexpr auto biosConfigMgrObjPath =
53 constexpr auto biosConfigMgrInterface =
55 constexpr auto waitVpdParserProcessName = "wait-vpd-parsers";
57 constexpr auto KwdIM = "IM";
58 constexpr auto badVpdPath = "/var/lib/vpd/dumps";
65 static constexpr auto VALUE_0 = 0;
66 static constexpr auto VALUE_1 = 1;
67 static constexpr auto VALUE_2 = 2;
68 static constexpr auto VALUE_3 = 3;
69 static constexpr auto VALUE_4 = 4;
70 static constexpr auto VALUE_5 = 5;
71 static constexpr auto VALUE_6 = 6;
72 static constexpr auto VALUE_7 = 7;
73 static constexpr auto VALUE_8 = 8;
74 static constexpr auto VALUE_32 = 32;