Home
last modified time | relevance | path

Searched refs:association (Results 1 – 25 of 180) sorted by relevance

12345678

/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Inventory/
H A DItem.interface.yaml23 implement the 'containing' association to provide one or more links to
31 association to provide a link to exactly one Item (usually a Board or
39 association to provide a link to one or more fans.
54 'identified_by' association to provide a link to one or more LED
62 association to provide a link to one or more metrics.
69 implement the 'monitored_by' association to provide a link to the
78 association to provide a link to one or more power supplies.
85 'throttled_by' association to provide a link to throttle.
100 "authenticated_by" association to provide a link to the component
108 "protected_by" association to provide a link to the target trusted
[all …]
/openbmc/s2600wf-misc/callback-manager/include/
H A Dcallback_manager.hpp30 association(objectServer.add_interface(rootPath, associationIface)), in AssociationManager()
34 association->register_property("Associations", std::set<Association>()); in AssociationManager()
37 association->initialize(); in AssociationManager()
42 objectServer.remove_interface(association); in ~AssociationManager()
66 association->set_property("Associations", result); in setLocalAssociations()
93 std::shared_ptr<sdbusplus::asio::dbus_interface> association; member
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-gbs/gbs-ipmi-entity-association-map/
H A Dgbs-ipmi-entity-association-map.bb1 SUMMARY = "GBS IPMI Entity association mapping."
9 ${datadir}/ipmi-entity-association/entity_association_map.json \
13 install -d ${D}${datadir}/ipmi-entity-association
15 ${D}${datadir}/ipmi-entity-association/entity_association_map.json
/openbmc/openbmc/meta-fii/meta-kudo/recipes-kudo/kudo-system/
H A Dkudo-entity-association-map.bb1 UMMARY = "Kudo IPMI Entity association mapping."
9 ${datadir}/ipmi-entity-association/entity_association_map.json \
13 install -d ${D}${datadir}/ipmi-entity-association
15 ${D}${datadir}/ipmi-entity-association/entity_association_map.json
/openbmc/linux/Documentation/security/
H A DSCTP.rst30 @asoc - pointer to sctp association structure.
31 @skb - pointer to skbuff of association packet.
89 association primary.
127 @asoc - pointer to sctp association structure.
136 establishing an association.
147 initiate an association to
156 association.
208 @asoc - pointer to sctp association structure.
209 @skb - pointer to skbuff of association packet.
277 @asoc - pointer to sctp association structure.
[all …]
/openbmc/phosphor-dbus-interfaces/
H A Drequirements.md72 `/.../bar/entity`. The association is what links the `foo` and `bar` aspects of
73 the entity in the dbus path hierarchy. Accordingly, the association should be
76 A made-up example of a peer association might be a `Inventory.Processor`,
78 processor, located under the `.../control` hierarchy. The peer association
84 The end-point names of an association should not codify the types of the
85 interfaces pointed to by the association.
99 - The `{primary element}` is `{primary association}` the `{secondary element}`.
100 - The `{secondary element}` is `{secondary association}` the
104 `{primary element}/{primary association}` with an endpoints property value of
105 `{secondary element}` and `{secondary element}/{secondary association}` with an
[all …]
/openbmc/phosphor-event/
H A Devent_messaged_sdbus.c116 p = strdup(rec->association); in prop_message_assoc()
240 char *message, *severity, *association; in accept_message() local
248 r = sd_bus_message_read(m, "sss", &message, &severity, &association); in accept_message()
262 rec.association = (char*) association; in accept_message()
267 syslog(LOG_NOTICE, "%s %s (%s)", rec.severity, rec.message, rec.association); in accept_message()
272 r = send_log_to_dbus(em, logid, rec.association); in accept_message()
302 rec.association = (char*) "/org/openbmc/inventory/system/chassis/motherboard/dimm3 " \ in method_accept_test_message()
309 syslog(LOG_NOTICE, "%s %s (%s)", rec.severity, rec.message, rec.association); in method_accept_test_message()
313 send_log_to_dbus(em, logid, rec.association); in method_accept_test_message()
425 int send_log_to_dbus(event_manager *em, const uint16_t logid, const char *association) in send_log_to_dbus() argument
[all …]
H A Dmessage.cpp250 hdr.associationlen = getlen(rec->association); in create_log_event()
275 myfile.write((char*) rec->association, hdr.associationlen); in create_log_event()
319 (*rec)->association = new char[hdr.associationlen]; in open()
320 f.read((*rec)->association, hdr.associationlen); in open()
338 delete[] rec->association; in close()
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/
H A DObjectMapper.interface.yaml101 association endpoint on associatedPath
130 association endpoint on associatedPath
160 association with specified endpoint interfaces.
167 "/" and "association"
168 associationPath = subtreePath + "/" + "association"
188 - name: association
191 The endpoint association.
214 "/" and "association"
215 associationPath = subtreePath + "/" + "association"
235 - name: association
[all …]
H A DAssociation.interface.yaml6 association where the parent object is associated to the objects in the
7 Endpoints property, with the association type defined as the name of the
13 An array of association endpoints.
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Association/
H A DDefinitions.interface.yaml10 forward - The type of the association.
11 reverse - The type of the association to create for the endpoint.
12 endpoint - The association endpoint.
/openbmc/dbus-sensors/src/
H A DTachSensor.cpp76 association = objectServer.add_interface( in TachSensor()
78 association::interface); in TachSensor()
90 "/xyz/openbmc_project/inventory/" + name, association::interface); in TachSensor()
111 objServer.remove_interface(association); in ~TachSensor()
309 association(objectServer.add_interface( in RedundancySensor()
311 association::interface)), in RedundancySensor()
314 createAssociation(association, sensorConfiguration); in RedundancySensor()
322 objectServer.remove_interface(association); in ~RedundancySensor()
H A DPwmSensor.cpp177 association = objectServer.add_interface( in PwmSensor()
178 "/xyz/openbmc_project/sensors/fan_pwm/" + name, association::interface); in PwmSensor()
184 createInventoryAssoc(conn, association, sensorConfiguration); in PwmSensor()
188 createAssociation(association, sensorConfiguration); in PwmSensor()
195 objectServer.remove_interface(association); in ~PwmSensor()
H A DNVMeSensor.cpp67 association = objectServer.add_interface( in NVMeSensor()
69 association::interface); in NVMeSensor()
85 objServer.remove_interface(association); in ~NVMeSensor()
H A DUtils.cpp600 std::shared_ptr<sdbusplus::asio::dbus_interface>& association, in createAssociation() argument
603 if (association) in createAssociation()
610 association->register_property("Associations", associations); in createAssociation()
611 association->initialize(); in createAssociation()
619 if (association) in setInventoryAssociation()
625 association->register_property("Associations", associations); in setInventoryAssociation()
626 association->initialize(); in setInventoryAssociation()
665 if (!association) in createInventoryAssoc()
676 [association, path](const boost::system::error_code ec, in createInventoryAssoc()
686 setInventoryAssociation(association, parent, parent); in createInventoryAssoc()
[all …]
H A DPSUSensor.cpp103 association = objectServer.add_interface(dbusPath, association::interface); in PSUSensor()
105 createInventoryAssoc(conn, association, configurationPath); in PSUSensor()
117 objServer.remove_interface(association); in ~PSUSensor()
H A DExternalSensor.cpp62 association = in ExternalSensor()
63 objectServer.add_interface(objectPath, association::interface); in ExternalSensor()
108 objServer.remove_interface(association); in ~ExternalSensor()
/openbmc/linux/arch/mips/include/asm/octeon/
H A Dcvmx-l2c.h299 union cvmx_l2c_tag cvmx_l2c_get_tag(uint32_t association, uint32_t index);
302 static inline union cvmx_l2c_tag cvmx_get_l2c_tag(uint32_t association,
305 static inline union cvmx_l2c_tag cvmx_get_l2c_tag(uint32_t association, in cvmx_get_l2c_tag() argument
308 return cvmx_l2c_get_tag(association, index); in cvmx_get_l2c_tag()
/openbmc/phosphor-objmgr/src/
H A Dhandler.cpp292 const std::vector<std::string>& association = in getAssociatedSubTree() local
294 std::unordered_set<std::string> associationSet(association.begin(), in getAssociatedSubTree()
295 association.end()); in getAssociatedSubTree()
322 const std::vector<std::string>& association = in getAssociatedSubTreePaths() local
324 std::unordered_set<std::string> associationSet(association.begin(), in getAssociatedSubTreePaths()
325 association.end()); in getAssociatedSubTreePaths()
400 const std::string& association, in getAssociatedSubTreeById() argument
410 std::string associationPathStr = subtreePath + "/" + association; in getAssociatedSubTreeById()
427 const std::string& association, in getAssociatedSubTreePathsById() argument
436 std::string associationPathStr = subtreePath + "/" + association; in getAssociatedSubTreePathsById()
H A Dassociations.cpp237 for (const Association& association : associations) in associationChanged() local
242 std::tie(forward, reverse, objectPath) = association; in associationChanged()
525 Association association{thisType, otherType, otherPath}; in findAssociations() local
526 associationData.emplace_back(owner, association); in findAssociations()
625 for (const auto& [owner, association] : associationData) in moveAssociationToPending()
628 const auto& forwardType = std::get<forwardTypePos>(association); in moveAssociationToPending()
629 const auto& reversePath = std::get<reversePathPos>(association); in moveAssociationToPending()
630 const auto& reverseType = std::get<reverseTypePos>(association); in moveAssociationToPending()
/openbmc/smbios-mdr/include/
H A Dcpu.hpp45 using association = typedef
46 sdbusplus::server::xyz::openbmc_project::association::Definitions;
312 Item, association, operationalStatus>
325 Item, association, operationalStatus>( in Cpu()
H A Dpcieslot.hpp31 using association = typedef
32 sdbusplus::server::xyz::openbmc_project::association::Definitions;
35 sdbusplus::server::object_t<PCIeSlot, location, embedded, item, association>
49 association>(bus, objPath.c_str()), in Pcie()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-iommu7 given IOMMU here to allow association of IOMMU to
16 given device here to allow association of device to
/openbmc/docs/architecture/
H A Dobject-mapper.md128 - param: associationPath - the path to look for the association endpoints.
177 # All output must be in the association endpoints
231 - param: associationPath - the path to look for the association endpoints.
255 # All output must be in the association endpoints
349 - forward: this is the name of the forward association object
350 - reverse: this is the name of the reverse association object
367 array that holds the object paths to the other end of the association.
372 If another object, say `pathC`, also has an association to `pathB`, then a
383 Note: The original name of the association definition interface was
404 # Newly created forward association object
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Led/
H A DGroup.interface.yaml14 'identifying' association to provide a link back to a Item.
21 'fault_identifying' association to provide a link back to a Item.

12345678