Searched refs:filename (Results 101 - 125 of 610) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/network/atftpd/
H A Dlogger.c41 * Open a file for logging. If filename is NULL, then use
45 void open_logger(char *ident, char *filename, int priority) argument
57 if (filename)
58 log_filename = strdup(filename);
H A Dtftpd_mtftp.c53 struct mtftp_thread *tftpd_mtftp_find_server(struct mtftp_data *data, char *filename);
54 int tftpd_mtftp_unique(struct mtftp_data *data, char *filename, char *ip, char *port);
63 * filename mcast_ip client_port
66 struct mtftp_data *tftpd_mtftp_init(char *filename) argument
80 if ((fp = fopen(filename, "r")) == NULL)
85 logger(LOG_DEBUG, "mtftp: opened configuration file %s", filename);
181 thread->file_name, filename, line);
189 filename, line);
197 filename, line);
206 thread->client_port, filename, lin
306 tftpd_mtftp_find_server(struct mtftp_data *data, char *filename) argument
320 tftpd_mtftp_unique(struct mtftp_data *data, char *filename, char *ip, char *port) argument
355 char filename[MAXLEN]; local
[all...]
/haiku-fatelf/src/add-ons/opengl/swpipe/
H A Dbitmap_wrapper.cpp105 BString filename("/boot/home/frame_");
106 filename << (int32)frameNo << ".png";
110 BFile dump(filename, B_CREATE_FILE | B_WRITE_ONLY);
/haiku-fatelf/src/bin/gdb/bfd/
H A Darchive.c61 format and back again, the filename may be truncated.
85 /* Some formats provide a way to cram a long filename into the short
88 entry. If the filename is too long to fit, put it in the extended
89 name table, and use its index as the filename. To prevent
103 BSD 4.4 uses a third scheme: It writes a long filename
119 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
120 "filename.o " - Regular file, Berkeley style (no embedded spaces).
340 char *filename = NULL;
367 /* Extract the filename from the archive - there are two ways to
375 filename
338 char *filename = NULL; local
1143 const char *filename = strrchr (file, '/'); local
1339 bfd_ar_hdr_from_filesystem(bfd *abfd, const char *filename, bfd *member) argument
1419 bfd_special_undocumented_glue(bfd *abfd, const char *filename) argument
1494 const char *filename; local
1526 const char *filename = strrchr (pathname, '/'); local
1574 const char *filename = strrchr (pathname, '/'); local
[all...]
/haiku-fatelf/src/apps/installedpackages/
H A DUninstallView.h34 void _AddFile(const char* filename,
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmaint-tool136 $filename = <TAGS>;
137 $filename =~ s/[\r\n]+$//;
138 $filename =~ s/,\d+$//;
139 $filename =~ s@.*[/\\]@@;
142 if ($filename =~ /\.c$/ ) {
148 next if $filename =~ /mpw\.c/;
162 if ($seen_in{$_} ne $filename) {
165 $seen_in{$_} = $filename;
/haiku-fatelf/src/bin/less/
H A Dmain.c186 char *filename; local
189 * Because the "shell" doesn't expand filename patterns,
190 * treat each argument as a filename pattern rather than
191 * a single filename.
199 filename = NULL;
200 while ((filename = forw_textlist(&tlist, filename)) != NULL)
202 (void) get_ifile(filename, ifile);
207 filename = shell_quote(*argv);
208 if (filename
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dxmlppd.h44 extern stp_mxml_node_t *stpi_xmlppd_read_ppd_file(const char *filename);
/haiku-fatelf/src/tests/kits/storage/
H A DFileTest.h36 const char * filename; member in struct:FileTest::InitTestCase
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/getpid/
H A D1-1.c156 char filename[] = "/tmp/getpid-1-XXXXXX"; local
161 fd = mkstemp(filename);
166 unlink(filename);
169 output("Temp file created (%s).\n", filename);
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dlibxml.h58 void __xmlLoaderErr(void *ctx, const char *msg, const char *filename);
/haiku-fatelf/src/bin/unzip/
H A Dfileio.c135 "warning: filename too long--truncating.\n";
241 QFilename(__G__ G.filename);
245 /* Borland 5.0's stat() barfs if the filename has no extension and the
247 if (access(G.filename, 0) == -1) {
248 FILE *tmp = fopen(G.filename, "wb+");
257 if (SSTAT(G.filename, &G.statbuf) == 0 || lstat(G.filename,&G.statbuf) == 0)
259 if (SSTAT(G.filename, &G.statbuf) == 0)
263 FnFilter1(G.filename)));
271 flen = strlen(G.filename);
1811 char *filename; /* exist yet */ variable
[all...]
H A Dextract.c136 "%s: bad filename length (%s)\n";
397 FnFilter1(G.filename), "central"));
410 FnFilter1(G.filename), "central"));
429 FnFilter1(G.filename)));
447 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
456 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
752 FnFilter1(G.filename), "VMS",
761 FnFilter1(G.filename)));
771 FnFilter1(G.filename), "PK",
783 FnFilter1(G.filename),
[all...]
/haiku-fatelf/src/tools/gensyscalls/
H A Dgensyscalls.cpp312 void _WriteSyscallsFile(const char* filename) argument
315 ofstream file(filename, ofstream::out | ofstream::trunc);
317 throw IOException(string("Failed to open `") + filename + "'.");
336 void _WriteDispatcherFile(const char* filename) argument
339 ofstream file(filename, ofstream::out | ofstream::trunc);
341 throw IOException(string("Failed to open `") + filename + "'.");
381 void _WriteNumbersFile(const char* filename) argument
384 ofstream file(filename, ofstream::out | ofstream::trunc);
386 throw IOException(string("Failed to open `") + filename + "'.");
408 void _WriteTableFile(const char* filename) argument
493 _WriteSTraceFile(const char* filename) argument
[all...]
/haiku-fatelf/src/bin/gdb/gdb/tui/
H A Dtui-stack.c49 /* Set the filename portion of the locator. */
50 static void tui_set_locator_filename (const char *filename);
53 static void tui_set_locator_info (const char *filename, const char *procname,
270 /* Set the filename portion of the locator. */
272 tui_set_locator_filename (const char *filename)
279 tui_set_locator_info (filename, NULL, 0, 0);
285 strcat_to_buf (element->file_name, MAX_LOCATOR_ELEMENT_LEN, filename);
290 tui_set_locator_info (const char *filename, const char *procname, int lineno,
308 tui_set_locator_filename (filename);
311 /* Update only the filename portio
271 tui_set_locator_filename(const char *filename) argument
289 tui_set_locator_info(const char *filename, const char *procname, int lineno, CORE_ADDR addr) argument
312 tui_update_locator_filename(const char *filename) argument
[all...]
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgspaint.c386 if (i>0 && pdv->filename)
388 int l = strlen(pdv->filename);
390 char * dot = strrchr(pdv->filename,'.');
391 int pos = dot ? dot-pdv->filename : l;
395 pos,pdv->filename,i,pdv->filename+pos);
398 pos,pdv->filename,i,pdv->filename+pos);
405 else if (pdv->filename == 0 || strlen(pdv->filename) >
532 hpgs_new_paint_device(hpgs_image *image, const char *filename, const hpgs_bbox *bb, hpgs_bool antialias ) argument
[all...]
/haiku-fatelf/src/apps/packageinstaller/
H A DInstalledPackageInfo.h28 status_t info_get_package_name(const char *filename, BString &name);
29 status_t info_get_package_version(const char *filename, BString &name);
/haiku-fatelf/src/bin/bash/lib/intl/
H A Dloadinfo.h81 const char *filename; member in struct:loaded_l10nfile
100 files of the same kind, sorted in decreasing order of ->filename.
105 produced by _nl_explode_name(). FILENAME is the filename suffix.
120 const char *filename, int do_allocate));
/haiku-fatelf/src/bin/coreutils/lib/
H A Dareadlink.c51 areadlink (char const *filename) argument
64 ssize_t link_length = readlink (filename, buffer, buf_size);
H A Dareadlinkat.c55 areadlinkat (int fd, char const *filename) argument
68 ssize_t link_length = readlinkat (fd, filename, buffer, buf_size);
H A Dstat.c28 orig_stat (const char *filename, struct stat *buf) argument
30 return stat (filename, buf);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dfchdir.c97 rpl_open (const char *filename, int flags, ...) argument
120 if (strcmp (filename, "/dev/null") == 0)
121 filename = "NUL";
123 fd = open (filename, flags, mode);
130 dirs[fd].name = canonicalize_file_name (filename);
159 rpl_opendir (const char *filename) argument
164 dp = opendir (filename);
173 dirs[fd].name = canonicalize_file_name (filename);
/haiku-fatelf/src/bin/gawk/intl/
H A Dloadinfo.h78 const char *filename; member in struct:loaded_l10nfile
97 files of the same kind, sorted in decreasing order of ->filename.
102 produced by _nl_explode_name(). FILENAME is the filename suffix.
117 const char *filename, int do_allocate));
/haiku-fatelf/src/bin/gdb/gdb/
H A Dmacroscope.c46 inclusion = macro_lookup_inclusion (main, sal.symtab->filename);
75 sal.symtab->filename);
H A Dmacrotab.h39 - Answer 2: "Compilation unit, filename, and line number." This is
129 const char *filename; member in struct:macro_source_file
188 const char *filename);
213 none. NAME is only the final portion of the filename, not the full

Completed in 161 milliseconds

1234567891011>>