Searched refs:endpoint_path (Results 1 – 11 of 11) sorted by relevance
/frameworks/native/libs/vr/libpdx_uds/ |
D | client_channel_factory.cpp | 28 const std::string& endpoint_path) { in GetEndpointPath() argument 30 if (!endpoint_path.empty()) { in GetEndpointPath() 31 if (endpoint_path.front() == '/') in GetEndpointPath() 32 path = endpoint_path; in GetEndpointPath() 34 path = GetRootEndpointPath() + '/' + endpoint_path; in GetEndpointPath() 39 ClientChannelFactory::ClientChannelFactory(const std::string& endpoint_path) in ClientChannelFactory() argument 40 : endpoint_path_{GetEndpointPath(endpoint_path)} {} in ClientChannelFactory() 46 const std::string& endpoint_path) { in Create() argument 48 new ClientChannelFactory{endpoint_path}}; in Create()
|
D | ipc_helper.cpp | 412 Status<void> WaitForEndpoint(const std::string& endpoint_path, in WaitForEndpoint() argument 415 if (endpoint_path.empty() || endpoint_path.front() != '/') in WaitForEndpoint() 432 size_t pos = endpoint_path.find('/', 1); in WaitForEndpoint() 435 pos = endpoint_path.find('/', pos + 1); in WaitForEndpoint() 437 separators.push_back(endpoint_path.size()); in WaitForEndpoint() 445 current = endpoint_path.substr(0, separators[pos]); in WaitForEndpoint()
|
D | service_endpoint.cpp | 134 Endpoint::Endpoint(const std::string& endpoint_path, bool blocking, in Endpoint() argument 136 : endpoint_path_{ClientChannelFactory::GetEndpointPath(endpoint_path)}, in Endpoint() 758 std::unique_ptr<Endpoint> Endpoint::Create(const std::string& endpoint_path, in Create() argument 761 return std::unique_ptr<Endpoint>(new Endpoint(endpoint_path, blocking)); in Create() 765 const std::string& endpoint_path, bool blocking) { in CreateAndBindSocket() argument 767 new Endpoint(endpoint_path, blocking, false)); in CreateAndBindSocket()
|
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/ |
D | service_utility.h | 26 static std::string GetEndpointPath(const std::string& endpoint_path) { in GetEndpointPath() argument 27 return ClientChannelFactory::GetEndpointPath(endpoint_path); in GetEndpointPath() 44 explicit ServiceUtility(const std::string& endpoint_path, 46 : BASE(ClientChannelFactory::Create(endpoint_path), 0) {
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | client_channel_factory.h | 15 const std::string& endpoint_path); 22 static std::string GetEndpointPath(const std::string& endpoint_path); 25 explicit ClientChannelFactory(const std::string& endpoint_path);
|
D | service_endpoint.h | 91 static std::unique_ptr<Endpoint> Create(const std::string& endpoint_path, 98 const std::string& endpoint_path, bool blocking = kDefaultBlocking); 118 Endpoint(const std::string& endpoint_path, bool blocking,
|
D | ipc_helper.h | 215 Status<void> WaitForEndpoint(const std::string& endpoint_path,
|
/frameworks/native/libs/vr/libbufferhub/ |
D | buffer_hub_base.cpp | 22 BufferHubBase::BufferHubBase(const std::string& endpoint_path) in BufferHubBase() argument 24 endpoint_path)}, in BufferHubBase()
|
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/ |
D | buffer_hub_base.h | 105 explicit BufferHubBase(const std::string& endpoint_path);
|
/frameworks/native/libs/vr/libbufferhubqueue/ |
D | buffer_hub_queue_client.cpp | 53 BufferHubQueue::BufferHubQueue(const std::string& endpoint_path) in BufferHubQueue() argument 55 pdx::default_transport::ClientChannelFactory::Create(endpoint_path)} { in BufferHubQueue()
|
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/ |
D | buffer_hub_queue_client.h | 135 explicit BufferHubQueue(const std::string& endpoint_path);
|