Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/linux/
Dlibcurl_wrapper.cc273 string url_copy(url); in SendRequestInner() local
274 (*easy_setopt_)(curl_, CURLOPT_URL, url_copy.c_str()); in SendRequestInner()
/external/elfutils/debuginfod/
Ddebuginfod.cxx1903 string url_copy = url; in handler_cb() local
1921 size_t slash1 = url_copy.find('/', 1); in handler_cb()
1922 string url1 = url_copy.substr(0, slash1); // ok even if slash1 not found in handler_cb()
1927 size_t slash2 = url_copy.find('/', slash1+1); in handler_cb()
1931 string buildid = url_copy.substr(slash1+1, slash2-slash1-1); in handler_cb()
1933 size_t slash3 = url_copy.find('/', slash2+1); in handler_cb()
1937 artifacttype = url_copy.substr(slash2+1); in handler_cb()
1942 artifacttype = url_copy.substr(slash2+1, slash3-slash2-1); in handler_cb()
1943 suffix = url_copy.substr(slash3); // include the slash in the suffix in handler_cb()