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 while response.startswith('{"method":"HeapProfiler.lastSeenObjectId"'):
51 response = await self.websocket.recv_msg_of_debugger_server(connection.instance_id,
53 assert r'\"location_fields\":[\"object_index\",\"script_id\",\"line\",\"column\"]' in response
54 pre_response = response
55 while response.startswith('{"method":"HeapProfiler.addHeapSnapshotChunk"') or \
56 response.startswith('{"method":"HeapProfiler.lastSeenObjectId"'):
57 if response.startswith('{"method":"HeapProfiler.addHeapSnapshotChunk"'):
58 pre_response = response
59 response = await self.websocket.recv_msg_of_debugger_server(connection.instance_id,
62 response = json.loads(response)
63 assert response == {"id": message_id, "result": {}}
64 return response
67 response = await communicate_with_debugger_server(connection.instance_id,
71 assert r'\"location_fields\":[\"object_index\",\"script_id\",\"line\",\"column\"]' in response
72 pre_response = response
73 while response.startswith('{"method":"HeapProfiler.addHeapSnapshotChunk"'):
74 pre_response = response
75 response = await self.websocket.recv_msg_of_debugger_server(connection.instance_id,
78 response = json.loads(response)
79 assert response == {"id": message_id, "result": {}}
80 return response