Lines Matching refs:profraw_file
113 for profraw_file in profraw_files:
114 if not profraw_file.endswith('.profraw'):
115 raise RuntimeError('%r is expected to be a .profraw file.' % profraw_file)
124 for profraw_file in profraw_files:
125 logging.info('Converting profraw file: %r', profraw_file)
128 (profraw_file, output_profdata_files, invalid_profraw_files,
142 def _validate_and_convert_profraw(profraw_file, output_profdata_files, argument
145 output_profdata_file = profraw_file.replace('.profraw', '.profdata')
155 subprocess_cmd.append(profraw_file)
168 logging.info('Converting %r to %r', profraw_file, output_profdata_file)
172 profraw_file, output_profdata_file, validation_output)
179 profraw_file, output_profdata_file, error.output)
186 invalid_profraw_files.append(profraw_file)
188 counter_overflows.append(profraw_file)
195 logging.warning(template, profraw_file, validation_output)