Lines Matching refs:response
37 response = await communicate_with_debugger_server(connection.instance_id,
41 response = json.loads(response)
42 assert response == {"id": message_id, "result": {}}
43 return response
46 response = await communicate_with_debugger_server(connection.instance_id,
50 response = json.loads(response)
51 assert response['id'] == message_id
52 assert all(i >= 0 for i in response['result']['profile']['timeDeltas'])
53 return response
56 response = await communicate_with_debugger_server(connection.instance_id,
60 response = json.loads(response)
61 assert response == {"id": message_id, "result": {}}
62 return response