Lines Matching refs:break_results

321     break_results = run_break_set_command (test, command)
324 …check_breakpoint_result (test, break_results, num_locations=num_expected_locations, file_name = fi…
326 check_breakpoint_result (test, break_results, num_locations = num_expected_locations)
328 return get_bpno_from_match (break_results)
342 break_results = run_break_set_command (test, command)
345 …check_breakpoint_result (test, break_results, num_locations = num_expected_locations, symbol_name …
347 check_breakpoint_result (test, break_results, num_locations = num_expected_locations)
349 return get_bpno_from_match (break_results)
362 break_results = run_break_set_command (test, command)
365 …check_breakpoint_result (test, break_results, num_locations = num_expected_locations, symbol_name …
367 check_breakpoint_result (test, break_results, num_locations = num_expected_locations)
369 return get_bpno_from_match (break_results)
378 break_results = run_break_set_command (test, command)
380 check_breakpoint_result (test, break_results, num_locations=num_expected_locations)
382 return get_bpno_from_match (break_results)
390 break_results = run_break_set_command (test, command)
392 check_breakpoint_result (test, break_results, num_locations=num_expected_locations)
394 return get_bpno_from_match (break_results)
419 break_results = match_object.groupdict()
423 if not 'bpno' in break_results:
424 break_results['bpno'] = -1
426 break_results['bpno'] = int(break_results['bpno'])
432 if not 'num_locations' in break_results:
435 num_locations = break_results['num_locations']
439 num_locations = int(break_results['num_locations'])
441 break_results['num_locations'] = num_locations
443 if 'line_no' in break_results:
444 break_results['line_no'] = int(break_results['line_no'])
446 return break_results
448 def get_bpno_from_match (break_results): argument
449 return int (break_results['bpno'])
451 def check_breakpoint_result (test, break_results, file_name=None, line_number=-1, symbol_name=None,… argument
453 out_num_locations = break_results['num_locations']
462 if 'file' in break_results:
463 out_file_name = break_results['file']
468 if 'line_no' in break_results:
469 out_line_number = break_results['line_no']
476 if 'inline_symbol' in break_results and break_results['inline_symbol']:
477 out_symbol_name = break_results['inline_symbol']
478 elif 'symbol' in break_results:
479 out_symbol_name = break_results['symbol']
488 if 'module' in break_results:
489 out_module_name = break_results['module']