Home
last modified time | relevance | path

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

/external/parameter-framework/upstream/remote-process/
Dmain.cpp140 size_t portDelPos = endPortArg.find(':', protocolDelPos + protocolDelimiter.size()); in main() local
141 if (portDelPos == std::string::npos) { in main()
145 portDelPos - (protocolDelPos + protocolDelimiter.size())); in main()
146 port = endPortArg.substr(portDelPos + 1); in main()
/external/parameter-framework/upstream/remote-processor/
DRemoteProcessorServer.cpp89 size_t portDelPos = _bindAddress.find(':', protocolDelPos + protocolDel.size()); in start() local
90 if (portDelPos == std::string::npos) { in start()
94 std::string portLiteral{_bindAddress.substr(portDelPos + 1)}; in start()