Searched refs:endpoint_path (Results 1 - 11 of 11) sorted by last modified time

/frameworks/native/libs/vr/libbufferhub/
H A Dbuffer_hub_client.cpp46 BufferHubBuffer::BufferHubBuffer(const std::string& endpoint_path) argument
48 endpoint_path)},
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbuffer_hub_client.h134 explicit BufferHubBuffer(const std::string& endpoint_path);
/frameworks/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_client.cpp53 BufferHubQueue::BufferHubQueue(const std::string& endpoint_path) argument
55 pdx::default_transport::ClientChannelFactory::Create(endpoint_path)} {
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
H A Dbuffer_hub_queue_client.h134 BufferHubQueue(const std::string& endpoint_path);
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
H A Dservice_utility.h26 static std::string GetEndpointPath(const std::string& endpoint_path) { argument
27 return ClientChannelFactory::GetEndpointPath(endpoint_path);
44 ServiceUtility(const std::string& endpoint_path, int* error = nullptr) argument
45 : BASE(ClientChannelFactory::Create(endpoint_path), 0) {
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel_factory.cpp28 const std::string& endpoint_path) {
30 if (!endpoint_path.empty()) {
31 if (endpoint_path.front() == '/')
32 path = endpoint_path;
34 path = GetRootEndpointPath() + '/' + endpoint_path;
39 ClientChannelFactory::ClientChannelFactory(const std::string& endpoint_path) argument
40 : endpoint_path_{GetEndpointPath(endpoint_path)} {}
46 const std::string& endpoint_path) {
48 new ClientChannelFactory{endpoint_path}};
27 GetEndpointPath( const std::string& endpoint_path) argument
45 Create( const std::string& endpoint_path) argument
H A Dipc_helper.cpp412 Status<void> WaitForEndpoint(const std::string& endpoint_path, argument
415 if (endpoint_path.empty() || endpoint_path.front() != '/')
432 size_t pos = endpoint_path.find('/', 1);
435 pos = endpoint_path.find('/', pos + 1);
437 separators.push_back(endpoint_path.size());
445 current = endpoint_path.substr(0, separators[pos]);
H A Dservice_endpoint.cpp134 Endpoint::Endpoint(const std::string& endpoint_path, bool blocking, argument
136 : endpoint_path_{ClientChannelFactory::GetEndpointPath(endpoint_path)},
755 std::unique_ptr<Endpoint> Endpoint::Create(const std::string& endpoint_path, argument
758 return std::unique_ptr<Endpoint>(new Endpoint(endpoint_path, blocking));
762 const std::string& endpoint_path, bool blocking) {
764 new Endpoint(endpoint_path, blocking, false));
761 CreateAndBindSocket( const std::string& endpoint_path, bool blocking) argument
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dclient_channel_factory.h15 const std::string& endpoint_path);
22 static std::string GetEndpointPath(const std::string& endpoint_path);
25 explicit ClientChannelFactory(const std::string& endpoint_path);
H A Dipc_helper.h214 Status<void> WaitForEndpoint(const std::string& endpoint_path,
H A Dservice_endpoint.h89 // This method uses |endpoint_path| as a relative path to endpoint socket
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,

Completed in 96 milliseconds