Searched refs:query_pos (Results 1 – 3 of 3) sorted by relevance
57 size_t query_pos = request_path.find('?'); in HandleFileRequest() local58 if (query_pos != std::string::npos) in HandleFileRequest()59 request_path = request_path.substr(0, query_pos); in HandleFileRequest()
488 size_t query_pos = request_path.find('?'); in CorruptDBRequestHandler() local489 if (query_pos != std::string::npos) { in CorruptDBRequestHandler()490 request_query = request_path.substr(query_pos + 1); in CorruptDBRequestHandler()491 request_path = request_path.substr(0, query_pos); in CorruptDBRequestHandler()
489 size_t query_pos = path.find("?"); in OnJsonRequestUI() local490 if (query_pos != std::string::npos) { in OnJsonRequestUI()491 query = path.substr(query_pos + 1); in OnJsonRequestUI()492 path = path.substr(0, query_pos); in OnJsonRequestUI()