/frameworks/native/libs/vr/libpdx_uds/ |
D | service_endpoint.cpp | 134 Endpoint::Endpoint(const std::string& endpoint_path, bool blocking, in Endpoint() function in android::pdx::uds::Endpoint 171 Endpoint::Endpoint(LocalHandle socket_fd) { Init(std::move(socket_fd)); } in Endpoint() function in android::pdx::uds::Endpoint 173 void Endpoint::Init(LocalHandle socket_fd) { in Init() 209 void* Endpoint::AllocateMessageState() { return new MessageState; } in AllocateMessageState() 211 void Endpoint::FreeMessageState(void* state) { in FreeMessageState() 215 Status<void> Endpoint::AcceptConnection(Message* message) { in AcceptConnection() 260 Status<void> Endpoint::SetService(Service* service) { in SetService() 265 Status<void> Endpoint::SetChannel(int channel_id, Channel* channel) { in SetChannel() 274 Status<void> Endpoint::OnNewChannel(LocalHandle channel_fd) { in OnNewChannel() 281 Status<std::pair<int32_t, Endpoint::ChannelData*>> Endpoint::OnNewChannelLocked( in OnNewChannelLocked() [all …]
|
D | client_channel_tests.cpp | 34 using android::pdx::uds::Endpoint; 48 TestService(std::unique_ptr<Endpoint> endpoint) in TestService() 82 auto endpoint = Endpoint::CreateFromSocketFd(LocalHandle{}); in TestServiceRunner()
|
D | service_framework_tests.cpp | 40 using android::pdx::uds::Endpoint; 249 Endpoint::CreateAndBindSocket(kTestServicePath + name, blocking)), in TestService()
|
D | remote_method_tests.cpp | 35 using android::pdx::uds::Endpoint; 437 Endpoint::CreateAndBindSocket(TestInterface::kClientPath)) {} in TestService()
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | service_endpoint.h | 21 class Endpoint : public pdx::Endpoint { 39 ~Endpoint() override = default; 91 static std::unique_ptr<Endpoint> Create(const std::string& endpoint_path, 97 static std::unique_ptr<Endpoint> CreateAndBindSocket( 102 static std::unique_ptr<Endpoint> CreateFromSocketFd(LocalHandle socket_fd); 118 Endpoint(const std::string& endpoint_path, bool blocking, 120 Endpoint(LocalHandle socket_fd); 124 Endpoint(const Endpoint&) = delete; 125 void operator=(const Endpoint&) = delete;
|
D | client_channel.h | 23 uint32_t GetIpcTag() const override { return Endpoint::kIpcTag; } in GetIpcTag()
|
/frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/ |
D | service_endpoint.h | 10 using Endpoint = ::android::pdx::uds::Endpoint; variable
|
/frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/ |
D | service_endpoint.h | 10 using Endpoint = ::android::pdx::servicefs::Endpoint; variable
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | service_endpoint.h | 37 class Endpoint { 39 virtual ~Endpoint() = default;
|
D | service.h | 356 Service(const std::string& name, std::unique_ptr<Endpoint> endpoint); 551 Endpoint* endpoint() const { return endpoint_.get(); } in endpoint() 627 std::unique_ptr<Endpoint> endpoint_; 664 ServiceBase(const std::string& name, std::unique_ptr<Endpoint> endpoint) in ServiceBase()
|
D | mock_service_endpoint.h | 10 class MockEndpoint : public Endpoint {
|
/frameworks/native/libs/vr/libvrflinger/ |
D | display_manager_service.cpp | 16 using android::pdx::default_transport::Endpoint; 37 Endpoint::Create(DisplayManagerProtocol::kClientPath)), in DisplayManagerService()
|
D | vsync_service.cpp | 20 using android::pdx::default_transport::Endpoint; 27 : BASE("VSyncService", Endpoint::Create(VSyncProtocol::kClientPath)), in VSyncService()
|
D | display_service.cpp | 26 using android::pdx::default_transport::Endpoint; 44 Endpoint::Create(display::DisplayProtocol::kClientPath)) { in DisplayService()
|
/frameworks/native/services/vr/performanced/ |
D | performance_service.cpp | 25 using android::pdx::default_transport::Endpoint; 106 Endpoint::Create(PerformanceRPC::kClientPath)) { in PerformanceService()
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
D | pdx_benchmarks.cpp | 40 using android::pdx::Endpoint; 382 BenchmarkService(std::unique_ptr<Endpoint> endpoint) in BenchmarkService() 519 android::pdx::default_transport::Endpoint::CreateAndBindSocket( in ServiceCommand() 521 android::pdx::default_transport::Endpoint::kBlocking)); in ServiceCommand()
|
/frameworks/native/services/vr/bufferhubd/ |
D | buffer_hub.cpp | 25 using android::pdx::default_transport::Endpoint; 32 : BASE("BufferHub", Endpoint::Create(BufferHubRPC::kClientPath)) {} in BufferHubService()
|
/frameworks/native/libs/vr/libpdx/ |
D | service.cpp | 447 Service::Service(const std::string& name, std::unique_ptr<Endpoint> endpoint) in Service()
|