Searched refs:file (Results 151 - 175 of 737) sorted by relevance

1234567891011>>

/haiku/headers/private/kernel/boot/platform/bios_ia32/
H A Dplatform_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/kernel/arch/sparc/
H A Darch_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
/haiku/3rdparty/kallisti5/
H A DlicenseReport.rb7 # Give a file, and I guess the license.
14 @file = ARGV.first
26 return "empty file" if lines == nil
39 puts "#{@file}: #{check_license(@file)}"
/haiku/headers/private/kernel/arch/ppc/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/src/add-ons/network_settings/dialup/
H A DMessageDriverSettingsUtils.h27 extern bool WriteMessageDriverSettings(BFile& file, const BMessage& message);
H A DMessageDriverSettingsUtils.cpp170 WriteParameter(BFile& file, const BMessage& parameter, int32 level) argument
208 file.Write(line.String(), line.Length());
214 WriteParameter(file, subParameter, level + 1);
218 file.Write(line.String(), line.Length());
226 WriteMessageDriverSettings(BFile& file, const BMessage& message) argument
228 if(file.InitCheck() != B_OK || !file.IsWritable())
231 file.SetSize(0);
232 file.Seek(0, SEEK_SET);
238 file
[all...]
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dsimple-file-system.h3 // found in the LICENSE file.
8 #include <efi/protocol/file.h>
/haiku/src/apps/expander/
H A DExpanderSettings.h52 status_t Open(BFile* file, int32 mode);
/haiku/3rdparty/mmu_man/scripts/
H A Dbootstrap-haiku.sh34 file="${url##*/}"
40 #if [ ! -e "$file" ]; then
41 log "Downloading latest revision: $file"
50 unzip "$file"
82 #file=haiku-nightly-r37641-x86gcc2hybrid-raw.zip
/haiku/src/apps/debuganalyzer/util/
H A DDataSource.h32 virtual status_t OpenFile(BFile& file) = 0;
43 virtual status_t OpenFile(BFile& file);
57 virtual status_t OpenFile(BFile& file);
/haiku/src/preferences/media/
H A DMedia.cpp32 BFile file(path.Path(),B_READ_ONLY);
33 if (file.InitCheck()==B_OK) {
36 while ((size = file.Read(buffer, 255)) > 0) {
/haiku/src/tests/apps/haikudepot/
H A DTarArchiveServiceTest.cpp62 /*! This method will store the tar file sample into a temporary file and will
63 return the pathname to that file.
70 BFile* file = new BFile(path, O_WRONLY | O_CREAT); local
71 ObjectDeleter<BFile> tarIoDeleter(file);
72 status_t result = file->WriteExactly(kSampleTarPayload, kSampleTarLength);
/haiku/3rdparty/docker/cross-compiler/
H A Dbuild-toolchain.sh3 # file at the top-level directory of this distribution and at
9 # option. This file may not be copied, modified, or distributed
68 for file in $SYSROOT/../bin/*; do
69 ln -s $file /bin/$(basename $file)
73 for file in $SYSROOT_SECONDARY/../bin/*; do
74 ln -s $file /bin/$(basename $file)-$SECONDARY_ARCH
/haiku/src/tools/vmdkimage/
H A Dvmdkimage.cpp35 "[-u <uuid>] [-f] <file>\n");
36 printf(" or: vmdkimage -d <file>\n");
37 printf(" -d, --dump dumps info for the image file\n");
38 printf(" -i, --imagesize size of raw partition image file\n");
40 printf(" -f, --file the raw partition image file\n");
54 fprintf(stderr, "Error: couldn't open file %s (%s)\n", filename,
153 const char *file = NULL; local
171 {"file", required_argument, 0, 'f'},
218 file
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlogging.c8 * This program/include file is free software; you can redistribute it and/or
13 * This program/include file is distributed in the hope that it will be
20 * distribution in the file COPYING); if not, write to the Free Software
305 * @file: File in which the log line occurred
319 int ntfs_log_redirect(const char *function, const char *file, argument
331 ret = ntfs_log.handler(function, file, line, level, data, format, args);
342 * @file: File in which the log line occurred
362 const char *file __attribute__((unused)),
426 * @file: File in which the log line occurred
444 int ntfs_log_handler_fprintf(const char *function, const char *file, argument
557 ntfs_log_handler_stdout(const char *function, const char *file, int line, u32 level, void *data, const char *format, va_list args) argument
590 ntfs_log_handler_outerr(const char *function, const char *file, int line, u32 level, void *data, const char *format, va_list args) argument
622 ntfs_log_handler_stderr(const char *function, const char *file, int line, u32 level, void *data, const char *format, va_list args) argument
[all...]
/haiku/src/apps/musiccollection/
H A DMusicFileListView.h22 FileListItem(const char* text, WatchedFile* file = NULL)
25 fFile(file)
118 WatchedFile* file = item->File(); local
119 if (file != NULL) {
120 message.AddRef("refs", &(file->entry));
H A DFileMonitor.h47 virtual void EntryCreated(WatchedFile* file) {}; argument
48 virtual void EntryRemoved(WatchedFile* file) {}; argument
49 virtual void EntryMoved(WatchedFile* file) {}; argument
50 virtual void StatChanged(WatchedFile* file) {}; argument
51 virtual void AttrChanged(WatchedFile* file) {}; argument
/haiku/src/bin/
H A Dfortune.c81 const char *file = path; local
92 file = argv[1 + (rand() % (argc - 1))];
98 fd = open(file, O_RDONLY, 0);
100 fprintf(stderr, "Couldn't open %s: %s\n", file, strerror(errno));
112 fd = choose_file(file);
114 fprintf(stderr, "Could not find any fortune file.\n");
131 fprintf(stderr, "Could not read from fortune file: %s\n",
/haiku/headers/private/storage/
H A DResourceFile.h10 \file ResourceFile.h
37 \brief Represents a file capable of containing resources.
39 This class provides access to the resources of a file.
40 Basically a ResourceFile object can be set to a file, load infos for the
43 resources to the file (WriteResources()).
51 of resources to the file.
62 status_t SetTo(BFile* file, bool clobber = false);
74 void _InitFile(BFile& file, bool clobber);
76 void _InitELFFile(BFile& file);
80 void _InitELFXFile(BFile& file, uint6
[all...]
/haiku/src/libs/agg/src/dbg_new/
H A Dagg_dbg_new.cpp121 watchdoggy::watchdoggy(const char* file, int line, bool report_all) argument
133 if(file == 0) file = "";
134 int len = strlen(file);
136 ::memcpy(dbg_new_info[dbg_new_level].file_name, file, len);
142 file,
280 void* dbg_malloc(unsigned size, const char* file, int line) argument
285 printf("%u allocated at %08x %s %d\n", size, ptr, file, line);
302 unsigned fname_len = ::strlen(file) + 1;
338 ::strcpy(inf_ptr, file);
437 char file[512]; local
482 operator new(size_t size, const char* file, int line) argument
488 operator new [](size_t size, const char* file, int line) argument
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DMessageDriverSettingsUtils.cpp168 WriteParameter(BFile& file, const BMessage& parameter, int32 level) argument
206 file.Write(line.String(), line.Length());
212 WriteParameter(file, subParameter, level + 1);
216 file.Write(line.String(), line.Length());
224 WriteMessageDriverSettings(BFile& file, const BMessage& message) argument
226 if (file.InitCheck() != B_OK || !file.IsWritable())
229 file.SetSize(0);
230 file.Seek(0, SEEK_SET);
236 file
[all...]
/haiku/src/apps/bootmanager/
H A DFileSelectionPage.cpp85 fSettings->ReplaceString("file", fFile->Text());
102 BString file; local
103 fSettings->FindString("file", &file);
113 fFile = new BTextControl(rect, "file",
115 file.String(), new BMessage());
135 // center "file" text field and "select" button vertically
166 BPath file(fFile->Text());
169 if (file.GetParent(&parent) == B_OK &&
176 if (fMode == B_SAVE_PANEL && file
[all...]
/haiku/src/libs/compat/freebsd_network/tools/
H A Dusbdevs2h.awk43 function header(file)
45 printf("/*\n") > file
47 > file
48 printf(" *\n") > file
49 printf(" * generated from:\n") > file
50 printf(" *\t%s\n", VERSION) > file
51 printf(" */\n") > file
/haiku/src/apps/mail/
H A DStatus.cpp118 BFile file; local
147 if ((result = dir.CreateFile(newName, &file, true)) == B_NO_ERROR)
155 node = new BNodeInfo(&file);
158 file.Write(fStatus->Text(), strlen(fStatus->Text()) + 1);
159 file.SetSize(file.Position());
160 file.WriteAttr(INDEX_STATUS, B_STRING_TYPE, 0, fStatus->Text(),
/haiku/src/tests/add-ons/kernel/file_systems/random_read/
H A Drandom_read.cpp6 /*! Tests if the read functions of a file system work correctly by reading
7 arbitrary bytes at arbitrary positions of a file previously created.
10 of the file. It currently only counts numbers, beginning from zero,
42 BFile file; local
43 status_t status = file.SetTo(name,
46 fprintf(stderr, "Could not create test file: %s!\n", strerror(status));
52 if (file.Write(&i, sizeof(test_t)) != sizeof(test_t)) {
53 fprintf(stderr,"Could not create the whole test file!\n");
63 BFile file; local
64 status_t status = file
[all...]

Completed in 144 milliseconds

1234567891011>>