Home
last modified time | relevance | path

Searched refs:Endpoint (Results 1 – 19 of 19) sorted by relevance

/frameworks/native/libs/vr/libpdx_uds/
Dservice_endpoint.cpp134 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 …]
Dclient_channel_tests.cpp34 using android::pdx::uds::Endpoint;
48 explicit TestService(std::unique_ptr<Endpoint> endpoint) in TestService()
82 auto endpoint = Endpoint::CreateFromSocketFd(LocalHandle{}); in TestServiceRunner()
Dservice_framework_tests.cpp40 using android::pdx::uds::Endpoint;
249 Endpoint::CreateAndBindSocket(kTestServicePath + name, blocking)), in TestService()
Dremote_method_tests.cpp35 using android::pdx::uds::Endpoint;
437 Endpoint::CreateAndBindSocket(TestInterface::kClientPath)) {} in TestService()
/frameworks/av/services/audioflinger/
DPatchPanel.h80 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/
Dservice_endpoint.h21 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;
Dclient_channel.h23 uint32_t GetIpcTag() const override { return Endpoint::kIpcTag; } in GetIpcTag()
/frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
Dservice_endpoint.h10 using Endpoint = ::android::pdx::servicefs::Endpoint; variable
/frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
Dservice_endpoint.h10 using Endpoint = ::android::pdx::uds::Endpoint; variable
/frameworks/native/libs/vr/libpdx/private/pdx/
Dservice_endpoint.h37 class Endpoint {
39 virtual ~Endpoint() = default;
Dservice.h365 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()
Dmock_service_endpoint.h10 class MockEndpoint : public Endpoint {
/frameworks/native/libs/vr/libvrflinger/
Ddisplay_manager_service.cpp16 using android::pdx::default_transport::Endpoint;
37 Endpoint::Create(DisplayManagerProtocol::kClientPath)), in DisplayManagerService()
Ddisplay_service.cpp28 using android::pdx::default_transport::Endpoint;
46 Endpoint::Create(display::DisplayProtocol::kClientPath)) { in DisplayService()
/frameworks/native/services/vr/performanced/
Dperformance_service.cpp27 using android::pdx::default_transport::Endpoint;
112 Endpoint::Create(PerformanceRPC::kClientPath)) { in PerformanceService()
/frameworks/native/services/vr/bufferhubd/
Dbuffer_hub.cpp23 using android::pdx::default_transport::Endpoint;
30 : BASE("BufferHub", Endpoint::Create(BufferHubRPC::kClientPath)) {} in BufferHubService()
/frameworks/native/libs/vr/libpdx_default_transport/
Dpdx_benchmarks.cpp40 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/
Ddns_resolver.proto115 NS_T_EID = 31; // Endpoint identifier.
/frameworks/native/libs/vr/libpdx/
Dservice.cpp441 Service::Service(const std::string& name, std::unique_ptr<Endpoint> endpoint) in Service()