Searched refs:req_async (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/perfetto/infra/ci/controller/ |
H A D | main.py | 22 from common_utils import init_logging, defer, req_async, utc_now_iso, parse_iso_time, SCOPES 167 resp = await req_async('GET', url, gerrit=True) 231 vote_prop = await req_async( 236 await req_async( 262 await req_async('PATCH', DB + '.json', body=patch_obj) 269 cl_objs = await req_async('GET', '%s/cls.json?%s' % (DB, filt)) or {} 284 pending_cls = await req_async('GET', '%s/cls_pending.json' % DB) or {} 295 cl_obj = await req_async('GET', '%s/cls/%s.json' % (DB, cl_and_ps)) 300 job_status = await req_async('GET', '%s/jobs/%s/status.json' % (DB, job_id)) 328 await req_async('PATCH', '%s.json' % DB, body=patch_obj) [all …]
|
/aosp_15_r20/external/perfetto/infra/ci/ |
H A D | common_utils.py | 75 async def req_async(method, url, body=None, gerrit=False): function
|