Home
last modified time | relevance | path

Searched full:file (Results 1 – 25 of 11203) sorted by relevance

12345678910>>...449

/freebsd/contrib/wpa/wpa_supplicant/vs2005/wpasvc/
H A Dwpasvc.vcproj185 <File
188 </File>
189 <File
192 </File>
193 <File
196 </File>
197 <File
200 </File>
201 <File
204 </File>
[all …]
/freebsd/crypto/krb5/src/ccapi/server/win/
H A DServer.vcproj67 <File
70 </File>
71 <File
74 </File>
75 <File
78 </File>
79 <File
82 </File>
83 <File
86 </File>
[all …]
/freebsd/share/doc/psd/01.cacm/
H A Dp213 The size of an ordinary file is determined
15 no predetermination of the size of a file is necessary
29 To read or write a file assumed to exist already, it must
36 indicates the name of the file.
40 argument indicates whether the file is to be read, written,
46 .IT "file descriptor" .
47 It is a small integer used to identify the file
49 or otherwise manipulate the file.
51 To create a new file or completely rewrite an old one,
55 creates the given file if it does not exist,
[all …]
/freebsd/usr.sbin/etcupdate/tests/
H A Dtests_test.sh66 # The various states of the comparison of a file between two trees.
76 # For an given file, there are three different pair-wise
83 # as a file merge that results in conflicts versus one that
109 echo "foo" > $i/equal/equal/equal/file
114 # /equal/first/first: The file is missing from the test
118 echo "foo" > $i/equal/first/first/file
123 # /equal/difftype/difftype: The local file is a different
132 # /equal/difflinks/difflinks: The local file is a modified
139 # /equal/difffiles/difffiles: The local file is a modified
140 # file. Nothing should happen.
[all …]
H A Dalways_test.sh66 # The various states of the comparison of a file between two trees.
90 # are: 1) it should not force the removal of a modified file
92 # modified or added file.
94 # /first/difftype/second: File with different local type
104 # /first/difffiles/second: Modified file removed. Should
106 echo "foo" > $OLD/first/difffiles/second/file
107 echo "bar" > $TEST/first/difffiles/second/file
109 # /second/second/difftype: Newly added file conflicts with
110 # existing file in test tree of a different type. Should
120 # /second/second/difffiles: Newly added file conflicts with
[all …]
H A Dfbsdid_test.sh66 # Store a FreeBSD ID string in a specified file. The first argument
67 # is the file, the remaining arguments are the comment to use.
70 local file
72 file=$1
75 echo -n '# $FreeBSD' >> $file
76 echo -n "$@" >> $file
77 echo '$' >> $file
89 # remove: Remove a file where the only local difference is a
94 # old: Modify a file where the only local difference between
102 an old file
[all …]
/freebsd/crypto/heimdal/lib/hx509/
H A Dtest_chain.in40 stat="--statistic-file=${objdir}/statfile"
52 cert:FILE:$srcdir/data/test.crt \
53 chain:FILE:$srcdir/data/test.crt \
54 chain:FILE:$srcdir/data/ca.crt \
55 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
59 cert:FILE:$srcdir/data/test.crt \
60 chain:FILE:$srcdir/data/ca.crt \
61 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
65 cert:FILE:$srcdir/data/test.crt \
66 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
[all …]
H A Dtest_ca.in40 stat="--statistic-file=${objdir}/statfile"
54 --key=FILE:$srcdir/data/key.der \
59 --ca-certificate=FILE:$srcdir/data/ca.crt,$srcdir/data/ca.key \
62 --certificate="FILE:cert-ee.pem" || exit 1
66 cert:FILE:cert-ee.pem \
67 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
71 --crl-file=crl.crl \
72 --signer=FILE:$srcdir/data/ca.crt,$srcdir/data/ca.key || exit 1
76 cert:FILE:cert-ee.pem \
77 crl:FILE:crl.crl \
[all …]
/freebsd/share/doc/psd/05.sysman/
H A D2.2.t28 .sh "File system
32 The file system abstraction provides access to a hierarchical
33 file system structure.
34 The file system contains directories (each of which may contain
38 Each file is organized as a linear array of bytes. No record
40 a file.
43 it were an ordinary file to determine the names of the contained files,
45 The file system stores only a small amount of ownership, protection and usage
46 information with a file.
50 The file system calls take \fIpath name\fP arguments.
[all …]
/freebsd/lib/libsys/
H A Dopen.233 .Nd open or create a file for reading, writing or executing
43 The file name specified by
49 and the file descriptor returned to the calling process.
52 argument may indicate the file is to be
62 and the file is created with mode
80 the file to be opened is determined relative to the directory
81 associated with the file descriptor
116 must be strictly relative to a file descriptor
165 set file pointer to the end of the file before each write
167 create file if it does not exist
[all …]
/freebsd/contrib/netbsd-tests/bin/cp/
H A Dt_cp.sh28 FILES="file file2 file3 link dir dir2 dirlink target"
41 echo "I'm a file" > file
42 echo "I'm a file, 2" > file2
43 echo "I'm a file, 3" > file3
44 ln -s file link
51 atf_set "descr" "Checks the copy of a file to a file"
64 chmod 777 file
65 atf_check -s eq:0 -o empty -e empty cp file file2
66 cp_compare file_to_file_simple file file2
68 atf_fail "new file not created with umask"
[all …]
/freebsd/contrib/netbsd-tests/include/
H A Dt_bitstring.c46 printbits(FILE *file, bitstr_t *b, int n) in printbits() argument
54 (void) fprintf(file, "%3d %3d ", jc, js); in printbits()
57 (void) fprintf(file, "%c", (bit_test(b, i) ? '1' : '0')); in printbits()
60 (void) fprintf(file, "%c", '\n'); in printbits()
64 calculate_data(FILE *file, const int test_length) in calculate_data() argument
71 (void) fprintf(file, "Testing with TEST_LENGTH = %d\n\n", test_length); in calculate_data()
73 (void) fprintf(file, "test _bit_byte, _bit_mask, and bitstr_size\n"); in calculate_data()
74 (void) fprintf(file, " i _bit_byte(i) _bit_mask(i) bitstr_size(i)\n"); in calculate_data()
77 (void) fprintf(file, "%3d%15u%15u%15zu\n", in calculate_data()
83 (void) fprintf(file, "\ntest bit_alloc, clearbits, bit_ffc, bit_ffs\n"); in calculate_data()
[all …]
/freebsd/usr.sbin/etcupdate/
H A Detcupdate.sh40 # unmodified file, the new version of the file, and the modified file.
41 # This requires having all three versions of the file available when
73 etcupdate revert [-d workdir] [-D destdir] [-L logfile] file ...
93 # file with " " prepended.
109 # Output a text description of a specified file's type.
111 # $1 - file pathname.
117 # Returns true (0) if a file exists
119 # $1 - file pathnam
[all...]
/freebsd/share/doc/smm/05.fastfs/
H A D3.t30 New file system organization
32 In the new file system organization (as in the
33 old file system organization),
34 each disk drive contains one or more file systems.
35 A file system is described by its super-block,
36 located at the beginning of the file system's disk partition.
39 This is done when the file system is created;
49 the minimum size of a file system block is 4096 bytes.
50 The size of file system blocks can be any power of two
52 The block size of a file system is recorded in the
[all …]
/freebsd/share/man/man5/
H A Dfstab.533 .Nd static information about the file systems
37 The file
39 contains descriptive information about the various file
44 and maintain this file.
45 Each file system is described on a separate line;
61 remote file system to be mounted.
70 describes the mount point for the file system.
79 describes the type of the file system.
80 The system can support various file system types.
81 Only the root, /usr, and /tmp file system
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h34 void Append(const FileSpec &file) { in Append() argument
35 return Append(std::make_shared<SupportFile>(file)); in Append()
37 void Append(std::shared_ptr<SupportFile> &&file) { in Append() argument
38 m_files.push_back(std::move(file)); in Append()
41 bool AppendIfUnique(const FileSpec &file);
45 size_t FindFileIndex(size_t idx, const FileSpec &file, bool full) const;
46 /// Find a compatible file index.
48 /// Find the index of a compatible file in the file spec list that matches \a
49 /// file starting \a idx entries into the file spec list. A file is considered
51 /// - The file matches exactly (only filename if \a file has no directory)
[all …]
/freebsd/sbin/mount/
H A Dmount.836 .Nd mount file systems
61 device or the remote node (rhost:path) on to the file system tree at the point
69 file.
71 The system maintains a list of currently mounted file systems.
86 All the file systems described in
99 root file system which is always remounted to preserve
112 file to use.
115 a file system mount status from read-write to read-only.
117 forces the R/W mount of an unclean file system (dangerous; use with
124 those file systems which are marked as
[all …]
/freebsd/bin/pax/
H A Dpax.138 .Nd read and write file archives and copy directory hierarchies
178 utility will read, write, and list the members of an archive file,
201 a table of contents of the members of the archive file read from
209 Extract the members of the archive file read from the
214 When an extracted file is a directory, the entire file hierarchy
216 All extracted files are created relative to the current file hierarchy.
217 The setting of ownership, access and modification times, and file mode of
224 .Ar file
229 .Ar file
233 .Ar file
[all …]
/freebsd/bin/test/
H A Dtest.161 .It Fl b Ar file
63 .Ar file
65 file.
66 .It Fl c Ar file
68 .Ar file
70 special file.
71 .It Fl d Ar file
73 .Ar file
75 .It Fl e Ar file
77 .Ar file
[all …]
/freebsd/share/doc/psd/27.nfsrpc/
H A Dnfs.rfc.ms10 .OH 'Network File System: Version 2 Protocol Specification''Page %'
11 .EH 'Page %''Network File System: Version 2 Protocol Specification'
14 \&Network File System: Version 2 Protocol Specification
16 .IX "Network File System" "" "" "" PAGE MAJOR
18 .IX "Network File System" "version-2 protocol specification"
41 attach remote directory trees to some local file system.
93 directories that inherently have state -- what good would a file be
114 NFS assumes a file system that is hierarchical, with directories as
115 all but the bottom-level files. Each entry in a directory (file,
120 file names) in the name. A "file system" is a tree on a single
[all …]
/freebsd/usr.bin/truncate/tests/
H A Dtruncate_test.sh44 # Helper function that create the file stderr.txt that contains the string
52 # Helper function that create the file stderr.txt that contains the expected
59 "usage: truncate [-c] -s [+|-|%|/]size[K|k|M|m|G|g|T|t] file ..."
60 _custom_create_file print " truncate [-c] -r rfile file ..."
61 …le print " truncate [-c] -d [-o offset[K|k|M|m|G|g|T|t]] -l length[K|k|M|m|G|g|T|t] file ..."
75 atf_check -s not-exit:0 -e file:stderr.txt truncate -7 -s0 output.txt
90 atf_check -s not-exit:0 -e file:stderr.txt truncate -s+1L output.txt
105 atf_check -s not-exit:0 -e file:stderr.txt \
126 # The existing file will be altered by truncate.
128 atf_check -e file:stderr.txt truncate -c -s1 exists.txt
[all …]
/freebsd/crypto/heimdal/appl/ftp/ftp/
H A Dftp.143 file transfer program
63 standard File Transfer Protocol.
90 (see below) file in the user's home directory for an entry describing
99 multiple file transfers.
105 Disables file name globbing.
153 .It Ic append Ar local-file Op Ar remote-file
154 Append a local file to a file on the remote machine.
156 .Ar remote-file
157 is left unspecified, the local file name is used in naming the
158 remote file after being altered by any
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h1 //===-- File.h --------------------------------------------------*- C++ -*-===//
29 /// \class File File.h "lldb/Host/File.h"
33 /// around host OS file functionality. But it
34 /// is also possible to subclass file to provide objects that have file
35 /// or stream functionality but are not backed by any host OS file.
36 class File : public IOObject {
39 static FILE *kInvalidStrea
75 File() : IOObject(eFDTypeFile){}; File() function
364 classof(const File * file) classof() argument
417 classof(const File * file) classof() argument
465 classof(const File * file) classof() argument
[all...]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/acl/off/
H A Dposixmode.ksh6 # The contents of this file are subject to the terms of the
8 # You may not use this file except in compliance with the License.
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
72 typeset file=$dir/file
79 # file owned by root
80 log_must touch $file
81 log_must chown :$wheel $file
83 log_must rm $file
85 log_must touch $file
86 log_must chown :$wheel $file
[all …]
/freebsd/share/doc/usd/13.viref/
H A Dex.cmd.roff6 .\" See the LICENSE file for redistribution information.
13 .KY "<end-of-file>"
14 .IP "<end-of-file>"
15 The end-of-file character is used to scroll the screen in the
50 Generally, a count past the end-of-file may be specified, e.g. the
53 in a 10 line file is acceptable, and will print from the current line
54 through the last line in the file.
79 .KY "file"
80 .IP "file"
81 A pattern used to derive a pathname; the default is the current file.
[all …]

12345678910>>...449