Lines Matching refs:r
43 r = curl.http_get(url=url, def_tracing=False, extra_args=[
46 r.check_response(http_status=200)
47 trace = r.trace_lines
54 r = curl.http_get(url=url, def_tracing=False, extra_args=[
57 r.check_response(http_status=200)
58 for line in r.trace_lines:
59 m = re.match(r'^\[0-[0x]] .+', line)
67 r = curl.http_get(url=url, def_tracing=False, extra_args=[
70 r.check_response(http_status=200)
71 for line in r.trace_lines:
72 m = re.match(r'^([0-9:.]+) \[0-[0x]] .+', line)
80 r = curl.http_get(url=url, def_tracing=False, extra_args=[
83 r.check_response(http_status=200)
85 for line in r.trace_lines:
86 m = re.match(r'^([0-9:.]+) \[0-[0x]] .+', line)
89 m = re.match(r'^([0-9:.]+) \[0-[0x]] . \[TCP].+', line)
99 r = curl.http_get(url=url, def_tracing=False, extra_args=[
102 r.check_response(http_status=200)
104 for line in r.trace_lines:
105 m = re.match(r'^\[0-[0x]] .+', line)
108 m = re.match(r'^\[0-[0x]] . \[TCP].+', line)