Lines Matching refs:response
38 response = await communicate_with_debugger_server(connection.instance_id,
42 response = json.loads(response)
43 assert response == {"id": message_id, "result": {"protocols": []}}
44 return response
47 response = await communicate_with_debugger_server(connection.instance_id,
51 response = json.loads(response)
52 assert response == {"id": message_id, "result": {}}
53 return response
56 response = await communicate_with_debugger_server(connection.instance_id,
60 response = json.loads(response)
61 assert response["id"] == message_id
62 return response
65 response = await communicate_with_debugger_server(connection.instance_id,
69 while response.startswith('{"method":"HeapProfiler.lastSeenObjectId"') or \
70 response.startswith('{"method":"HeapProfiler.heapStatsUpdate"'):
71 response = await self.websocket.recv_msg_of_debugger_server(connection.instance_id,
73 response = json.loads(response)
74 assert response["id"] == message_id
75 assert response['result']['usedSize'] > 0
76 assert response['result']['totalSize'] > 0
77 return response