Searched refs:file (Results 276 - 300 of 737) sorted by relevance

<<11121314151617181920>>

/haiku/src/apps/activitymonitor/
H A DActivityWindow.h35 status_t _OpenSettings(BFile& file, uint32 mode);
/haiku/src/apps/expander/
H A DExpanderRules.cpp151 FILE* file = fopen(path, "r"); local
152 if (file == NULL)
157 while (fgets(buffer, 1024 - 1, file) != NULL) {
186 fclose(file);
/haiku/headers/os/package/hpkg/
H A DPackageReader.h40 status_t Init(BPositionIO* file, bool keepFile,
/haiku/src/apps/charactermap/
H A DCharacterWindow.h33 status_t _OpenSettings(BFile& file, uint32 mode);
/haiku/src/apps/stylededit/
H A DStyledEditView.h40 status_t WriteStyledEditFile(BFile* file);
/haiku/headers/private/debugger/files/
H A DLocatableFile.h51 virtual void LocatableFileChanged(LocatableFile* file) = 0;
/haiku/headers/private/debugger/model/
H A DFileSourceCode.h22 FileSourceCode(LocatableFile* file,
/haiku/headers/private/kernel/arch/x86/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/kernel/arch/m68k/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/src/kits/mail/
H A DHaikuMailFormatFilter.cpp100 HaikuMailFormatFilter::HeaderFetched(entry_ref& ref, BFile& file, argument
103 file.Seek(0, SEEK_SET);
111 if (file.GetSize(&size) == B_OK) {
116 ssize_t bytesRead = file.Read(buffer, size);
154 // Generate a file name for the incoming message. See also
163 // sorting by file name will give all the messages with the same subject in
210 HaikuMailFormatFilter::BodyFetched(const entry_ref& ref, BFile& file, argument
218 HaikuMailFormatFilter::MessageSent(const entry_ref& ref, BFile& file) argument
221 file.WriteAttr(B_MAIL_ATTR_FLAGS, B_INT32_TYPE, 0, &flags, sizeof(int32));
222 file
[all...]
H A DMailMessage.cpp50 BEmailMessage::BEmailMessage(BPositionIO* file, bool own, uint32 defaultCharSet) argument
64 fData = file;
66 if (file != NULL)
67 SetToRFC822(file, ~0L);
388 if (BFile* file = dynamic_cast<BFile*>(fData)) {
389 status_t status = file->ReadAttr(B_MAIL_ATTR_NAME, B_STRING_TYPE, 0,
396 // a file since only the BeMail GUI calls this.
462 BFile* file = dynamic_cast<BFile*>(fData); local
463 if (file == NULL)
467 size_t read = file
727 RenderToRFC822(BPositionIO* file) argument
916 BFile file; local
[all...]
/haiku/src/kits/media/
H A DTrackReader.cpp73 BTrackReader::BTrackReader(BFile *file, media_raw_audio_format const &format) : argument
83 if (file == NULL)
85 if (file->InitCheck() != B_OK)
88 fMediaFile = new BMediaFile(file);
94 ERROR("BTrackReader: no tracks in file\n");
115 ERROR("BTrackReader: no audio track in file\n");
/haiku/src/apps/mediaplayer/supplier/
H A DSubTitlesSRT.cpp19 SubTitlesSRT::SubTitlesSRT(BFile* file, const char* name) argument
25 if (file == NULL)
27 if (file->InitCheck() != B_OK)
30 FileReadWrite lineProvider(file);
58 "file: %" B_PRId32 ", expected: %" B_PRId32 ", line %"
132 // text in the subtitle file.
/haiku/src/bin/rc/
H A Drdef.h2 * @file rdef.h
4 * Public header file for the librdef shared library. Programs that want to
5 * use librdef should include this file, and link to librdef.so.
49 * Whether to overwrite or merge with the output file. With this flag, the
50 * compiler will add the resources to the output file (if it exists). When
51 * something goes wrong, the output file is not deleted (although it may
53 * the contents of the output file if it already existed, and the file is
65 * new header file.
80 /** Could not write the output file
[all...]
/haiku/src/bin/addattr/
H A Dmain.cpp109 " or: %s [-f value-from-file] [-t type|-c code] [ -P ] attr file1 [file2...]\n\n"
176 // retrieve attribute value from file
177 BFile file; local
179 status_t status = file.SetTo(optarg, B_READ_ONLY);
181 ERR("can't read attribute value from file %s: %s\n",
186 status = file.GetSize(&size);
199 status = file.Read(attrValue, size);
251 // to add the attribute to the file(s)
264 ERR("can't add attribute to file %s: %s\n", argv[optind],
/haiku/src/apps/webpositive/
H A DDownloadWindow.h44 bool _OpenSettingsFile(BFile& file, uint32 mode);
/haiku/src/kits/network/libnetapi/
H A DSSL.cpp47 static void _LockingFunction(int mode, int n, const char * file, int line) argument
/haiku/src/bin/
H A Dsettype.cpp20 "Usage: %s <options> <file> ...\n"
129 // file
142 fprintf(stderr, "Error: No file specified.\n");
155 // check, whether the file exists
159 fprintf(stderr, "Error: Can't access file \"%s\": %s\n",
166 fprintf(stderr, "Error: \"%s\": No such file or directory.\n",
174 fprintf(stderr, "Error: \"%s\" is not a file. Signatures can only "
180 // open the file
181 BFile file; local
183 BNode &node = (signature ? file
[all...]
H A Dleak_analyser.sh11 A file containing the allocations with stack traces from
14 To generate such a file run a program with the following
15 environment variables prefixed and pipe the output to a file:
17 LD_PRELOAD=libroot_debug.so MALLOC_DEBUG=ges50 program > file
H A Dxres.cpp33 " %s -l <file> ...\n"
44 " <input file>\n"
45 " - Add the resources read from file <input file> to the current\n"
46 " output file. The file can either be a resource file or an\n"
47 " executable file.\n"
48 " -a <type>:<id>[:<name>] ( <file> | -s <data> )\n"
49 " - Add a resource to the current output file
222 BFile file; local
333 BFile file; local
401 BFile file; local
800 const char *file = next_arg(argi); local
[all...]
/haiku/headers/private/kernel/arch/riscv64/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.cpp51 // Create a PlaylistItem if entry is a valid file path or URL
98 BFile file(&ref, B_READ_ONLY);
99 FileReadWrite lineReader(&file);
115 // The total number of tracks in the PLS file, taken from the NumberOfEntries line.
118 // The version of the PLS standard used in this playlist file, taken from the Version line.
124 BFile file(&ref, B_READ_ONLY);
125 FileReadWrite lineReader(&file);
131 printf("Error - Invalid .pls file\n");
152 // from the .pls file
176 // The file shoul
[all...]
/haiku/src/tests/
H A Dqemu-boot-test14 echo "Usage: $0 <arch> <bios|efi|bios:(file)|kernel:(file)> <image>"
99 $EMULATOR -drive file=$TEST_FILE,format=raw,if=ide
106 $EMULATOR -drive if=none,id=stick,file=$TEST_FILE,format=raw -device qemu-xhci,id=xhci -device usb-storage,bus=xhci.0,drive=stick
126 -drive file=$TEST_FILE,format=raw,if=none,id=x0
149 -drive file=$TEST_FILE,format=raw,if=none,id=x0
/haiku/src/servers/registrar/
H A DRecentEntries.h26 /*! \file RecentEntries.h
62 status_t Save(FILE* file, const char *description, const char *tag);
H A DRecentApps.h26 /*! \file RecentApps.h
54 status_t Save(FILE* file);

Completed in 293 milliseconds

<<11121314151617181920>>