• Home
  • Raw
  • Download

Lines Matching refs:break_results

348     break_results = run_break_set_command(test, command)
353 break_results,
361 break_results,
364 return get_bpno_from_match(break_results)
385 break_results = run_break_set_command(test, command)
390 break_results,
397 break_results,
400 return get_bpno_from_match(break_results)
419 break_results = run_break_set_command(test, command)
424 break_results,
432 break_results,
435 return get_bpno_from_match(break_results)
449 break_results = run_break_set_command(test, command)
453 break_results,
456 return get_bpno_from_match(break_results)
469 break_results = run_break_set_command(test, command)
473 break_results,
476 return get_bpno_from_match(break_results)
503 break_results = match_object.groupdict()
507 if not 'bpno' in break_results:
508 break_results['bpno'] = -1
510 break_results['bpno'] = int(break_results['bpno'])
516 if not 'num_locations' in break_results:
519 num_locations = break_results['num_locations']
523 num_locations = int(break_results['num_locations'])
525 break_results['num_locations'] = num_locations
527 if 'line_no' in break_results:
528 break_results['line_no'] = int(break_results['line_no'])
530 return break_results
533 def get_bpno_from_match(break_results): argument
534 return int(break_results['bpno'])
539 break_results, argument
548 out_num_locations = break_results['num_locations']
562 if 'file' in break_results:
563 out_file_name = break_results['file']
572 if 'line_no' in break_results:
573 out_line_number = break_results['line_no']
585 if 'inline_symbol' in break_results and break_results['inline_symbol']:
586 out_symbol_name = break_results['inline_symbol']
587 elif 'symbol' in break_results:
588 out_symbol_name = break_results['symbol']
606 if 'module' in break_results:
607 out_module_name = break_results['module']