Searched refs:file (Results 51 - 75 of 1427) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Diovdprintf.c2 This file is part of the GNU C Library.
19 As a special exception, if you link the code in this file with
23 however invalidate any other reasons why the executable file
42 tmpfil.file._lock = NULL;
44 _IO_no_init (&tmpfil.file, _IO_USER_LOCK, 0, &wd, &INTUSE(_IO_wfile_jumps));
50 if (INTUSE(_IO_file_attach) (&tmpfil.file, d) == NULL)
55 tmpfil.file._IO_file_flags =
56 (_IO_mask_flags (&tmpfil.file, _IO_NO_READS,
60 done = INTUSE(_IO_vfprintf) (&tmpfil.file, format, arg);
62 _IO_FINISH (&tmpfil.file);
[all...]
/haiku-fatelf/src/bin/gdb/
H A Dmissing26 # distribute this file as part of a program that contains a
55 # a file that requires a minimum version. In this case we
77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
83 help2man touch the output file
85 makeinfo touch the output file
195 file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
196 test -z "$file" && file
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Di387-tdep.c6 This file is part of GDB.
45 print_i387_value (char *raw, struct ui_file *file) argument
60 fprintf_filtered (file, " %-+27.19Lg", (long double) value);
62 fprintf_filtered (file, " %-+27.19g", (double) value);
69 print_i387_ext (unsigned char *raw, struct ui_file *file) argument
87 fprintf_filtered (file, " %cInf", (sign ? '-' : '+'));
90 fputs_unfiltered (" Real Indefinite (QNaN)", file);
93 fputs_filtered (" QNaN", file);
96 fputs_filtered (" SNaN", file);
100 print_i387_value (raw, file);
121 print_i387_status_word(unsigned int status, struct ui_file *file) argument
151 print_i387_control_word(unsigned int control, struct ui_file *file) argument
205 i387_print_float_info(struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args) argument
[all...]
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dhostname.cpp43 int file = open(path, O_WRONLY | O_CREAT, 0644); local
44 if (file < 0)
49 if (write(file, hostName, nameSize) != (ssize_t)nameSize
50 || write(file, "\n", 1) != 1) {
51 close(file);
55 close(file);
63 // look up hostname from network settings hostname file
71 int file = open(path, O_RDONLY); local
72 if (file < 0)
77 int length = read(file, hostNam
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A Dcache.cpp4 ** This file may be used under the terms of the OpenBeOS License.
20 * file in memory, all the time.
28 init_cache(BFile */*file*/,int32 /*blockSize*/)
34 shutdown_cache(BFile *file,int32 blockSize) argument
42 file->WriteAt(i * blockSize,buffer,blockSize);
49 readBlocks(BFile *file,uint32 num,uint32 size) argument
57 if (file->ReadAt(i * size,buffer,size) < B_OK)
65 cached_write(BFile *file, off_t num,const void *data,off_t numBlocks, int blockSize) argument
68 if (file == NULL)
86 get_block(BFile *file, off_ argument
100 release_block(BFile *file, off_t num) argument
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dopenat.h42 int openat_permissive (int fd, char const *file, int flags, mode_t mode,
61 chownat (int fd, char const *file, uid_t owner, gid_t group) argument
63 return fchownat (fd, file, owner, group, 0);
67 lchownat (int fd, char const *file, uid_t owner, gid_t group) argument
69 return fchownat (fd, file, owner, group, AT_SYMLINK_NOFOLLOW);
73 chmodat (int fd, char const *file, mode_t mode) argument
75 return fchmodat (fd, file, mode, 0);
79 lchmodat (int fd, char const *file, mode_t mode) argument
81 return fchmodat (fd, file, mode, AT_SYMLINK_NOFOLLOW);
102 accessat (int fd, char const *file, in argument
108 euidaccessat(int fd, char const *file, int mode) argument
[all...]
H A Dgetfilecon.c37 int getfilecon (char const *file, security_context_t *con);
38 int lgetfilecon (char const *file, security_context_t *con);
43 result context to NULL, or via a modern kernel+lib operating on a file
69 rpl_getfilecon (char const *file, security_context_t *con) argument
71 int ret = getfilecon (file, con);
76 rpl_lgetfilecon (char const *file, security_context_t *con) argument
78 int ret = lgetfilecon (file, con);
H A Dcloseout.h28 void close_stdout_set_file_name (const char *file);
/haiku-fatelf/build/scripts/
H A Dgenerate_CountryFlags.sh9 for file in *
11 id=`echo "$file" | cut -b -2`
12 name=`echo "${file%%.*}" | cut -b 4-`
16 tail -n +3 "$file" >> $destination
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPrinterPrefs.cpp57 * Init the settings message from settings file
66 BFile file; local
75 status = file.SetTo(fSettingsPath.Path(), B_READ_ONLY);
77 status = settings->Unflatten(&file);
93 BFile file; local
95 status = file.SetTo(fSettingsPath.Path(), B_WRITE_ONLY | B_CREATE_FILE);
97 return settings->Flatten(&file);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Ddirname.h1 /* Take file names apart into directory and base names.
61 char *base_name (char const *file);
62 char *dir_name (char const *file);
63 size_t base_len (char const *file);
64 size_t dir_len (char const *file);
65 char *last_component (char const *file);
67 bool strip_trailing_slashes (char *file);
H A Dlchown.c49 lchown (const char *file, uid_t uid, gid_t gid) argument
54 if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
61 return chown (file, uid, gid);
/haiku-fatelf/src/preferences/time/
H A DTimeSettings.cpp42 BFile file(path.Path(), B_READ_ONLY);
43 if (file.InitCheck() == B_OK) {
45 if (file.Read(&tmp, sizeof(BPoint)) == sizeof(BPoint))
63 BFile file(path.Path(), B_WRITE_ONLY | B_CREATE_FILE);
64 if (file.InitCheck() == B_OK)
65 file.Write(&leftTop, sizeof(BPoint));
/haiku-fatelf/src/system/libroot/posix/glibc/include/
H A Dfcntl.h9 extern int __libc_open64 (const char *file, int oflag, ...);
10 extern int __libc_open (const char *file, int oflag, ...);
12 extern int __libc_creat (const char *file, mode_t mode);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/rename/
H A Drename.c12 int file; local
19 file = open("__file", O_CREAT | O_TRUNC | O_WRONLY);
20 if (file < 0)
22 close(file);
30 // create a file in that directory
31 file = open("__directory/1", O_CREAT | O_WRONLY);
32 close(file);
37 printf(" %s\n",rename("__file", "__directory") ? "Could not rename file!" : "Rename succeeded.");
43 // rename the file and try to remove the directory
45 printf(" %s\n", rename("__file","__directory") ? "Could not rename file!"
[all...]
/haiku-fatelf/src/apps/text_search/
H A DModel.cpp68 BFile file; local
69 status_t status = _OpenFile(&file, PREFS_FILE);
73 status = file.Lock();
79 if (file.ReadAttr("RecurseDirs", B_INT32_TYPE, 0, &value,
83 if (file.ReadAttr("RecurseLinks", B_INT32_TYPE, 0, &value,
87 if (file.ReadAttr("SkipDotDirs", B_INT32_TYPE, 0, &value,
91 if (file.ReadAttr("CaseSensitive", B_INT32_TYPE, 0, &value,
95 if (file.ReadAttr("EscapeText", B_INT32_TYPE, 0, &value, sizeof(int32)) > 0)
98 if (file.ReadAttr("TextOnly", B_INT32_TYPE, 0, &value, sizeof(int32)) > 0)
101 if (file
130 BFile file; local
238 BFile file; local
270 BFile file; local
308 _OpenFile(BFile* file, const char* name, uint32 openMode, directory_which which, BVolume* volume) const argument
[all...]
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dmissing26 # distribute this file as part of a program that contains a
57 # a file that requires a minimum version. In this case we
79 aclocal touch file \`aclocal.m4'
80 autoconf touch file \`configure'
81 autoheader touch file \`config.h.in'
82 autom4te touch the output file, or create a stub one
86 help2man touch the output file
88 makeinfo touch the output file
198 file=`echo "$*" | sed -n "$sed_output"`
199 test -z "$file"
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dmissing24 # distribute this file as part of a program that contains a
55 # a file that requires a minimum version. In this case we
77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
80 autom4te touch the output file, or create a stub one
84 help2man touch the output file
86 makeinfo touch the output file
206 file=`echo "$*" | sed -n "$sed_output"`
207 test -z "$file"
[all...]
/haiku-fatelf/headers/private/kernel/boot/platform/bios_ia32/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku-fatelf/headers/private/kernel/boot/platform/cfe/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku-fatelf/headers/private/kernel/boot/platform/openfirmware/
H A Dplatform_stage2_args.h9 # error This file is included from <boot/stage2_args.h> only
/haiku-fatelf/src/add-ons/media/plugins/asf_reader/libasf/
H A Ddata.h1 /* libasf - An Advanced Systems Format media file parser
25 int asf_data_get_packet(asf_packet_t *packet, asf_file_t *file);
/haiku-fatelf/src/add-ons/print/drivers/postscript/
H A DPPDParser.cpp16 PPDParser::PPDParser(BFile& file) argument
18 InitData(file);
24 BFile file(&dir, fname, B_READ_ONLY);
25 InitData(file);
31 BFile file(path.Path(), B_READ_ONLY);
32 InitData(file);
37 PPDParser::InitData(BFile& file) argument
39 // Check if file exists...
40 if ((fInitErr = file.InitCheck()) != B_OK)
43 // Read entire file int
[all...]
/haiku-fatelf/src/apps/debuganalyzer/util/
H A DDataSource.cpp40 BFile* file = new(std::nothrow) BFile; local
41 if (file == NULL)
44 status_t error = OpenFile(*file);
46 delete file;
50 *_io = file;
77 PathDataSource::OpenFile(BFile& file) argument
79 return file.SetTo(fPath.Path(), B_READ_ONLY);
119 EntryRefDataSource::OpenFile(BFile& file) argument
121 return file.SetTo(&fRef, B_READ_ONLY);
/haiku-fatelf/src/bin/addattr/
H A DaddAttr.h14 status_t addAttr(const char *file, type_code attrType, const char *attrName,

Completed in 206 milliseconds

1234567891011>>