Home
last modified time | relevance | path

Searched refs:indexPoint (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/toolchain/tooling/client/manager/
H A Ddomain_manager.cpp63 std::string::size_type indexPoint = 0; in DispatcherReply() local
64 indexPoint = wholeMethod.find_first_of('.', 0); in DispatcherReply()
65 if (indexPoint == std::string::npos || indexPoint == 0 || indexPoint == length - 1) { in DispatcherReply()
68 domain = wholeMethod.substr(0, indexPoint); in DispatcherReply()
/arkcompiler/toolchain/tooling/
H A Ddispatcher.cpp65 std::string::size_type indexPoint = wholeMethod.find_first_of('.', 0); in DispatchRequest() local
66 if (indexPoint == std::string::npos || indexPoint == 0 || indexPoint == length - 1) { in DispatchRequest()
71 domain_ = wholeMethod.substr(0, indexPoint); in DispatchRequest()
72 method_ = wholeMethod.substr(indexPoint + 1, length); in DispatchRequest()
/arkcompiler/toolchain/tooling/client/domain/
H A Dheapprofiler_client.cpp245 std::string::size_type indexPoint = 0; in RecvReply() local
246 indexPoint = wholeMethod.find_first_of('.', 0); in RecvReply()
247 if (indexPoint == std::string::npos || indexPoint == 0 || indexPoint == length - 1) { in RecvReply()
250 method = wholeMethod.substr(indexPoint + 1, length); in RecvReply()
H A Ddebugger_client.cpp341 std::string::size_type indexPoint = 0; in RecvReply() local
342 indexPoint = wholeMethod.find_first_of('.', 0); in RecvReply()
343 method = wholeMethod.substr(indexPoint + 1, length); in RecvReply()

Completed in 3 milliseconds