Searched refs:source_file (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/ee/
H A Dgenstr7 echo usage $0 source_file dest_file
/freebsd-11-stable/usr.bin/patch/
H A Dpch.h40 extern char *source_file;
H A Dpatch.c226 if (source_file != NULL && (diff_type == CONTEXT_DIFF ||
229 out_creating = strcmp(source_file, _PATH_DEVNULL) == 0;
499 free(source_file);
500 source_file = NULL;
H A Dpch.c73 char *source_file; variable
415 free(source_file);
416 source_file = NULL;
427 source_file = xstrdup(names[OLD_FILE].path);
429 source_file = xstrdup(_PATH_DEVNULL);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dtracepoint.h56 char *source_file; member in struct:tracepoint
H A Dbreakpoint.h309 char *source_file;
308 char *source_file; member in struct:breakpoint
H A Dtracepoint.c345 t->source_file = NULL;
347 t->source_file = savestring (sal.symtab->filename,
437 if (addressprint || (tp->source_file == NULL))
442 if (tp->source_file)
444 tp->source_file, tp->line_number);
507 if (t->source_file)
517 fputs_filtered (t->source_file, gdb_stdout);
587 if (t->source_file)
588 xfree (t->source_file);
H A Dbreakpoint.c3494 if (b->source_file)
3505 ui_out_field_string (uiout, "file", b->source_file);
4076 b->source_file = NULL;
4078 b->source_file = savestring (sal.symtab->filename,
4838 if (addressprint || b->source_file == NULL)
4843 if (b->source_file)
4845 b->source_file, b->line_number);
6778 && b->source_file != NULL
6780 && strcmp (b->source_file, sal.symtab->filename) == 0
7013 if (bpt->source_file !
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h609 const SBFileSpec &source_file,
615 const SBFileSpecList &source_file);
619 const SBFileSpecList &source_file, const SBStringList &func_names);
657 /// Read breakpoints from source_file and return the newly created
660 /// \param[in] source_file
668 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
671 /// Read breakpoints from source_file and return the newly created
674 /// \param[in] source_file
686 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp222 void Function::GetStartLineSourceInfo(FileSpec &source_file, argument
225 source_file.Clear();
234 source_file = m_type->GetDeclaration().GetFile();
245 source_file = line_entry.file;
250 void Function::GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no) { argument
252 source_file.Clear();
267 source_file = line_entry.file;
/freebsd-11-stable/usr.bin/sdiff/
H A Dsdiff.c145 * Create temporary file if source_file is not a regular file.
149 mktmpcpy(const char *source_file) argument
158 ifd = open(source_file, O_RDONLY, 0);
162 err(2, "error getting file status from %s", source_file);
171 if (errno == ENOENT && strcmp(source_file, "-") == 0)
174 err(2, "error opening %s", source_file);
195 warn("error reading from %s", source_file);
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtic.c688 const char *source_file = "terminfo"; local
862 source_file = argv[optind++];
874 source_file = "/etc/termcap";
879 source_file = termcap;
882 source_file = my_tmpname;
885 tmp_fp = open_input(source_file, (char *) 0);
886 to_remove = source_file;
904 tmp_fp = open_input(source_file, my_altfile);
905 if (!strcmp(source_file, "-")) {
906 source_file
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h433 /// \param[out] source_file
438 void GetStartLineSourceInfo(FileSpec &source_file, uint32_t &line_no);
444 /// \param[out] source_file
449 void GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no);
/freebsd-11-stable/contrib/gcc/
H A Dgcov.c1784 FILE *source_file;
1799 source_file = fopen (src->name, "r");
1800 if (!source_file)
1809 if (!fstat (fileno (source_file), &status)
1859 retval = fgets (string, STRING_SIZE, source_file);
1902 for (; (retval = fgets (string, STRING_SIZE, source_file)); line_num++)
1908 retval = fgets (string, STRING_SIZE, source_file);
1916 if (source_file)
1917 fclose (source_file);
1782 FILE *source_file; local
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i661 BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, const char *module_name = NULL);
669 const SBFileSpecList &source_file,
777 Read breakpoints from source_file and return the newly created
780 @param[in] source_file
789 BreakpointsCreateFromFile(SBFileSpec &source_file,
793 Read breakpoints from source_file and return the newly created
796 @param[in] source_file
808 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
/freebsd-11-stable/contrib/atf/atf-c/
H A Dtc.c364 const char *source_file, const size_t source_line,
369 if (source_file != NULL) {
370 err = atf_dynstr_init_fmt(out_reason, "%s:%zd: ", source_file,
389 const char *source_file, const size_t source_line,
395 format_reason_ap(out_reason, source_file, source_line, reason, ap);
363 format_reason_ap(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, va_list ap) argument
388 format_reason_fmt(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, ...) argument
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-winsource.c418 && bp->source_file
419 && (strcmp (src->filename, bp->source_file) == 0)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1229 auto source_file = FileSystem::Instance().Open(source, source_open_options, local
1231 if (!source_file)
1232 return Status(source_file.takeError());
1234 uint32_t permissions = source_file.get()->GetPermissions(error);
1252 error = source_file.get()->Read(buffer_sp->GetBytes(), bytes_read);
1265 source_file.get()->SeekFromStart(offset);
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dfile-merge.c95 apr_file_t *source_file,
114 SVN_ERR(svn_io_file_readline(source_file, &line, NULL, &eof,
131 SVN_ERR(svn_io_file_readline(source_file, &line, &eol_str, &eof,
93 copy_to_merged_file(svn_linenum_t *new_current_line, apr_file_t *merged_file, apr_file_t *source_file, apr_off_t start, apr_off_t len, svn_linenum_t current_line, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1005 const lldb::SBFileSpec &source_file,
1010 source_regex, source_file, module_name);
1019 if (source_file.IsValid()) {
1020 source_file_list.Append(source_file);
1258 lldb::SBError SBTarget::BreakpointsCreateFromFile(SBFileSpec &source_file, argument
1262 source_file, new_bps);
1266 BreakpointsCreateFromFile(source_file, empty_name_list, new_bps));
1269 lldb::SBError SBTarget::BreakpointsCreateFromFile(SBFileSpec &source_file, argument
1275 source_file, matching_names, new_bps);
1293 sberr.ref() = target_sp->CreateBreakpointsFromFile(source_file
1004 BreakpointCreateBySourceRegex(const char *source_regex, const lldb::SBFileSpec &source_file, const char *module_name) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp810 std::string source_file = compiland->getSourceFileFullPath(); local
811 if (source_file.empty())
813 FileSpec this_spec(source_file, FileSpec::Style::windows);

Completed in 171 milliseconds