Home
last modified time | relevance | path

Searched refs:protocolDelPos (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/parameter-framework/upstream/remote-process/
H A Dmain.cpp125 size_t protocolDelPos = endPortArg.find(protocolDelimiter); in main() local
126 if (protocolDelPos == std::string::npos) { in main()
129 protocol = endPortArg.substr(0, protocolDelPos); in main()
141 host = endPortArg.substr(protocolDelPos + protocolDelimiter.size(), in main()
142 portDelPos - (protocolDelPos + protocolDelimiter.size())); in main()
145 port = endPortArg.substr(protocolDelPos + protocolDelimiter.size()); in main()
/aosp_15_r20/external/parameter-framework/upstream/remote-processor/
H A DRemoteProcessorServer.cpp75 size_t protocolDelPos = _bindAddress.find(protocolDel); in start() local
76 if (protocolDelPos == std::string::npos) { in start()
80 std::string protocol = _bindAddress.substr(0, protocolDelPos); in start()
100 endpointName = _bindAddress.substr(protocolDelPos + protocolDel.size()); in start()