Lines Matching refs:file_path
49 static void WriteModuleCoverage(char* file_path, const char* module_name, in WriteModuleCoverage() argument
51 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov"); in WriteModuleCoverage()
52 fd_t fd = OpenFile(file_path); in WriteModuleCoverage()
56 Printf("SanitizerCoverage: %s: %zd PCs written\n", file_path, len); in WriteModuleCoverage()
62 char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength)); in SanitizerDumpCoverage() local
85 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], in SanitizerDumpCoverage()
97 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], in SanitizerDumpCoverage()
101 InternalFree(file_path); in SanitizerDumpCoverage()
169 const char* file_path = common_flags()->cov_8bit_counters_out; in DumpCoverage() local
170 if (file_path && internal_strlen(file_path)) { in DumpCoverage()
171 fd_t fd = OpenFile(file_path); in DumpCoverage()
177 size, file_path); in DumpCoverage()
179 file_path = common_flags()->cov_pcs_out; in DumpCoverage()
180 if (file_path && internal_strlen(file_path)) { in DumpCoverage()
181 fd_t fd = OpenFile(file_path); in DumpCoverage()
187 file_path); in DumpCoverage()