/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 explicit 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/av/services/audioflinger/ |
D | PatchPanel.h | 80 class Endpoint final { 82 Endpoint() = default; 83 Endpoint(const Endpoint&) = delete; 84 Endpoint& operator=(const Endpoint& other) noexcept { 91 Endpoint(Endpoint&& other) noexcept { swap(other); } in Endpoint() function 92 Endpoint& operator=(Endpoint&& other) noexcept { 96 ~Endpoint() { in ~Endpoint() 140 void swap(Endpoint &other) noexcept { in swap() 149 friend void swap(Endpoint &a, Endpoint &b) noexcept { in swap() 215 Endpoint<PlaybackThread, PlaybackThread::PatchTrack> mPlayback; [all …]
|
/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 explicit 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/servicefs/pdx/default_transport/ |
D | service_endpoint.h | 10 using Endpoint = ::android::pdx::servicefs::Endpoint; variable
|
/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/private/pdx/ |
D | service_endpoint.h | 37 class Endpoint { 39 virtual ~Endpoint() = default;
|
D | service.h | 365 Service(const std::string& name, std::unique_ptr<Endpoint> endpoint); 560 Endpoint* endpoint() const { return endpoint_.get(); } in endpoint() 636 std::unique_ptr<Endpoint> endpoint_; 673 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 | display_service.cpp | 28 using android::pdx::default_transport::Endpoint; 46 Endpoint::Create(display::DisplayProtocol::kClientPath)) { in DisplayService()
|
/frameworks/native/services/vr/performanced/ |
D | performance_service.cpp | 27 using android::pdx::default_transport::Endpoint; 112 Endpoint::Create(PerformanceRPC::kClientPath)) { in PerformanceService()
|
/frameworks/native/services/vr/bufferhubd/ |
D | buffer_hub.cpp | 23 using android::pdx::default_transport::Endpoint; 30 : BASE("BufferHub", Endpoint::Create(BufferHubRPC::kClientPath)) {} in BufferHubService()
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
D | pdx_benchmarks.cpp | 40 using android::pdx::Endpoint; 382 explicit 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/base/core/proto/android/stats/dnsresolver/ |
D | dns_resolver.proto | 115 NS_T_EID = 31; // Endpoint identifier.
|
/frameworks/native/libs/vr/libpdx/ |
D | service.cpp | 441 Service::Service(const std::string& name, std::unique_ptr<Endpoint> endpoint) in Service()
|