Lines Matching refs:stats
50 def verify_success_fail_count(self, stats, key, num_successes, num_fails): argument
51 self.verify_key_in_dict(key, stats, 'stats["%s"]' % (key))
52 success_fail_dict = stats[key]
93 stats = self.get_target_stats(self.get_stats())
94 self.verify_success_fail_count(stats, 'expressionEvaluation', 1, 0)
109 stats = self.get_target_stats(self.get_stats())
110 self.verify_success_fail_count(stats, 'expressionEvaluation', 2, 2)
115 stats = self.get_target_stats(self.get_stats())
116 self.verify_success_fail_count(stats, 'frameVariable', 1, 0)
119 self.assertEqual('stopCount' in stats, True,
121 self.assertGreater(stats['stopCount'], 0,
176 stats = debug_stats['targets'][0]
187 self.verify_keys(stats, '"stats"', keys_exist, keys_missing)
188 self.assertGreater(stats['targetCreateTime'], 0.0)
246 stats = debug_stats['targets'][0]
255 self.verify_keys(stats, '"stats"', keys_exist, None)
256 self.assertGreater(stats['firstStopTime'], 0.0)
257 self.assertGreater(stats['launchOrAttachTime'], 0.0)
258 self.assertGreater(stats['targetCreateTime'], 0.0)
299 def find_module_in_metrics(self, path, stats): argument
300 modules = stats['modules']
306 def find_module_by_id_in_metrics(self, id, stats): argument
307 modules = stats['modules']
336 stats = debug_stats['targets'][0]
340 self.verify_keys(stats, '"stats"', keys_exist, None)