Searched refs:filename (Results 1 - 25 of 608) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dpr20954.f6 character*5 filename variable in program:pr20954
8 filename = 'input'
9 open (2,file=filename)
/haiku-buildtools/legacy/binutils/gas/
H A Doutput-file.h22 void output_file_append (char *where, long length, char *filename);
23 void output_file_close (char *filename);
H A Dinput-file.h64 void input_file_open (char *filename, int pre);
/haiku-buildtools/legacy/gcc/libchill/
H A Dallgmem.c32 extern void __cause_ex1 (char *ex, char *filename, int lineno);
42 * filename source file which issued the call
60 _allocate_global_memory (ptr, size, filename, linenumber)
63 char *filename;
66 __cause_ex1 ("notimplemented", filename, linenumber);
H A Dretmem.c38 * filename source file which issued the call
53 _return_memory (ptr, filename, linenumber)
55 char *filename;
H A Dallocate.c45 * filename source file which issued the call
61 __allocate (size, filename, linenumber)
63 char *filename; variable
69 __cause_ex1 ("rangefail", filename, linenumber);
72 __cause_ex1 ("allocatefail", filename, linenumber);
H A Dallmem.c47 * filename source file which issued the call
64 _allocate_memory (ptr, size, filename, linenumber)
67 char *filename;
73 __cause_ex1 ("protectionfail", filename, linenumber);
75 __cause_ex1 ("rangefail", filename, linenumber);
78 __cause_ex1 ("spacefail", filename, linenumber);
H A Dterminate.c44 * filename source file which issued the call
59 __terminate (ptr, filename, linenumber)
61 char *filename; variable
65 __cause_ex1 ("empty", filename, linenumber);
/haiku-buildtools/binutils/gas/
H A Doutput-file.h21 void output_file_append (char *where, long length, char *filename);
22 void output_file_close (const char *filename);
/haiku-buildtools/gcc/gmp/
H A Dassert.c31 __gmp_assert_header (const char *filename, int linenum) argument
33 if (filename != NULL && filename[0] != '\0')
35 fprintf (stderr, "%s:", filename);
42 __gmp_assert_fail (const char *filename, int linenum, argument
45 __gmp_assert_header (filename, linenum);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Dpr43116.C2 extern "C" int rpl_open (const char *filename, int flags, ...) __attribute__
7 int (*const open) (const char *filename, int flags, ...) __attribute__
/haiku-buildtools/jam/
H A Djcache.h8 char** jcache(char* filename);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr55740.C4 bool IsValidPath( char const * filename )
6 if ( !filename || filename[0] == 0 )
8 char const * run = filename;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/filesystem/path/concat/
H A Dstrings.cc33 VERIFY( p.filename() == "foo" );
35 VERIFY( p.filename() == "foobar" );
37 VERIFY( p.parent_path() == "/foobar" && p.filename() == "." );
43 VERIFY( p.filename() == "baz.txt" );
45 VERIFY( p.parent_path() == "/foobar/baz.txt/dir" && p.filename() == "." );
48 VERIFY( p.filename() == "file" );
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D980526-2.c16 void do_mknod(const char * filename, int mode, kdev_t dev) argument
25 char * getname(const char * filename) argument
28 a1 = (unsigned int)(filename) *5 + 1;
29 a2 = (unsigned int)(filename) *6 + 2;
30 a3 = (unsigned int)(filename) *7 + 3;
31 a4 = (unsigned int)(filename) *8 + 4;
32 a5 = (unsigned int)(filename) *9 + 5;
33 a6 = (unsigned int)(filename) *10 + 5;
34 a7 = (unsigned int)(filename) *11 + 5;
35 a8 = (unsigned int)(filename) *1
40 sys_mknod(const char * filename, int mode, dev_t dev) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A D20020122-2.c20 char *filename; local
23 if (!(filename = foocp ()))
26 if (access (filename))
29 if (auth_file = access (filename))
/haiku-buildtools/legacy/gcc/libio/stdio/
H A Dfreopen.c30 freopen (filename, mode, fp)
31 const char* filename;
41 result = _IO_freopen (filename, mode, fp);
/haiku-buildtools/gcc/gcc/java/
H A Dwin32-host.c50 jcf_open_exact_case (const char *filename, int oflag) argument
52 int filename_len = strlen (filename);
58 found_file_handle = FindFirstFile (filename, &fd);
69 /* Here, we're only actually comparing the filename and not
75 if (filename_cmp (filename + filename_len - found_file_len, fd.cFileName))
78 /* printf("************\nRejected:\n%s\n%s\n************\n\n", filename, fd.cFileName); */
83 return open (filename, oflag);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/filesystem/path/decompose/
H A Dfilename.cc32 VERIFY( path("/foo/bar.txt").filename() == "bar.txt" );
33 VERIFY( path("/").filename() == "/" );
34 VERIFY( path(".").filename() == "." );
35 VERIFY( path("..").filename() == ".." );
43 path f = p.filename();
/haiku-buildtools/binutils/libiberty/
H A Dlrealpath.c28 version of the filename. Symlinks will be resolved, and ``.'' and ``..''
76 lrealpath (const char *filename) argument
78 /* Method 1: The system has a compile time upper bound on a filename
85 const char *rp = realpath (filename, buf);
87 rp = filename;
97 char *rp = canonicalize_file_name (filename);
99 return strdup (filename);
123 rp = realpath (filename, buf);
124 ret = strdup (rp ? rp : filename);
141 DWORD len = GetFullPathName (filename, MAX_PAT
[all...]
/haiku-buildtools/gcc/libiberty/
H A Dlrealpath.c28 version of the filename. Symlinks will be resolved, and ``.'' and ``..''
76 lrealpath (const char *filename) argument
78 /* Method 1: The system has a compile time upper bound on a filename
85 const char *rp = realpath (filename, buf);
87 rp = filename;
97 char *rp = canonicalize_file_name (filename);
99 return strdup (filename);
123 rp = realpath (filename, buf);
124 ret = strdup (rp ? rp : filename);
141 DWORD len = GetFullPathName (filename, MAX_PAT
[all...]
/haiku-buildtools/legacy/binutils/libiberty/
H A Dlrealpath.c28 version of the filename. Symlinks will be resolved, and ``.'' and ``..''
76 lrealpath (const char *filename) argument
78 /* Method 1: The system has a compile time upper bound on a filename
85 const char *rp = realpath (filename, buf);
87 rp = filename;
97 char *rp = canonicalize_file_name (filename);
99 return strdup (filename);
123 rp = realpath (filename, buf);
124 ret = strdup (rp ? rp : filename);
141 DWORD len = GetFullPathName (filename, MAX_PAT
[all...]
/haiku-buildtools/gcc/libgcc/
H A Dlibgcov-driver-system.c44 create_file_directory (char *filename) argument
47 (void) filename;
52 s = filename;
65 if (access (filename, F_OK) == -1
67 && mkdir (filename, 0755) == -1
72 && mkdir (filename) == -1
77 gcov_error ("profiling:%s:Cannot create directory\n", filename);
125 /* Allocate and initialize the filename scratch space. */
126 gf->filename = (char *) xmalloc (gf->max_length + prefix_length + 2);
128 memcpy (gf->filename, gcov_prefi
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/winnt/
H A Doldnames.c8 chmod (const char *filename, int pmode) argument
10 return _chmod (filename, pmode);
26 open (const char *filename, int oflag, int pmode) argument
28 return _open (filename, oflag, pmode);
/haiku-buildtools/binutils/gprof/
H A Dutils.c46 const char *filename; local
63 filename = self->file->name;
66 filename = strrchr (filename, '/');
67 if (filename)
69 ++filename;
73 filename = self->file->name;
78 sprintf (buf, " (%s:%d @ %lx)", filename, self->line_num,
83 sprintf (buf, " (%s:%d)", filename, self->line_num);

Completed in 142 milliseconds

1234567891011>>