Searched refs:file (Results 226 - 250 of 1427) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dfopen-safer.c35 fopen_safer (char const *file, char const *mode) argument
37 FILE *fp = fopen (file, mode);
/haiku-fatelf/src/bin/gdb/
H A Dmkinstalldirs10 # This file is maintained in Automake, please report
21 leading file name components.
56 for file
58 if test -d "$file"; then
104 for file
106 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
146 # eval: (add-hook 'write-file-hooks 'time-stamp)
/haiku-fatelf/src/bin/rcs/
H A Dident.c7 This file is part of RCS.
20 along with RCS; see the file COPYING.
91 * removed printing of new line after last file.
134 "ident: usage: ident -{qV} [file...]\n"
183 scanfile(file, name, quiet)
184 register FILE *file;
187 /* Function: scan an open file with descriptor file for keywords.
200 while (c != EOF || ! (feof(file)|ferror(file))) {
[all...]
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_debug.h24 # define Aerror(statp, file, string, error, address, addrLen) /*empty*/
25 # define Perror(statp, file, string, error) /*empty*/
35 /*! \file */
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/consistency_check/
H A Dconsistency_check.cpp56 status_t Process(int file) argument
60 fFile = file;
124 fprintf(stderr, "Could not stat file \"%s\": %s\n", entry.path.c_str(),
134 int file = open(entry.path.c_str(), O_RDONLY); local
135 if (file < 0) {
136 fprintf(stderr, "Could not open file \"%s\": %s\n", entry.path.c_str(),
141 status_t status = gSHA.Process(file);
163 fprintf(stderr, "usage: %s <hash-file>\n", kProgramName);
176 // read files from hash file
178 int file local
[all...]
/haiku-fatelf/src/tests/add-ons/print/ppd/parser/
H A DScanner.cpp12 Scanner::Scanner(const char* file) argument
14 fCurrentFile = new PPDFile(file);
20 PPDFile* file = fCurrentFile->GetPreviousFile(); local
22 fCurrentFile = file;
169 PPDFile* file = fCurrentFile->GetPreviousFile(); local
171 fCurrentFile = file;
192 bool Scanner::Include(const char* file) argument
194 PPDFile* newFile = new PPDFile(file, fCurrentFile);
/haiku-fatelf/src/tests/add-ons/print/ppd/ui/
H A DPrinterSelection.h25 FileItem(const char* label, const char* file) argument
27 , fFile(file)
/haiku-fatelf/src/apps/drivesetup/
H A DDriveSetup.cpp77 BFile file; local
78 ret = _GetSettingsFile(file, true);
82 ret = fSettings.Flatten(&file);
95 BFile file; local
96 status_t ret = _GetSettingsFile(file, false);
100 ret = fSettings.Unflatten(&file);
117 DriveSetup::_GetSettingsFile(BFile& file, bool forWriting) const argument
136 ret = file.SetTo(path.Path(), forWriting ? writeFlags : readFlags);
139 // Only inform of an error if the file was supposed to be written.
140 fprintf(stderr, "failed to init settings file
[all...]
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dlogging.c64 ver = chan->out.file.versions;
72 if (strlen(chan->out.file.name) > (size_t)(PATH_MAX-3))
75 sprintf(old_name, "%s.%d", chan->out.file.name, ver-1);
76 sprintf(new_name, "%s.%d", chan->out.file.name, ver);
79 sprintf(new_name, "%s.0", chan->out.file.name);
80 (void)isc_movefile(chan->out.file.name, new_name);
98 if (chan->out.file.stream != NULL)
99 return (chan->out.file.stream);
101 if (stat(chan->out.file.name, &sb) < 0) {
105 chan->out.file
[all...]
/haiku-fatelf/headers/os/add-ons/registrar/
H A DMimeSnifferAddon.h27 virtual float GuessMimeType(BFile* file,
/haiku-fatelf/headers/private/kernel/arch/arm/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku-fatelf/headers/private/kernel/arch/mipsel/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku-fatelf/headers/private/kernel/boot/platform/routerboard_mipsel/
H A Dplatform_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku-fatelf/src/add-ons/mail_daemon/outbound_filters/fortune/
H A Dfilter.cpp26 BFile* file);
39 FortuneFilter::MessageReadyToSend(const entry_ref& ref, BFile* file) argument
81 file->SetSize(0);
82 mailMessage.RenderToRFC822(file);
/haiku-fatelf/src/apps/expander/
H A DExpanderSettings.h46 status_t Open(BFile *file, int32 mode);
/haiku-fatelf/src/apps/mediaconverter/
H A DMediaFileListView.cpp4 // This file may be used under the terms of the Be Sample Code License.
22 MediaFileListItem::MediaFileListItem(BMediaFile* file, const entry_ref& ref) argument
26 fMediaFile(file)
77 MediaFileListView::AddMediaItem(BMediaFile* file, const entry_ref& ref) argument
79 MediaFileListItem* item = new(std::nothrow) MediaFileListItem(file, ref);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfsusage.h1 /* fsusage.h -- declarations for file system space usage info
19 /* Space usage statistics for a file system. Blocks are 512-byte. */
34 uintmax_t fsu_files; /* Total file nodes. */
35 uintmax_t fsu_ffree; /* Free file nodes. */
38 int get_fs_usage (char const *file, char const *disk, struct fs_usage *fsp);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dcomplaints.h6 This file is part of GDB.
38 const char *file, int line, const char *fmt,
H A Dproc-flags.c1 /* Machine independent support for SVR4 /proc (process file system) for GDB.
6 This file is part of GDB.
272 proc_prettyfprint_flags (FILE *file, unsigned long flags, int verbose) argument
279 fprintf (file, "%s ", pr_flag_table[i].name);
281 fprintf (file, "%s\n", pr_flag_table[i].desc);
284 fprintf (file, "\n");
H A Dsrec.h4 This file is part of GDB.
23 void load_srec (struct serial *desc, const char *file, bfd_vma load_offset,
/haiku-fatelf/src/bin/zip/beos/
H A Dosdep.h4 See the accompanying file LICENSE, version 1999-Oct-05 or later
27 /* Set a file's MIME type. */
29 void setfiletype( const char *file, const char *type );
41 data - compressed or uncompressed file attribute data
52 If a file has absolutely no attributes, there will not be a 'Be' extra field.
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dcompat_cpp.h17 void* _kernel_contigmalloc_cpp(const char* file, int line, size_t size,
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dpath.h26 * @file gutenprint/path.h
31 * This file must include only standard C header files. The core code must
53 extern char *stpi_path_merge(const char *path, const char *file);
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dmkchlog3 # Generate a ChangeLog file from a CVS log.
44 my ($type, $file, $version, @junk) = split /\//;
46 $basenames{"$file"} = "1";
47 $file = "$rootdir$file";
48 $fileversions{$file} = $version;
57 # vw: version of the working file
63 # Example: the current file is 1.5.12.2.4.3
83 # This file cannot be a predecessor of the working version; it is
156 if (/^RCS file
[all...]
/haiku-fatelf/src/servers/registrar/
H A DTextSnifferAddon.h19 virtual float GuessMimeType(BFile* file,

Completed in 152 milliseconds

1234567891011>>