Home
last modified time | relevance | path

Searched full:interface (Results 1 – 25 of 6294) sorted by relevance

12345678910>>...252

/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dinterface.aserver.hpp.mako3 #include <sdbusplus/server/interface.hpp>
8 % for h in interface.cpp_includes():
11 #include <${interface.headerFile()}>
13 namespace sdbusplus::aserver::${interface.cppNamespace()}
20 class ${interface.classname};
24 struct ${interface.classname} :
27 sdbusplus::async::server_t<Instance, details::${interface.classname}>,
28 details::${interface.classname}<Instance, Server>>
31 ${interface.classname}(Args&&... args) :
34 sdbusplus::async::server_t<Instance, details::${interface.classname}>,
[all …]
H A Dinterface.server.hpp.mako9 % for h in interface.cpp_includes():
12 #include <${interface.headerFile()}>
14 namespace sdbusplus::server::${interface.cppNamespace()}
17 class ${interface.classname} :
18 public sdbusplus::common::${interface.cppNamespacedClass()}
30 ${interface.classname}() = delete;
31 ${interface.classname}(const ${interface.classname}&) = delete;
32 ${interface.classname}& operator=(const ${interface.classname}&) = delete;
33 ${interface.classname}(${interface.classname}&&) = delete;
34 ${interface.classname}& operator=(${interface.classname}&&) = delete;
[all …]
H A Dinterface.server.cpp.mako9 #include <${interface.headerFile("server")}>
11 namespace sdbusplus::server::${interface.cppNamespace()}
14 % for m in interface.methods:
15 ${ m.cpp_prototype(loader, interface=interface, ptype='callback-cpp') }
18 % for s in interface.signals:
19 ${ s.cpp_prototype(loader, interface=interface, ptype='callback-cpp') }
22 % for p in interface.properties:
23 ${ p.render(loader, "property.server.cpp.mako", property=p, interface=interface) }
26 % if interface.properties:
27 void ${interface.classname}::setPropertyByName(const std::string& _name,
[all …]
H A Dinterface.client.hpp.mako7 % for h in interface.cpp_includes():
10 #include <${interface.headerFile()}>
12 namespace sdbusplus::client::${interface.cppNamespace()}
19 class ${interface.classname};
25 * sdbusplus::async::client_t<${interface.classname}>() or
26 * ${interface.classname}() both construct an equivalent instance.
29 struct ${interface.classname} :
31 sdbusplus::async::client_t<details::${interface.classname}>,
32 details::${interface.classname}<Client, Proxy>>
35 ${interface.classname}(Args&&... args) :
[all …]
H A Dinterface.common.hpp.mako14 return set(p.cppTypeParam(interface.name) for p in
15 interface.properties);
18 namespace sdbusplus::common::${interface.cppNamespace()}
21 struct ${interface.classname}
23 static constexpr auto interface = "${interface.name}";
25 % for e in interface.enums:
34 % if interface.properties:
37 % for p in interface.properties:
38 ${p.cppTypeParam(interface.name)} ${p.snake_case}${p.default_value(interface.name)};
48 % for p in interface.paths:
[all …]
/openbmc/linux/arch/mips/include/asm/octeon/
Dcvmx-spi.h
/openbmc/linux/arch/mips/cavium-octeon/executive/
Dcvmx-helper-xaui.c
Dcvmx-spi.c
Dcvmx-helper.c
Dcvmx-helper-sgmii.c
Dcvmx-helper-rgmii.c
/openbmc/linux/drivers/net/ethernet/intel/fm10k/
Dfm10k_netdev.c
/openbmc/sdbusplus/include/sdbusplus/server/
H A Dinterface.hpp18 namespace interface namespace
21 /** @class interface
22 * @brief Provide a C++ holder for dbus interface instances.
24 * Wraps sd_bus_add_object_vtable so that the interface is registered
28 * implementation of a class representing a dbus interface, which will be
31 * inheritance, which might be a natural option. Instead, a dbus interface
32 * implementation should 'has-a' server::interface with a name sufficiently
35 struct interface final : private sdbusplus::bus::details::bus_friend struct
45 interface() = delete;
46 interface(const interface&) = delete;
[all …]
/openbmc/phosphor-fan-presence/
H A Dsdbusplus.hpp49 const std::string& interface, const std::string& method) : in DBusMethodError() argument
51 interface, method)), in DBusMethodError()
52 busName(busName), path(path), interface(interface), method(method) in DBusMethodError()
57 const std::string interface; member in phosphor::fan::util::DBusMethodError
70 DBusServiceError(const std::string& path, const std::string& interface) : in DBusServiceError() argument
72 std::format("DBus service lookup failed: {} {}", path, interface)), in DBusServiceError()
73 path(path), interface(interface) in DBusServiceError()
77 const std::string interface; member in phosphor::fan::util::DBusServiceError
89 const std::string& path, const std::string& interface, in DBusPropertyError() argument
91 DBusError(msg + std::format(": {} {} {} {}", busName, path, interface, in DBusPropertyError()
[all …]
/openbmc/linux/drivers/gpu/drm/logicvc/
Dlogicvc_interface.c
/openbmc/phosphor-webui/app/configuration/controllers/
H A Dnetwork-controller.js21 $scope.interface = {};
33 $scope.interface = $scope.network.interfaces[interfaceId];
34 // Copy the interface so we know later if changes were made to the page
35 $scope.oldInterface = JSON.parse(JSON.stringify($scope.interface));
41 $scope.interface.Nameservers.push('');
45 $scope.interface.Nameservers.splice(index, 1);
49 $scope.interface.ipv4.values.push(
56 if ($scope.interface.ipv4.values[index].id) {
57 $scope.ipv4sToDelete.push($scope.interface.ipv4.values[index]);
59 $scope.interface.ipv4.values.splice(index, 1);
[all …]
/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-net.c29 static void virtio_net_cleanup(QVirtioNet *interface) in virtio_net_cleanup() argument
33 for (i = 0; i < interface->n_queues; i++) { in virtio_net_cleanup()
34 qvirtqueue_cleanup(interface->vdev->bus, interface->queues[i], alloc); in virtio_net_cleanup()
36 g_free(interface->queues); in virtio_net_cleanup()
39 static void virtio_net_setup(QVirtioNet *interface) in virtio_net_setup() argument
41 QVirtioDevice *vdev = interface->vdev; in virtio_net_setup()
52 interface->n_queues = qvirtio_config_readw(vdev, 8) * 2; in virtio_net_setup()
54 interface->n_queues = 2; in virtio_net_setup()
56 interface->n_queues++; /* Account for the ctrl queue */ in virtio_net_setup()
58 interface->queues = g_new(QVirtQueue *, interface->n_queues); in virtio_net_setup()
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/
H A D0009-fix-cmake-dependency-race.patch8 /a/builder/mnt/build-oe/tmp-glibc/work/raspberrypi2-oe-linux-gnueabi/userland/git-r5/git/interface/…
9 fatal error: interface/vmcs_host/wayland-dispmanx-server-protocol.h: No
12 interface/khronos/CMakeFiles/EGL_static.dir/build.make:773: recipe for
13 target 'interface/khronos/CMakeFiles/EGL_static.dir/ext/egl_wayland.c.o'
16 [interface/khronos/CMakeFiles/EGL_static.dir/ext/egl_wayland.c.o] Error 1
22 interface/vcos/pthreads/CMakeLists.txt | 8 ++++++++
23 interface/vmcs_host/CMakeLists.txt | 8 --------
24 interface/vmcs_host/vc_vchi_dispmanx.h | 2 +-
27 diff --git a/interface/vcos/pthreads/CMakeLists.txt b/interface/vcos/pthreads/CMakeLists.txt
29 --- a/interface/vcos/pthreads/CMakeLists.txt
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DEthernetInterface.v1_12_4.json55 "description": "DHCPv4 configuration for this interface.",
73 … "description": "An indication of whether DHCP v4 is enabled on this Ethernet interface.",
74 …scription": "This property shall indicate whether DHCP v4 is enabled for this Ethernet interface.",
91 "description": "DHCPv4 fallback address method for this interface.",
97 … "description": "An indication of whether this interface uses DHCP v4-supplied DNS servers.",
98 …"longDescription": "This property shall indicate whether the interface uses DHCP v4-supplied DNS s…
107 … "description": "An indication of whether this interface uses a DHCP v4-supplied domain name.",
108 …"longDescription": "This property shall indicate whether the interface uses a DHCP v4-supplied dom…
117 … "description": "An indication of whether this interface uses a DHCP v4-supplied gateway.",
118 …"longDescription": "This property shall indicate whether the interface uses a DHCP v4-supplied gat…
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DEthernetInterface.v1_12_4.json55 "description": "DHCPv4 configuration for this interface.",
73 … "description": "An indication of whether DHCP v4 is enabled on this Ethernet interface.",
74 …scription": "This property shall indicate whether DHCP v4 is enabled for this Ethernet interface.",
91 "description": "DHCPv4 fallback address method for this interface.",
97 … "description": "An indication of whether this interface uses DHCP v4-supplied DNS servers.",
98 …"longDescription": "This property shall indicate whether the interface uses DHCP v4-supplied DNS s…
107 … "description": "An indication of whether this interface uses a DHCP v4-supplied domain name.",
108 …"longDescription": "This property shall indicate whether the interface uses a DHCP v4-supplied dom…
117 … "description": "An indication of whether this interface uses a DHCP v4-supplied gateway.",
118 …"longDescription": "This property shall indicate whether the interface uses a DHCP v4-supplied gat…
[all …]
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Fuji/
H A Devents.json8 "interface": "xyz.openbmc_project.Inventory.Item", string
37 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
42 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
47 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
52 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
83 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
112 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
141 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
170 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
201 "interface": "xyz.openbmc_project.Inventory.Item", string
[all …]
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Everest/
H A Devents.json8 "interface": "xyz.openbmc_project.Inventory.Item", string
37 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
42 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
47 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
52 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
83 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
112 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
141 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
170 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
201 "interface": "xyz.openbmc_project.Inventory.Item", string
[all …]
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Rainier4U/
H A Devents.json8 "interface": "xyz.openbmc_project.Inventory.Item", string
37 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
42 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
47 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
52 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
57 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
62 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
92 "interface": "xyz.openbmc_project.Inventory.Item", string
97 "interface": "org.open_power.OCC.Status", string
102 "interface": "xyz.openbmc_project.Sensor.Value", string
[all …]
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.BlueRidge4U/
H A Devents.json8 "interface": "xyz.openbmc_project.Inventory.Item", string
37 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
42 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
47 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
52 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
57 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
62 "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus", string
92 "interface": "xyz.openbmc_project.Inventory.Item", string
97 "interface": "org.open_power.OCC.Status", string
102 "interface": "xyz.openbmc_project.Sensor.Value", string
[all …]
/openbmc/phosphor-inventory-manager/test/
H A Dinterface_ops_test.cpp117 Interface i; in TEST()
118 sdbusplus::SdBusMock interface; in TEST() local
123 auto b = sdbusplus::get_mocked_new(&interface); in TEST()
134 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
135 sdbusplus::SdBusMock interface; in TEST() local
140 auto b = sdbusplus::get_mocked_new(&interface); in TEST()
151 Interface i; in TEST()
152 sdbusplus::SdBusMock interface; in TEST() local
157 auto b = sdbusplus::get_mocked_new(&interface); in TEST()
168 Interface i{{"foo"s, static_cast<int64_t>(1ll)}}; in TEST()
[all …]

12345678910>>...252