Lines Matching full:server

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()
26 sdbusplus::aserver::server::Test<A> a0(ctx, "/0"); in constructInterfaces()
28 sdbusplus::aserver::server::Test<A> a1(ctx, "/1", props); in constructInterfaces()
31 sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test> a2( in constructInterfaces()
36 sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test>>( in constructInterfaces()
40 sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test2> a4( in constructInterfaces()
44 // sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test2> ax(ctx, in constructInterfaces()
48 sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test, in constructInterfaces()
49 sdbusplus::aserver::server::Test2> in constructInterfaces()
54 sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test, in constructInterfaces()
55 sdbusplus::aserver::server::Test2>>( in constructInterfaces()
60 // sdbusplus::async::server_t<A, sdbusplus::aserver::server::Test, in constructInterfaces()
61 // sdbusplus::aserver::server::Test2>>( in constructInterfaces()
65 A, sdbusplus::aserver::server::Test, sdbusplus::aserver::server::Test2, in constructInterfaces()
66 sdbusplus::aserver::server::Test3>>(ctx, "/8", props, props2, in constructInterfaces()
70 sdbusplus::client::server::Test(ctx).service(busName).path("/3"); in constructInterfaces()
75 sdbusplus::client::server::Test2(ctx).service(busName).path("/6"); in constructInterfaces()
94 sdbusplus::server::manager_t manager(ctx.get_bus(), "/test"); in main()