/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/ |
H A D | Triggers_v1.xml | 4 <!--# Redfish Schema: Triggers v1.4.0 --> 34 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Triggers"> 38 <EntityType Name="Triggers" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 39 …<Annotation Term="OData.Description" String="The `Triggers` schema describes a trigger condition t… 49 … <Annotation Term="OData.Description" String="Triggers can be updated to configure them."/> 55 <Annotation Term="OData.Description" String="Triggers can be deleted."/> 60 <String>/redfish/v1/TelemetryService/Triggers/{TriggersId}</String> 66 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Triggers.v1_0_0"> 70 <EntityType Name="Triggers" BaseType="Triggers.Triggers"> 71 <Property Name="MetricType" Type="Triggers.v1_0_0.MetricTypeEnum"> [all …]
|
H A D | TriggersCollection_v1.xml | 27 <edmx:Include Namespace="Triggers"/> 37 … <Annotation Term="OData.Description" String="The collection of `Triggers` resource instances."/> 38 …iption" String="This resource shall represent a resource collection of `Triggers` instances for a … 42 …<Annotation Term="OData.Description" String="Create triggers through a `POST` to the trigger colle… 57 <String>/redfish/v1/TelemetryService/Triggers</String> 60 <NavigationProperty Name="Members" Type="Collection(Triggers.Triggers)">
|
/openbmc/bmcweb/redfish-core/schema/dmtf/installed/ |
H A D | Triggers_v1.xml | 4 <!--# Redfish Schema: Triggers v1.4.0 --> 34 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Triggers"> 38 <EntityType Name="Triggers" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 39 …<Annotation Term="OData.Description" String="The `Triggers` schema describes a trigger condition t… 49 … <Annotation Term="OData.Description" String="Triggers can be updated to configure them."/> 55 <Annotation Term="OData.Description" String="Triggers can be deleted."/> 60 <String>/redfish/v1/TelemetryService/Triggers/{TriggersId}</String> 66 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Triggers.v1_0_0"> 70 <EntityType Name="Triggers" BaseType="Triggers.Triggers"> 71 <Property Name="MetricType" Type="Triggers.v1_0_0.MetricTypeEnum"> [all …]
|
H A D | TriggersCollection_v1.xml | 27 <edmx:Include Namespace="Triggers"/> 37 … <Annotation Term="OData.Description" String="The collection of `Triggers` resource instances."/> 38 …iption" String="This resource shall represent a resource collection of `Triggers` instances for a … 42 …<Annotation Term="OData.Description" String="Create triggers through a `POST` to the trigger colle… 57 <String>/redfish/v1/TelemetryService/Triggers</String> 60 <NavigationProperty Name="Members" Type="Collection(Triggers.Triggers)">
|
/openbmc/linux/Documentation/iio/ |
D | iio_configfs.rst |
|
/openbmc/phosphor-fan-presence/control/templates/ |
H A D | defs.mako | 97 %if ('timer' in event['triggers']) and \ 98 (event['triggers']['timer'] is not None): 100 ${event['triggers']['timer']['interval']}, 101 ${event['triggers']['timer']['type']} 104 %if ('signals' in event['triggers']) and \ 105 (event['triggers']['signals'] is not None): 106 %for s in event['triggers']['signals']: 128 %if ('init' in event['triggers']): 129 %for i in event['triggers']['init']:
|
H A D | fan_zone_defs.cpp.mako | 14 #include "triggers.hpp" 150 %if ('timer' in event['pc']['triggers']) and \ 151 (event['pc']['triggers']['timer'] is not None): 153 ${event['pc']['triggers']['pctime']['interval']}, 154 ${event['pc']['triggers']['pctime']['type']} 157 %if ('pcsigs' in event['pc']['triggers']) and \ 158 (event['pc']['triggers']['pcsigs'] is not None): 159 %for s in event['pc']['triggers']['pcsigs']: 181 %if ('init' in event['pc']['triggers']): 182 %for i in event['pc']['triggers']['init']:
|
/openbmc/phosphor-fan-presence/control/ |
H A D | meson.build | 16 include_dirs += ['./json', './json/actions', './json/triggers'] 42 'json/triggers/init.cpp', 43 'json/triggers/parameter.cpp', 44 'json/triggers/signal.cpp', 45 'json/triggers/timer.cpp', 80 'triggers.cpp',
|
H A D | gen-fan-zone-defs.py | 176 if ("timer" in event["triggers"]) and ( 177 event["triggers"]["timer"] is not None 180 e += "\t" + event["triggers"]["timer"]["interval"] + ",\n" 181 e += "\t" + event["triggers"]["timer"]["type"] + "\n" 184 if ("signals" in event["triggers"]) and ( 185 event["triggers"]["signals"] is not None 187 for s in event["triggers"]["signals"]: 222 if "init" in event["triggers"]: 223 for i in event["triggers"]["init"]: 595 # Add event triggers [all …]
|
/openbmc/bmcweb/redfish-core/lib/ |
H A D | trigger.hpp | 12 #include "generated/enums/triggers.hpp" 68 inline triggers::TriggerActionEnum toRedfishTriggerAction( in toRedfishTriggerAction() 74 return triggers::TriggerActionEnum::RedfishMetricReport; in toRedfishTriggerAction() 79 return triggers::TriggerActionEnum::RedfishEvent; in toRedfishTriggerAction() 84 return triggers::TriggerActionEnum::LogToLogService; in toRedfishTriggerAction() 86 return triggers::TriggerActionEnum::Invalid; in toRedfishTriggerAction() 185 inline triggers::ThresholdActivation toRedfishActivation( in toRedfishActivation() 190 return triggers::ThresholdActivation::Either; in toRedfishActivation() 196 return triggers::ThresholdActivation::Decreasing; in toRedfishActivation() 202 return triggers::ThresholdActivation::Increasing; in toRedfishActivation() [all …]
|
/openbmc/linux/Documentation/trace/coresight/ |
D | coresight-ect.rst |
|
/openbmc/linux/tools/testing/selftests/powerpc/dexcr/ |
D | dexcr.c |
|
/openbmc/phosphor-fan-presence/control/json/ |
H A D | event.cpp | 60 // Don't call the powerOn or powerOff triggers in enable() 271 if (!jsonObj.contains("triggers")) in setTriggers() 273 lg2::error("Missing required event triggers list", "JSON", in setTriggers() 275 throw std::runtime_error("Missing required event triggers list"); in setTriggers() 277 for (const auto& jsonTrig : jsonObj["triggers"]) in setTriggers() 288 auto trigFunc = trigger::triggers.find(tClass); in setTriggers() 289 if (trigFunc != trigger::triggers.end()) in setTriggers() 297 // Construct list of available triggers in setTriggers() 299 std::next(trigger::triggers.begin()), trigger::triggers.end(), in setTriggers() 300 trigger::triggers.begin()->first, [](auto list, auto trig) { in setTriggers() [all …]
|
H A D | event.hpp | 42 * are made up of groups of sensors, triggers from those sensors, and actions 43 * to be run when a trigger occurs. The triggers and actions configured must be 77 * event triggers, etc... 82 * @brief Call any power on triggers 87 * @brief Call any power off triggers 180 * @brief Parse and set the event's triggers 184 * Sets the list of triggers for the event
|
/openbmc/telemetry/src/ |
H A D | trigger_manager.cpp | 69 triggers.erase( in removeTrigger() 70 std::remove_if(triggers.begin(), triggers.end(), in removeTrigger() 72 triggers.end()); in removeTrigger() 113 if (triggers.size() >= maxTriggers) in verifyAddTrigger() 132 triggers, [](const auto& trigger) { return trigger->getId(); }); in addTrigger() 139 triggers.emplace_back(triggerFactory->make( in addTrigger() 143 return *triggers.back(); in addTrigger()
|
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Fuji/ |
H A D | events.json | 12 "triggers": [ array 56 "triggers": [ array 87 "triggers": [ array 116 "triggers": [ array 145 "triggers": [ array 174 "triggers": [ array 235 "triggers": [ array 302 "triggers": [ array 336 "triggers": [ array 500 "triggers": [ array [all …]
|
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Everest/ |
H A D | events.json | 12 "triggers": [ array 56 "triggers": [ array 87 "triggers": [ array 116 "triggers": [ array 145 "triggers": [ array 174 "triggers": [ array 235 "triggers": [ array 302 "triggers": [ array 336 "triggers": [ array 500 "triggers": [ array [all …]
|
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.BlueRidge2U/ |
H A D | events.json | 12 "triggers": [ array 66 "triggers": [ array 97 "triggers": [ array 126 "triggers": [ array 155 "triggers": [ array 184 "triggers": [ array 213 "triggers": [ array 242 "triggers": [ array 308 "triggers": [ array 380 "triggers": [ array [all …]
|
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Rainier2U/ |
H A D | events.json | 12 "triggers": [ array 66 "triggers": [ array 97 "triggers": [ array 126 "triggers": [ array 155 "triggers": [ array 184 "triggers": [ array 213 "triggers": [ array 242 "triggers": [ array 308 "triggers": [ array 380 "triggers": [ array [all …]
|
/openbmc/linux/tools/testing/selftests/ftrace/test.d/ftrace/ |
D | func_traceonoff_triggers.tc |
|
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Balcones/ |
H A D | events.json | 12 "triggers": [ array 46 "triggers": [ array 101 "triggers": [ array 168 "triggers": [ array 202 "triggers": [ array 291 "triggers": [ array 328 "triggers": [ array 370 "triggers": [ array 412 "triggers": [ array 454 "triggers": [ array [all …]
|
/openbmc/linux/Documentation/translations/zh_CN/iio/ |
D | iio_configfs.rst |
|
/openbmc/linux/Documentation/ABI/testing/ |
D | sysfs-bus-coresight-devices-cti |
|
D | configfs-iio |
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/ |
H A D | TriggersCollection.json | 14 "description": "The collection of `Triggers` resource instances.", 15 "longDescription": "This resource shall represent a resource collection of `Triggers` instances for a Redfish implementation.", 57 "$ref": "http://redfish.dmtf.org/schemas/v1/Triggers.json#/definitions/Triggers" 93 "/redfish/v1/TelemetryService/Triggers"
|