Home
last modified time | relevance | path

Searched refs:instance (Results 1 – 25 of 459) sorted by relevance

12345678910>>...19

/openbmc/phosphor-host-ipmid/test/
H A Dentitymap_json_unittest.cpp30 {"id" : 1, "instance" : 2}, in TEST()
31 {"id" : 1, "instance" : 3}, in TEST()
32 {"id" : 1, "instance" : 4}, in TEST()
33 {"id" : 1, "instance" : 5} in TEST()
54 {"id" : 1, "instance" : 2}, in TEST()
55 {"id" : 1, "instance" : 3}, in TEST()
56 {"id" : 1, "instance" : 4}, in TEST()
57 {"id" : 1, "instance" : 5} in TEST()
80 {"id" : 1, "instance" : 2}, in TEST()
81 {"id" : 1, "instance" : 3}, in TEST()
[all …]
/openbmc/u-boot/include/configs/
H A Dpcm051.h28 #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
29 "bootcmd_" #devtypel #instance "=" \
30 "setenv mmcdev " #instance"; "\
31 "setenv bootpart " #instance":2 ; "\
34 #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
35 #devtypel #instance " "
37 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
41 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
42 #devtypel #instance " "
H A Domap3_evm.h66 #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
67 "bootcmd_" #devtypel #instance "=" \
68 "setenv mmcdev " #instance "; " \
70 #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
71 #devtypel #instance " "
75 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
76 "bootcmd_" #devtypel #instance "=" \
82 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
83 #devtypel #instance " "
H A Domap3_beagle.h72 #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
73 "bootcmd_" #devtypel #instance "=" \
74 "setenv mmcdev " #instance "; " \
76 #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
77 #devtypel #instance " "
81 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
82 "bootcmd_" #devtypel #instance "=" \
88 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
89 #devtypel #instance " "
H A Dti_omap4_common.h68 #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
69 "bootcmd_" #devtypel #instance "=" \
70 "setenv mmcdev " #instance"; "\
71 "setenv bootpart " #instance":2 ; "\
74 #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
75 #devtypel #instance " "
77 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
78 #devtypel #instance " "
H A Dam335x_evm.h59 #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
60 "bootcmd_" #devtypel #instance "=" \
61 "setenv mmcdev " #instance"; "\
62 "setenv bootpart " #instance":2 ; "\
65 #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ argument
66 #devtypel #instance " "
68 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
72 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
73 #devtypel #instance " "
H A Dxilinx_zynqmp.h177 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ argument
178 "bootcmd_" #devtypel #instance "=sf probe " #instance " 0 0 && " \
182 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ argument
183 #devtypel #instance " "
185 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
186 "bootcmd_" #devtypel #instance "= nand info && " \
190 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
191 #devtypel #instance " "
H A Dzynq-common.h157 #define BOOTENV_DEV_XILINX(devtypeu, devtypel, instance) \ argument
160 #define BOOTENV_DEV_NAME_XILINX(devtypeu, devtypel, instance) \ argument
163 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ argument
168 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ argument
171 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ argument
176 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ argument
179 #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \ argument
183 #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \ argument
/openbmc/qemu/util/
H A Dyank.c27 YankInstance *instance; member
68 static YankInstanceEntry *yank_find_entry(const YankInstance *instance) in yank_find_entry() argument
73 if (yank_instance_equal(entry->instance, instance)) { in yank_find_entry()
80 bool yank_register_instance(const YankInstance *instance, Error **errp) in yank_register_instance() argument
86 if (yank_find_entry(instance)) { in yank_register_instance()
92 entry->instance = QAPI_CLONE(YankInstance, instance); in yank_register_instance()
99 void yank_unregister_instance(const YankInstance *instance) in yank_unregister_instance() argument
104 entry = yank_find_entry(instance); in yank_unregister_instance()
109 qapi_free_YankInstance(entry->instance); in yank_unregister_instance()
113 void yank_register_function(const YankInstance *instance, in yank_register_function() argument
[all …]
/openbmc/openpower-occ-control/
H A Docc_status.cpp28 instance, "STATE", value); in occActive()
52 "INST", instance, "ERROR", e.what()); in occActive()
69 this->managerCallBack(instance, value); in occActive()
79 manager.setSensorValueToNaN(instance); in occActive()
96 this->managerCallBack(instance, value); in occActive()
136 "INST", instance, "ERROR", e.what()); in occActive()
166 FFDC::createOCCResetPEL(instance, d.path, d.err, d.callout, in deviceError()
181 instance); in resetOCC()
185 this->resetCallBack(instance); in resetOCC()
210 "PATH", path, "SENSOR", std::get<0>(sensorMap.at(instance))); in hostControlEvent()
[all …]
H A Docc_manager.cpp201 auto instance = obj->getOccInstanceID(); in checkAllActiveSensors() local
203 auto match = queuedActiveState.find(instance); in checkAllActiveSensors()
209 "INST", instance); in checkAllActiveSensors()
219 "INST", instance); in checkAllActiveSensors()
378 void Manager::resetOccRequest(instanceID instance) in resetOccRequest() argument
383 resetInstance = instance; in resetOccRequest()
386 "INST", instance); in resetOccRequest()
388 else if (instance != resetInstance) in resetOccRequest()
392 "INST", instance, "RINST", resetInstance); in resetOccRequest()
397 void Manager::initiateOccRequest(instanceID instance) in initiateOccRequest() argument
[all …]
H A Dpldm.cpp161 const uint8_t instance = sensorEntry->second; in sensorEvent() local
168 lg2::info("PLDM: OCC{INST} is RUNNING", "INST", instance); in sensorEvent()
175 lg2::info("PLDM: OCC{INST} has now STOPPED", "INST", instance); in sensorEvent()
183 "INST", instance); in sensorEvent()
192 "STATE", eventState, "INST", instance); in sensorEvent()
197 if ((pldmFd > 0) && (instance == pldmResponseOcc)) in sensorEvent()
202 occActiveCallBack(instance, isRunning); in sensorEvent()
214 const uint8_t instance = sensorEntry->second; in sensorEvent() local
216 outstandingHResets.end(), instance); in sensorEvent()
222 "INST", instance); in sensorEvent()
[all …]
H A Docc_manager.hpp119 void sbeTimeout(unsigned int instance);
187 void statusCallBack(instanceID instance, bool status);
191 void resetOccRequest(instanceID instance);
194 void initiateOccRequest(instanceID instance);
270 bool updateOCCActive(instanceID instance, bool status);
283 void sbeHRESETResult(instanceID instance, bool success);
293 bool sbeCanDump(unsigned int instance);
301 void setSBEState(unsigned int instance, enum sbe_state state);
309 struct pdbg_target* getPdbgTarget(unsigned int instance);
H A Docc_ffdc.hpp93 FFDC(EventPtr& event, const fs::path& file, unsigned int instance) : in FFDC() argument
94 Error(event, file, nullptr), instance(instance) in FFDC()
129 static void createOCCResetPEL(unsigned int instance, const char* path,
148 unsigned int instance; member in open_power::occ::FFDC
H A Docc_device.hpp53 unsigned int instance = 0) : in Device() argument
54 devPath(path), instance(instance), statusObject(status), in Device()
61 fs::path("../../sbefifo" + std::to_string(instance + 1)) / in Device()
65 ffdc(event, path / "ffdc", instance), in Device()
176 const unsigned int instance; member in open_power::occ::Device
/openbmc/u-boot/include/
H A Dconfig_distro_bootcmd.h38 #define BOOTENV_DEV_BLKDEV(devtypeu, devtypel, instance) \ argument
39 "bootcmd_" #devtypel #instance "=" \
40 "devnum=" #instance "; " \
43 #define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \ argument
44 #devtypel #instance " "
337 #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \ argument
346 #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \ argument
356 #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \ argument
364 #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \ argument
373 #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance) \ argument
[all …]
/openbmc/phosphor-mrw-tools/
H A Dgen_occ_map.pl60 my $instance = "";
64 $instance = $targetObj->getAttribute($target, "IPMI_INSTANCE");
77 $occHash{$instance} = $sensor;
90 foreach my $instance (sort keys %occHash)
94 print $fh "$instance\n";
96 print $fh "$occHash{$instance}\n";
/openbmc/openbmc-test-automation/ipmi/dcmi/
H A Dtest_dcmi_get_temperature_reading.robot91 ${instance}= Get From Dictionary ${response} instance
92 Set To Dictionary ${tmp} ${instance} ${sensor_dbus}
99 [Arguments] ${ipmi_resp} ${key} ${instance}
104 # instance instance number 1, 2, ..
107 ${dbus_uri}= Get From Dictionary ${dbus_uris} ${instance}
110 ... '${instance}' == '1' ${3}
111 ... '${instance}' == '2' ${5}
126 [Arguments] ${key} ${instance} ${dcmi_reading_value}
130 # instance instance number 1, 2, ..
134 ${dbus_uri}= Get From Dictionary ${dbus_uris} ${instance}
[all …]
/openbmc/qemu/include/qemu/
H A Dyank.h30 bool yank_register_instance(const YankInstance *instance, Error **errp);
42 void yank_unregister_instance(const YankInstance *instance);
57 void yank_register_function(const YankInstance *instance,
72 void yank_unregister_function(const YankInstance *instance,
/openbmc/phosphor-power/phosphor-power-sequencer/src/
H A Dpmbus_driver_device.hpp73 const std::string& driverName = "", size_t instance = 0) : in PMBusDriverDevice() argument
76 driverName{driverName}, instance{instance} in PMBusDriverDevice()
79 services.createPMBus(bus, address, driverName, instance);
99 return instance; in getInstance()
219 size_t instance; member in phosphor::power::sequencer::PMBusDriverDevice
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings/
H A Dcmpi-bindings-0.4.17-sblim-sigsegv.patch24 - if instance.path is not None:
25 - instance.path.namespace = None
26 +# if instance.path is not None:
27 +# instance.path.namespace = None
28 inst = self.proxy.pywbem2cmpi_inst(instance, allow_null_ns)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-extended/corosync/corosync/
H A DCVE-2025-30472.patch26 const struct totemsrp_instance *instance,
37 + log_printf (instance->totemsrp_log_level_security,
44 log_printf (instance->totemsrp_log_level_security,
51 + log_printf (instance->totemsrp_log_level_security,
59 log_printf (instance->totemsrp_log_level_security,
64 - if (check_orf_token_sanity(instance, msg, msg_len, endian_conversion_needed) == -1) {
65 + if (check_orf_token_sanity(instance, msg, msg_len, sizeof(token_storage),
/openbmc/phosphor-power/
H A Ddevice.hpp33 Device(const std::string& name, size_t inst) : name(name), instance(inst) {} in Device()
40 return instance; in getInstance()
77 const size_t instance; member in phosphor::power::Device
/openbmc/witherspoon-pfault-analysis/
H A Ddevice.hpp33 Device(const std::string& name, size_t inst) : name(name), instance(inst) {} in Device()
40 return instance; in getInstance()
77 const size_t instance; member in witherspoon::power::Device
/openbmc/u-boot/drivers/mmc/
H A Dsti_sdhci.c20 int instance; member
42 if (plat->instance) { in sti_mmc_core_config()
53 if (plat->instance) { in sti_mmc_core_config()
84 plat->instance = 1; in sti_sdhci_probe()
87 plat->instance = 0; in sti_sdhci_probe()

12345678910>>...19