/openbmc/qemu/util/ |
H A D | vhost-user-server.c | 13 #include "qemu/vhost-user-server.h" 20 * vhost_user_server_stop() from the main loop thread. Starting the server 90 void vhost_user_server_inc_in_flight(VuServer *server) in vhost_user_server_inc_in_flight() argument 92 assert(!server->wait_idle); in vhost_user_server_inc_in_flight() 93 qatomic_inc(&server->in_flight); in vhost_user_server_inc_in_flight() 96 void vhost_user_server_dec_in_flight(VuServer *server) in vhost_user_server_dec_in_flight() argument 98 if (qatomic_fetch_dec(&server->in_flight) == 1) { in vhost_user_server_dec_in_flight() 99 if (server->wait_idle) { in vhost_user_server_dec_in_flight() 100 aio_co_wake(server->co_trip); in vhost_user_server_dec_in_flight() 105 bool vhost_user_server_has_in_flight(VuServer *server) in vhost_user_server_has_in_flight() argument [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/freeradius/files/ |
H A D | 0013-raddb-certs-Makefile-fix-the-occasional-verification.patch | 11 openssl pkcs12 -in server.p12 -out server.pem -passin pass:'whatever' -passout pass:'whatever' 12 chmod g+r server.pem 13 C = FR, ST = Radius, O = Example Inc., CN = Example Server Certificate, emailAddress = admin@exampl… 17 error server.pem: verification failed 18 make: *** [Makefile:107: server.vrfy] Error 2 20 It seems the ca.pem mismatchs server.pem which results in failing to 21 execute "openssl verify -CAfile ca.pem server.pem", so add to check 35 @@ -59,7 +59,7 @@ passwords.mk: server.cnf ca.cnf client.cnf inner-server.cnf 69 server.csr server.key: server.cnf 70 - $(OPENSSL) req -new -out server.csr -keyout server.key -config ./server.cnf [all …]
|
H A D | 0012-raddb-certs-Makefile-fix-the-existed-certificate-err.patch | 22 Add the check to fix the above error and it does the same for server.crt. 35 @@ -92,7 +92,7 @@ server.csr server.key: server.cnf 36 chmod g+r server.key 38 server.crt: ca.key ca.pem server.csr 39 …key -cert ca.pem -in server.csr -key $(PASSWORD_CA) -out server.crt -extensions xpserver_ext -ext… 40 …server.crt ] || $(OPENSSL) ca -batch -keyfile ca.key -cert ca.pem -in server.csr -key $(PASSWORD_… 42 server.p12: server.crt 43 …$(OPENSSL) pkcs12 -export -in server.crt -inkey server.key -out server.p12 -passin pass:$(PASSWOR…
|
/openbmc/qemu/contrib/ivshmem-server/ |
H A D | ivshmem-server.c | 15 #include "ivshmem-server.h" 18 #define IVSHMEM_SERVER_DEBUG(server, fmt, ...) do { \ argument 19 if ((server)->verbose) { \ 71 /* free a peer when the server advertises a disconnection or when the 72 * server is freed */ 74 ivshmem_server_free_peer(IvshmemServer *server, IvshmemServerPeer *peer) in ivshmem_server_free_peer() argument 79 IVSHMEM_SERVER_DEBUG(server, "free peer %" PRId64 "\n", peer->id); in ivshmem_server_free_peer() 81 QTAILQ_REMOVE(&server->peer_list, peer, next); in ivshmem_server_free_peer() 84 QTAILQ_FOREACH(other_peer, &server->peer_list, next) { in ivshmem_server_free_peer() 97 ivshmem_server_send_initial_info(IvshmemServer *server, IvshmemServerPeer *peer) in ivshmem_server_send_initial_info() argument [all …]
|
H A D | ivshmem-server.h | 13 * The ivshmem server is a daemon that creates a unix socket in listen 15 * unix socket. For each client, the server will create some eventfd 19 * "profixied" by the server. 25 * The ivshmem server is also able to share the file descriptor 36 * Maximum number of notification vectors supported by the server 43 * Each time a client connects to an ivshmem server, a new 57 * Structure describing an ivshmem server 59 * This structure stores all information related to our server: the name 60 * of the server unix socket and the list of connected peers. 76 * Initialize an ivshmem server [all …]
|
/openbmc/obmc-ikvm/ |
H A D | ikvm_server.cpp | 18 Server::Server(const Args& args, Input& i, Video& v) : in Server() function in ikvm::Server 25 server = rfbGetScreen(&argc, commandLine.argv, video.getWidth(), in Server() 29 if (!server) in Server() 40 server->screenData = this; in Server() 41 server->desktopName = "OpenBMC IKVM"; in Server() 42 server->frameBuffer = framebuffer.data(); in Server() 43 server->newClientHook = newClient; in Server() 44 server->cursor = rfbMakeXCursor(cursorWidth, cursorHeight, (char*)cursor, in Server() 46 server->cursor->xhot = 1; in Server() 47 server->cursor->yhot = 1; in Server() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/server/ |
H A D | xmlrpcserver.py | 2 # BitBake XMLRPC Server Interface 13 from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler 14 import bb.server.xmlrpcclient 22 # "Bitbake-token" field (this comes from the server). If the two are not 23 # equal, it is assumed that a client is trying to connect to the server 24 # while another client is connected to the server. In this case, a 503 error 27 def __init__(self, request, client_address, server): argument 28 self.server = server 29 SimpleXMLRPCRequestHandler.__init__(self, request, client_address, server) 36 if 0 and remote_token != self.server.connection_token and remote_token != "observer": [all …]
|
/openbmc/obmc-console/ |
H A D | console-server.c | 2 * Console server process for OpenBMC 43 #include "console-server.h" 72 console_server_find_released_pollfd(struct console_server *server) in console_server_find_released_pollfd() argument 74 for (size_t i = 0; i < server->capacity_pollfds; i++) { in console_server_find_released_pollfd() 75 struct pollfd *p = &server->pollfds[i]; in console_server_find_released_pollfd() 83 // returns the index of that pollfd in server->pollfds 84 // we cannot return a pointer because 'realloc' may move server->pollfds 85 ssize_t console_server_request_pollfd(struct console_server *server, int fd, in console_server_request_pollfd() argument 91 index = console_server_find_released_pollfd(server); in console_server_request_pollfd() 94 const size_t newcap = server->capacity_pollfds + 1; in console_server_request_pollfd() [all …]
|
H A D | console-mux.c | 9 #include "console-server.h" 99 console_mux_release_gpio_lines(struct console_server *server) in console_mux_release_gpio_lines() argument 101 for (unsigned long i = 0; i < server->mux->n_mux_gpios; i++) { in console_mux_release_gpio_lines() 102 struct console_gpio *gpio = &server->mux->mux_gpios[i]; in console_mux_release_gpio_lines() 112 console_mux_request_gpio_lines(struct console_server *server, in console_mux_request_gpio_lines() argument 119 for (server->mux->n_mux_gpios = 0; *current; in console_mux_request_gpio_lines() 120 server->mux->n_mux_gpios++) { in console_mux_request_gpio_lines() 121 size_t i = server->mux->n_mux_gpios; in console_mux_request_gpio_lines() 123 &server->mux->mux_gpios[i], ¤t); in console_mux_request_gpio_lines() 125 console_mux_release_gpio_lines(server); in console_mux_request_gpio_lines() [all …]
|
H A D | console-dbus.c | 25 #include "console-server.h" 41 tty_init_termios(console->server); in tty_change_baudrate() 53 rc = type->baudrate(handler, console->server->tty.uart.baud); in tty_change_baudrate() 86 assert(console->server->tty.type == TTY_DEVICE_UART); in set_baud_handler() 87 console->server->tty.uart.baud = speed; in set_baud_handler() 103 struct console_server *server = console->server; in get_baud_handler() local 107 assert(server->tty.type == TTY_DEVICE_UART); in get_baud_handler() 108 baudrate = parse_baud_to_int(server->tty.uart.baud); in get_baud_handler() 110 warnx("Invalid baud rate: '%d'", server->tty.uart.baud); in get_baud_handler() 167 int dbus_server_init(struct console_server *server) in dbus_server_init() argument [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/ |
H A D | rp-pppoe_3.15.bb | 1 SUMMARY = "A user-mode PPPoE client and server suite for Linux" 14 file://pppoe-server.default \ 15 file://pppoe-server.init \ 16 file://pppoe-server.service \ 32 install -m 0644 ${UNPACKDIR}/pppoe-server.service ${D}${systemd_unitdir}/system 33 sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service 34 sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service 44 install -m 0644 ${UNPACKDIR}/pppoe-server.default ${D}${sysconfdir}/default/pppoe-server 45 install -m 0755 ${UNPACKDIR}/pppoe-server.init ${D}${sysconfdir}/init.d/pppoe-server 51 SYSTEMD_PACKAGES = "${PN}-server" [all …]
|
/openbmc/phosphor-logging/phosphor-rsyslog-config/ |
H A D | server-conf.hpp | 3 #include "xyz/openbmc_project/Network/Client/server.hpp" 7 #include <sdbusplus/server/object.hpp> 17 using NetworkClient = sdbusplus::xyz::openbmc_project::Network::server::Client; 18 using Iface = sdbusplus::server::object_t<NetworkClient>; 21 /** @class Server 22 * @brief Configuration for rsyslog server 25 * provide remote rsyslog server's address and port. 27 class Server : public Iface class 30 Server() = delete; 31 Server(const Server&) = delete; [all …]
|
/openbmc/sdbusplus/test/gen/ |
H A D | test_aserver_multiple_interfaces.cpp | 1 #include "server/Test/aserver.hpp" 2 #include "server/Test/client.hpp" 3 #include "server/Test2/aserver.hpp" 4 #include "server/Test2/client.hpp" 5 #include "server/Test3/aserver.hpp" 17 auto x = std::variant<sdbusplus::common::server::Test::EnumOne, std::string, in constructInterfaces() 18 sdbusplus::common::server::Test::EnumTwo>( in constructInterfaces() 19 sdbusplus::common::server::Test::EnumOne::OneA); in constructInterfaces() 21 sdbusplus::common::server::Test::properties_t props{ in constructInterfaces() 24 sdbusplus::common::server::Test2::properties_t props2{4200, 2}; in constructInterfaces() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/ |
H A D | index.html | 12 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.bz2">xorg-server-1.0.… 13 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.gz">xorg-server-1.0.1… 14 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.bz2">xorg-server-1.0.… 15 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.gz">xorg-server-1.0.2… 16 …c="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.bz2">xorg-server-1.0… 17 …"/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.gz">xorg-server-1.0… 18 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.bz2">xorg-server-1.… 19 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.gz">xorg-server-1.… 20 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.bz2">xorg-server-1.… 21 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.gz">xorg-server-1.… [all …]
|
/openbmc/phosphor-hwmon/ |
H A D | interface.hpp | 3 #include <sdbusplus/server.hpp> 4 #include <xyz/openbmc_project/Common/Priority/server.hpp> 5 #include <xyz/openbmc_project/Control/FanPwm/server.hpp> 6 #include <xyz/openbmc_project/Control/FanSpeed/server.hpp> 7 #include <xyz/openbmc_project/Sensor/Accuracy/server.hpp> 8 #include <xyz/openbmc_project/Sensor/Threshold/Critical/server.hpp> 9 #include <xyz/openbmc_project/Sensor/Threshold/Warning/server.hpp> 10 #include <xyz/openbmc_project/Sensor/Value/server.hpp> 11 #include <xyz/openbmc_project/State/Decorator/OperationalStatus/server.hpp> 14 using ServerObject = typename sdbusplus::server::object_t<T...>; [all …]
|
/openbmc/smbios-mdr/include/ |
H A D | dimm.hpp | 21 #include <xyz/openbmc_project/Association/Definitions/server.hpp> 22 #include <xyz/openbmc_project/Inventory/Connector/Slot/server.hpp> 23 #include <xyz/openbmc_project/Inventory/Decorator/Asset/server.hpp> 24 #include <xyz/openbmc_project/Inventory/Decorator/LocationCode/server.hpp> 25 #include <xyz/openbmc_project/Inventory/Item/Dimm/MemoryLocation/server.hpp> 26 #include <xyz/openbmc_project/Inventory/Item/Dimm/server.hpp> 27 #include <xyz/openbmc_project/Inventory/Item/server.hpp> 28 #include <xyz/openbmc_project/State/Decorator/OperationalStatus/server.hpp> 37 sdbusplus::server::xyz::openbmc_project::inventory::item::Dimm::DeviceType; 40 sdbusplus::server::xyz::openbmc_project::inventory::item::Dimm::Ecc; [all …]
|
/openbmc/slpd-lite/ |
H A D | slp_server.hpp | 19 /** General udp server which waits for the POLLIN event 21 usage would be create the server with the port and the call back 24 class Server class 27 Server() : Server(slp::PORT, nullptr) {}; in Server() function in slp::udp::Server 29 Server(uint16_t port, sd_event_io_handler_t cb) : port(port), callme(cb) {}; in Server() function in slp::udp::Server 31 Server(const Server&) = delete; 32 Server& operator=(const Server&) = delete; 33 Server(Server&&) = default; 34 Server& operator=(Server&&) = default;
|
/openbmc/qemu/docs/interop/ |
H A D | barrier.rst | 13 Message format between the server and client is in two parts: 19 command. The first command between the server and the client 32 server -> client 38 ``minor`` = protocol major version number supported by server 40 ``major`` = protocol minor version number supported by server 46 client ->server 50 Respond to hello from server 62 client ->server 77 client -> server 87 server -> client [all …]
|
/openbmc/linux/arch/powerpc/sysdev/xics/ |
D | ics-opal.c |
|
/openbmc/openbmc-test-automation/gui/gui_test/operations_menu/ |
H A D | test_server_power_operations_sub_menu.robot | 3 Documentation Test OpenBMC GUI "Server power operations" sub-menu of "Operations". 10 Test Setup Navigate to Server Power Operation Page 16 ${xpath_server_power_heading} //h1[text()="Server power operations"] 32 Verify Navigation To Server Power Operations Page 33 [Documentation] Verify navigation to server power operations page. 39 Verify Existence Of All Sections In Server Power Operations Page 40 [Documentation] Verify existence of all sections in Server Power Operations page. 44 Wait Until Page Contains Server power operations timeout=5 61 [Documentation] Verify Save button On Server Power Operation page with readonly user. 64 ... AND Navigate to Server Power Operation Page [all …]
|
/openbmc/phosphor-state-manager/ |
H A D | hypervisor_state_manager.cpp | 8 #include <sdbusplus/server.hpp> 24 // When you see server:: you know we're referencing our base class 25 namespace server = sdbusplus::server::xyz::openbmc_project::state; 28 server::Host::Transition Hypervisor::requestedHostTransition(Transition value) in requestedHostTransition() 34 if (value != server::Host::Transition::On) in requestedHostTransition() 38 return server::Host::Transition::Off; in requestedHostTransition() 44 return server::Host::requestedHostTransition(value); in requestedHostTransition() 47 server::Host::HostState Hypervisor::currentHostState(HostState value) in currentHostState() 50 if (value != server::Host::currentHostState()) in currentHostState() 54 return server::Host::currentHostState(value); in currentHostState() [all …]
|
/openbmc/linux/fs/nfs/ |
D | sysfs.c |
|
/openbmc/openbmc-test-automation/gui/test/server_overview/ |
H A D | test_obmc_gui_server_overview.robot | 3 ... Server Overview" module. 11 ${xpath_select_overview_1} //*[@href="#/overview/server"] 13 ${string_server_info} Server information 17 ${xpath_high_priority_events} //a[@href='#/server-health/event-log'] 29 Select Server Overview Menu 34 [Documentation] Verify display of title text from "Server Overview" 39 Select Server Overview Menu 42 Verify Display Text Server Information At OBMC Power Off State 43 [Documentation] Verify existence of text "Server information". 47 Select Server Overview Menu [all …]
|
/openbmc/linux/net/netfilter/ipvs/ |
D | Kconfig |
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/valkey/valkey/ |
H A D | init-valkey-server | 4 # Provides: valkey-server 14 test -f /usr/bin/valkey-server || exit 0 20 echo "Starting valkey-server..." 21 start-stop-daemon --start --quiet --exec /usr/bin/valkey-server -- $ARGS 24 echo "Stopping valkey-server..." 25 start-stop-daemon --stop --quiet --exec /usr/bin/valkey-server 28 echo "Stopping valkey-server..." 29 start-stop-daemon --stop --quiet --exec /usr/bin/valkey-server 38 start-stop-daemon --stop --test --quiet --exec /usr/bin/valkey-server 43 start-stop-daemon --stop --test --quiet --exec /usr/bin/valkey-server [all …]
|