Searched refs:file (Results 76 - 100 of 1427) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/coreutils/lib/
H A Dfile-set.h7 extern void record_file (Hash_table *ht, char const *file,
11 extern bool seen_file (Hash_table const *ht, char const *file,
H A Dchown.c36 chown (const char *file _GL_UNUSED, uid_t uid _GL_UNUSED,
48 /* The results of open() in this file are not used with fchdir,
60 rpl_chown (const char *file, uid_t uid, gid_t gid) argument
69 if (stat (file, &st))
78 /* Stat file to get id(s) that should remain unchanged. */
79 if (!stat_valid && stat (file, &st))
93 file (but this can fail due to lack of read or write permission) and
96 int fd = open (file, O_RDONLY | open_flags);
99 && 0 <= (fd = open (file, O_WRONLY | open_flags))))
130 size_t len = strlen (file);
[all...]
H A Dfchownat.c36 Invoke chown or lchown on file, FILE, using OWNER and GROUP, in the
67 local_lchownat (int fd, char const *file, uid_t owner, gid_t group);
85 rpl_fchownat (int fd, char const *file, uid_t owner, gid_t group, int flag) argument
89 return local_lchownat (fd, file, owner, group);
93 size_t len = strlen (file);
95 if (len && file[len - 1] == '/')
97 if (statat (fd, file, &st))
100 return fchownat (fd, file, owner, group, 0);
104 return fchownat (fd, file, owner, group, flag);
H A Dopen-safer.c29 open_safer (char const *file, int flags, ...) argument
45 return fd_safer (open (file, flags, mode));
H A Dopenat-safer.c29 openat_safer (int fd, char const *file, int flags, ...) argument
45 return fd_safer (openat (fd, file, flags, mode));
H A Dutimens.h15 lutimensat (int fd, char const *file, struct timespec const times[2]) argument
17 return utimensat (fd, file, times, AT_SYMLINK_NOFOLLOW);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dfile-set.h7 extern void record_file (Hash_table *ht, char const *file,
11 extern bool seen_file (Hash_table const *ht, char const *file,
H A Dopenat.h66 int openat (int fd, char const *file, int flags, /* mode_t mode */ ...);
67 int openat_permissive (int fd, char const *file, int flags, mode_t mode,
74 int fstatat (int fd, char const *file, struct stat *st, int flag);
76 int unlinkat (int fd, char const *file, int flag);
88 int rpl_fstatat (int fd, char const *file, struct stat *st, int flag);
95 int mkdirat (int fd, char const *file, mode_t mode);
98 int fchmodat (int fd, char const *file, mode_t mode, int flag);
99 int fchownat (int fd, char const *file, uid_t owner, gid_t group, int flag);
105 chownat (int fd, char const *file, uid_t owner, gid_t group) argument
107 return fchownat (fd, file, owne
111 lchownat(int fd, char const *file, uid_t owner, gid_t group) argument
117 chmodat(int fd, char const *file, mode_t mode) argument
123 lchmodat(int fd, char const *file, mode_t mode) argument
[all...]
/haiku-fatelf/src/bin/less/
H A Dmkinstalldirs10 for file in ${1+"$@"} ; do
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
/haiku-fatelf/src/bin/sharutils/
H A Dmkinstalldirs10 for file in ${1+"$@"} ; do
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
/haiku-fatelf/src/bin/sharutils/src/
H A Dencode.c32 write_encoded_bytes (group, file)
34 FILE *file;
42 putc (ENCODE_BYTE (c1), file); local
43 putc (ENCODE_BYTE (c2), file); local
44 putc (ENCODE_BYTE (c3), file); local
45 putc (ENCODE_BYTE (c4), file); local
54 read_raw_bytes (file, buffer, buffer_size)
55 FILE *file;
64 character = getc (file);
73 | Copy INPUT file t
[all...]
/haiku-fatelf/src/libs/termcap/
H A Dmkinstalldirs9 for file
11 set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
/haiku-fatelf/src/tools/checkstyle/
H A Dutils.py19 file = open(outputFileName, 'w')
20 file.write("""
32 file.write(fileName + "<br>")
33 file.write("</p>")
34 file.close()
38 file = open(outputFileName, 'a')
39 file.write("""
44 file.close()
51 file = open(outputFileName, 'a')
52 file
[all...]
/haiku-fatelf/src/libs/print/libprint/
H A DPrintProcess.cpp14 PictureData::PictureData(BFile *file) argument
17 DBGMSG(("1: current seek position = 0x%x\n", (int)file->Position()));
19 file->Read(&point, sizeof(BPoint));
20 file->Read(&rect, sizeof(BRect));
27 DBGMSG(("2: current seek position = 0x%x\n", (int)file->Position()));
29 picture->Unflatten(file);
31 DBGMSG(("3: current seek position = 0x%x\n", (int)file->Position()));
47 PageData::PageData(BFile *file, bool reverse) argument
49 fFile = file;
57 file
107 SpoolData(BFile *file, int page_count, int nup, bool reverse) argument
[all...]
/haiku-fatelf/src/system/boot/loader/
H A Dstdio.cpp36 vfprintf(FILE *file, const char *format, va_list list) argument
38 ConsoleNode *node = (ConsoleNode *)file;
72 fprintf(FILE *file, const char *format, ...) argument
77 int status = vfprintf(file, format, args);
85 fputc(int c, FILE *file) argument
87 if (file == NULL)
94 status = ((ConsoleNode *)file)->Write(&character, 1);
104 fputs(const char *string, FILE *file) argument
106 if (file == NULL)
109 status_t status = ((ConsoleNode *)file)
[all...]
/haiku-fatelf/src/bin/diffutils/config/
H A Dmissing22 # distribute this file as part of a program that contains a
67 aclocal touch file \`aclocal.m4'
68 autoconf touch file \`configure'
69 autoheader touch file \`config.h.in'
73 help2man touch the output file
75 makeinfo touch the output file
171 file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
172 test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
173 if test -f "$file"; the
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dmissing22 # distribute this file as part of a program that contains a
67 aclocal touch file \`aclocal.m4'
68 autoconf touch file \`configure'
69 autoheader touch file \`config.h.in'
73 help2man touch the output file
75 makeinfo touch the output file
171 file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
172 test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
173 if test -f "$file"; the
[all...]
/haiku-fatelf/src/tools/gensyscalls/
H A Dgensyscalls.cpp33 " <calls> - Output: The assembly source file "
36 " <dispatcher> - Output: The C source file to be included by "
38 " syscall dispatcher source file.\n"
42 " <table> - Output: A C source file containing an array "
45 " <strace> - Output: A C source file for strace "
314 // open the syscalls output file
315 ofstream file(filename, ofstream::out | ofstream::trunc);
316 if (!file.is_open())
331 file << "SYSCALL" << (paramSize / 4) << "("
338 // open the dispatcher output file
[all...]
/haiku-fatelf/headers/posix/
H A Dassert.h18 extern void __assert_fail(const char *assertion, const char *file,
22 extern void __assert_perror_fail(int error, const char *file,
/haiku-fatelf/src/add-ons/print/transports/shared/
H A DDbgMsg.h9 void DUMP_BFILE(BFile *file, const char *name);
14 #define DUMP_BFILE(file, name) (void)0
/haiku-fatelf/src/apps/expander/
H A DExpanderSettings.cpp58 read_data(BFile& file, T& value) argument
60 return file.Read(&value, sizeof(T)) == (ssize_t)sizeof(T);
81 BFile file; local
82 if (Open(&file, B_READ_ONLY) != B_OK)
97 if (read_data(file, unknown)
98 && read_data(file, automaticallyExpandFiles)
99 && read_data(file, closeWhenDone)
100 && read_data(file, destinationFolder)
101 && read_data(file, unknown)
102 && read_data(file, re
185 Open(BFile *file, int32 mode) argument
[all...]
/haiku-fatelf/src/apps/icon-o-matic/generic/support/
H A Dsupport_settings.cpp31 BFile file(path.Path(), B_READ_ONLY);
32 if ((ret = file.InitCheck()) == B_OK) {
33 ret = message->Unflatten(&file);
34 file.Unset();
54 BFile file(path.Path(),
56 if ((ret = file.InitCheck()) == B_OK) {
57 ret = message->Flatten(&file);
58 file.Unset();
/haiku-fatelf/src/apps/mediaconverter/
H A DMediaFileInfo.h3 This file may be used under the terms of the MIT License.
20 MediaFileInfo(BMediaFile* file = NULL);
21 status_t LoadInfo(BMediaFile* file);
/haiku-fatelf/src/bin/coreutils/man/
H A Dcksum.x2 cksum \- checksum and count the bytes in a file
H A Dcsplit.x2 csplit \- split a file into sections determined by context lines

Completed in 217 milliseconds

1234567891011>>