| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| xreadlink.h | 18 /* Call readlink to get the symbolic link value of FILENAME. 21 extern char *xreadlink (char const *filename);
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| xreadlink.h | 18 /* Call readlink to get the symbolic link value of FILENAME. 21 extern char *xreadlink (char const *filename);
|
| /src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| xreadlink.h | 18 /* Call readlink to get the symbolic link value of FILENAME. 21 extern char *xreadlink (char const *filename);
|
| /src/external/bsd/mdocml/dist/ |
| test-mkstemps.c | 7 char filename[] = "/tmp/temp.XXXXXX.suffix"; local 9 if (mkstemps(filename, 7) == -1) 11 return unlink(filename) == -1;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-auto-load-chaining-f2.o-gdb.py | 21 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-auto-load-chaining-f1.o-gdb.py | 23 print("Current objfile is: %s" % gdb.current_objfile().filename) 27 filename = gdb.current_objfile().filename variable 28 filename = re.sub(r"-f1.o$", "-f2.o", filename) variable 30 gdb.execute("add-symbol-file %s 0x%x" % (filename, r2)) 33 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-auto-load-chaining-f2.o-gdb.py | 21 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-auto-load-chaining-f1.o-gdb.py | 23 print("Current objfile is: %s" % gdb.current_objfile().filename) 27 filename = gdb.current_objfile().filename variable 28 filename = re.sub(r"-f1.o$", "-f2.o", filename) variable 30 gdb.execute("add-symbol-file %s 0x%x" % (filename, r2)) 33 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| /src/external/public-domain/xz/dist/src/xz/ |
| list.h | 14 extern void list_file(const char *filename);
|
| /src/usr.bin/sdiff/ |
| common.c | 16 cleanup(const char *filename) 18 if (unlink(filename)) 19 err(2, "could not delete: %s", filename);
|
| /src/external/gpl3/gdb/dist/sim/igen/ |
| filter_host.c | 26 filter_filename (const char *filename) 28 const char *p = filename; 29 const char *last = filename;
|
| filter_host.h | 25 /* Remove directory part from filename */ 26 extern const char *filter_filename (const char *filename);
|
| /src/external/gpl3/gdb.old/dist/sim/igen/ |
| filter_host.c | 26 filter_filename (const char *filename) 28 const char *p = filename; 29 const char *last = filename;
|
| filter_host.h | 25 /* Remove directory part from filename */ 26 extern const char *filter_filename (const char *filename);
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| prof_hook.h | 19 typedef void (*prof_dump_hook_t)(const char *filename);
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| prof_hook.h | 19 typedef void (*prof_dump_hook_t)(const char *filename);
|
| /src/external/bsd/zstd/dist/programs/ |
| zstdcli_trace.h | 15 * Enable tracing - log to filename. 17 void TRACE_enable(char const* filename);
|
| /src/external/gpl2/xcvs/dist/src/ |
| fileattr.h | 19 ENT-TYPE FILENAME <tab> ATTRNAME = ATTRVAL 24 ENT-TYPE is 'D', and FILENAME empty, for default attributes. 61 /* Get the attribute ATTRNAME for file FILENAME. The return value 66 If FILENAME is NULL, return default attributes (attributes for 68 extern char *fileattr_get (const char *filename, const char *attrname); 72 extern char *fileattr_get0 (const char *filename, 107 /* Set attribute ATTRNAME for file FILENAME to ATTRVAL. If ATTRVAL is NULL, 109 next call to fileattr_write. If FILENAME is NULL, set attributes for 111 extern void fileattr_set (const char *filename, const char *attrname, 114 /* Get all the attributes for file FILENAME. They are returned as malloc' [all...] |
| /src/external/lgpl3/gmp/dist/ |
| assert.c | 41 __gmp_assert_header (const char *filename, int linenum) 43 if (filename != NULL && filename[0] != '\0') 45 fprintf (stderr, "%s:", filename); 52 __gmp_assert_fail (const char *filename, int linenum, 55 __gmp_assert_header (filename, linenum);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| infcall-dlopen.cc | 22 openlib (const char *filename) 24 void *h = dlopen (filename, RTLD_LAZY); 26 if (filename == NULL)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| infcall-dlopen.cc | 22 openlib (const char *filename) 24 void *h = dlopen (filename, RTLD_LAZY); 26 if (filename == NULL)
|
| /src/external/gpl3/binutils/dist/gas/ |
| output-file.h | 21 void output_file_append (char *where, long length, char *filename);
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| output-file.h | 21 void output_file_append (char *where, long length, char *filename);
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| o_fopen.c | 38 FILE *openssl_fopen(const char *filename, const char *mode) 46 if (filename == NULL) 49 len_0 = (int)strlen(filename) + 1; 52 * Basically there are three cases to cover: a) filename is 56 * If filename is pure ASCII or real UTF-8 encoded string, 58 * filename is locale-ized string, chances are that 64 filename, len_0, NULL, 0)) 66 || (GetLastError() == ERROR_INVALID_FLAGS && (sz = MultiByteToWideChar(CP_UTF8, (flags = 0), filename, len_0, NULL, 0)) > 0)) { 71 filename, len_0, wfilename, sz) 76 * UTF-8 decode succeeded, but no file, filename [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| read-mo.h | 25 extern void read_mo_file (message_list_ty *mlp, const char *filename);
|