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

1234567891011>>

/freebsd-11.0-release/contrib/xz/src/xz/
H A Dlist.h14 extern void list_file(const char *filename);
/freebsd-11.0-release/tools/tools/nanobsd/Files/root/
H A Dsave_cfg37 for filename in "$@" `find * -type f`
39 if [ ! -f /cfg/$filename -a ! -f /cfg/.ignore/$filename ]
47 if ! cmp -s /etc/$filename /conf/base/etc/$filename
49 file_path=`echo "$filename" | sed 's/\/[^/]*$//'`
50 if [ $file_path != $filename ]
71 read -p "New file /etc/$filename found. Add to /cfg (y/n/i)? " key
74 if [ $file_path != $filename ]
78 touch /cfg/$filename
[all...]
/freebsd-11.0-release/contrib/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.h65 void input_file_open (char *filename, int pre);
/freebsd-11.0-release/usr.bin/sdiff/
H A Dcommon.c18 cleanup(const char *filename) argument
21 if (unlink(filename))
22 err(2, "could not delete: %s", filename);
/freebsd-11.0-release/contrib/groff/src/libs/libgroff/
H A Dassert.cpp26 void assertion_failed(int lineno, const char *filename) argument
31 lineno, filename);
/freebsd-11.0-release/bin/setfacl/
H A Dsetfacl.h37 acl_t get_acl_from_file(const char *filename);
39 int merge_acl(acl_t acl, acl_t *prev_acl, const char *filename);
40 int add_acl(acl_t acl, uint entry_number, acl_t *prev_acl, const char *filename);
42 int remove_acl(acl_t acl, acl_t *prev_acl, const char *filename);
43 int remove_by_number(uint entry_number, acl_t *prev_acl, const char *filename);
44 int remove_default(acl_t *prev_acl, const char *filename);
45 void remove_ext(acl_t *prev_acl, const char *filename);
47 int set_acl_mask(acl_t *prev_acl, const char *filename);
H A Dfile.c43 get_acl_from_file(const char *filename) argument
49 if (filename == NULL)
50 err(1, "(null) filename in get_acl_from_file()");
52 if (strcmp(filename, "-") == 0) {
58 file = fopen(filename, "r");
60 err(1, "fopen() %s failed", filename);
67 err(1, "error reading from %s", filename);
70 errx(1, "line too long in %s", filename);
H A Dsetfacl.c64 const char *filename; member in struct:sf_file
74 static void add_filename(const char *filename);
78 add_filename(const char *filename) argument
82 if (strlen(filename) > PATH_MAX - 1) {
83 warn("illegal filename");
87 file->filename = filename;
106 char filename[PATH_MAX]; local
215 bzero(&filename, sizeof(filename));
[all...]
H A Dmask.c43 set_acl_mask(acl_t *prev_acl, const char *filename) argument
62 err(1, "%s: acl_dup() failed", filename);
73 warn("%s: acl_calc_mask() failed", filename);
90 filename);
104 warnx("%s: warning: no mask entry", filename);
/freebsd-11.0-release/contrib/gcclibs/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...]
/freebsd-11.0-release/contrib/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...]
/freebsd-11.0-release/contrib/dialog/samples/
H A Dbuildlist211 read filename
12 test -z "$filename" && break
13 case $filename in
26 echo $filename $state >>$input
29 echo $count $filename $state >>$input
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dcoff-solib.h35 #define SOLIB_ADD(filename, from_tty, targ, readsyms) \
36 coff_solib_add (filename, from_tty, targ, readsyms)
60 library file (or any library file, if filename is NULL) is loaded.
64 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
69 library file (or any library file, if filename is NULL) is unloaded.
73 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
/freebsd-11.0-release/contrib/expat/xmlwf/
H A Dxmlfile.h19 const XML_Char *filename,
H A Dxmlfile.c62 reportError(XML_Parser parser, const XML_Char *filename) argument
68 filename,
73 ftprintf(stderr, T("%s: (unknown message %d)\n"), filename, code);
79 const XML_Char *filename, void *args)
84 reportError(parser, filename);
140 const XML_Char *filename; local
145 filename = resolveSystemId(base, systemId, &s);
146 XML_SetBase(entParser, filename);
147 if (!filemap(filename, processFile, &args))
155 processStream(const XML_Char *filename, XML_Parse argument
78 processFile(const void *data, size_t size, const XML_Char *filename, void *args) argument
207 const XML_Char *filename; local
219 XML_ProcessFile(XML_Parser parser, const XML_Char *filename, unsigned flags) argument
[all...]
/freebsd-11.0-release/usr.sbin/fwcontrol/
H A Dfwmethods.h7 typedef void (fwmethod)(int dev_fd, const char *filename, char ich, int count);
/freebsd-11.0-release/contrib/ntp/lib/isc/include/isc/
H A Dfile.h119 * are replaced with ASCII characters until a non-existent filename
163 isc_file_remove(const char *filename);
165 * \brief Remove the file named by 'filename'.
183 isc_file_isabsolute(const char *filename);
210 isc_file_iscurrentdir(const char *filename);
216 isc_file_ischdiridempotent(const char *filename);
218 * Return #ISC_TRUE if calling chdir(filename) multiple times will give
223 isc_file_basename(const char *filename);
229 isc_file_progname(const char *filename, char *buf, size_t buflen);
231 * \brief Given an operating system specific file name "filename"
[all...]
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_write_open_filename.c61 struct archive_mstring filename; member in struct:write_file_data
70 archive_write_open_file(struct archive *a, const char *filename) argument
72 return (archive_write_open_filename(a, filename));
76 archive_write_open_filename(struct archive *a, const char *filename) argument
79 if (filename == NULL || filename[0] == '\0')
82 return (open_filename(a, 1, filename));
86 archive_write_open_filename_w(struct archive *a, const wchar_t *filename) argument
89 if (filename == NULL || filename[
96 open_filename(struct archive *a, int mbs_fn, const void *filename) argument
[all...]
/freebsd-11.0-release/contrib/unbound/util/
H A Dconfiglexer.lex41 char* filename;
59 static void config_start_include(const char* filename)
68 if(*filename == '\0') {
74 ub_c_error_msg("include %s: malloc failure", filename);
77 if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
79 filename += strlen(cfg_parser->chroot);
81 nm = strdup(filename);
83 ub_c_error_msg("include %s: strdup failure", filename);
87 input = fopen(filename, "r");
90 filename, strerro
[all...]
/freebsd-11.0-release/tools/tools/commitsdb/
H A Dmake_commit_db23 my $filename = "$dir/$f";
24 if (-f $filename) {
25 my %loghash = parse_log_message($filename);
28 $logs{$filename} = {%loghash};
29 } elsif (-d $filename) {
30 next if $filename =~ /\/CVS$/;
31 push @dirs, $filename;
/freebsd-11.0-release/crypto/heimdal/lib/roken/
H A Dwrite_pid.c57 pid_file_delete (char **filename) argument
59 if (*filename != NULL) {
60 unlink (*filename);
61 free (*filename);
62 *filename = NULL;
/freebsd-11.0-release/contrib/openbsm/bin/auditd/
H A Dauditd.h70 int audit_warn_closefile(char *filename);
72 int audit_warn_getacdir(char *filename);
73 int audit_warn_hard(char *filename);
76 int audit_warn_soft(char *filename);
78 int audit_warn_expired(char *filename);
/freebsd-11.0-release/contrib/openbsm/bin/auditdistd/
H A Dtrail.h45 bool trail_is_not_terminated(const char *filename);
46 bool trail_is_crash_recovery(const char *filename);
47 void trail_start(struct trail *trail, const char *filename, off_t offset);
51 void trail_unlink(struct trail *trail, const char *filename);
56 void trail_last(DIR *dirfp, char *filename, size_t filenamesize);
/freebsd-11.0-release/contrib/apr/include/
H A Dapr_shm.h50 * @param filename The file to use for shared memory on platforms that
71 const char *filename,
94 * @param filename The file to use for shared memory on platforms that
116 const char *filename,
123 * @param filename The filename associated with shared-memory segment which
135 APR_DECLARE(apr_status_t) apr_shm_remove(const char *filename,
148 * @param filename The file used to create the original segment.
149 * (This MUST match the original filename.)
154 const char *filename,
[all...]

Completed in 233 milliseconds

1234567891011>>