Searched refs:file (Results 451 - 475 of 737) sorted by relevance

<<11121314151617181920>>

/haiku/headers/libs/agg/
H A Dagg_gsv_text.h50 void load_font(const char* file);
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeonAddOn.cpp130 BFile file( settings_path.Path(), B_WRITE_ONLY | B_CREATE_FILE );
132 settings.Flatten( &file );
140 BFile file( settings_path.Path(), B_READ_ONLY );
142 settings.Unflatten( &file );
/haiku/src/apps/switcher/
H A DLaunchButton.cpp263 BFile file(ref, B_READ_ONLY);
265 if (info.SetTo(&file) == B_OK) {
352 BFile file(fRef, B_READ_ONLY);
355 if (appFileInfo.SetTo(&file) == B_OK
/haiku/src/apps/mediaconverter/
H A DMediaConverterWindow.h5 // This file may be used under the terms of the Be Sample Code License.
50 bool AddSourceFile(BMediaFile* file,
/haiku/src/servers/package/
H A DPackage.h22 Package(PackageFile* file);
/haiku/src/apps/showimage/
H A DImageCache.cpp233 BFile file;
234 status_t status = file.SetTo(&queueEntry->ref, B_READ_ONLY);
259 status = roster->Identify(&file, &ioExtension, &info, 0, NULL,
262 status = roster->Translate(&file, &info, &ioExtension, &outstream,
/haiku/src/servers/print/
H A DPrintServerApp.h58 bool OpenSettings(BFile& file, const char* name,
/haiku/headers/private/mail/
H A Dmail_util.h71 ssize_t readfoldedline(FILE *file, char **buffer, size_t *buflen);
74 // terminated or not terminated at all (last line in file situation)) from a
77 // was a memory allocation error or file read error. It will return zero only
78 // when trying to read at end of file. *header, *file and &in are left
/haiku/src/kits/debugger/debug_info/
H A DDebuggerImageDebugInfo.cpp122 DebuggerImageDebugInfo::AddSourceCodeInfo(LocatableFile* file, argument
H A DDwarfStackFrameDebugInfo.cpp168 image_id imageID, DwarfFile* file, CompilationUnit* compilationUnit,
175 fTypeContext(new(std::nothrow) DwarfTypeContext(architecture, imageID, file,
260 const char* file; local
263 directory, file, line, column);
167 DwarfStackFrameDebugInfo(Architecture* architecture, image_id imageID, DwarfFile* file, CompilationUnit* compilationUnit, DIESubprogram* subprogramEntry, GlobalTypeLookup* typeLookup, GlobalTypeCache* typeCache, target_addr_t instructionPointer, target_addr_t framePointer, target_addr_t relocationDelta, DwarfTargetInterface* targetInterface, RegisterMap* fromDwarfRegisterMap) argument
H A DDwarfStackFrameDebugInfo.h39 image_id imageID, DwarfFile* file,
/haiku/headers/private/debugger/debug_info/
H A DSpecificImageDebugInfo.h91 virtual status_t AddSourceCodeInfo(LocatableFile* file,
/haiku/src/preferences/keymap/
H A DKeymapWindow.h70 status_t _GetSettings(BFile& file, int mode) const;
/haiku/headers/os/app/
H A DNotification.h61 status_t SetOnClickFile(const entry_ref* file);
/haiku/src/tools/elfsymbolpatcher/
H A DElfFile.h24 // Description: Interface declarations of classes for accessing ELF file,
90 ElfRelocationIterator(ElfFile* file);
/haiku/src/kits/storage/
H A DMime.cpp328 BFile file; local
339 status = file.SetTo(path.Path(), B_READ_ONLY);
341 status = file.GetSize(&size);
356 if (file.Read(*_data, size) != size) {
/haiku/src/bin/network/arp/
H A Darp.cpp96 " -f - read ARP entries from file\n"
252 FILE *file = fopen(filename, "r"); local
253 if (file == NULL) {
254 fprintf(stderr, "%s: Could not open file: %s\n", kProgramName, strerror(errno));
261 while (fgets(line, sizeof(line), file) != NULL) {
331 fclose(file);
386 // set from file
/haiku/headers/build/os/storage/
H A DMimeType.h6 \file MimeType.h
74 /*! The BMimeType class provides access to the file typing system, which
77 - Access to file type information in the MIME database
106 /* These functions are for managing data in the meta mime file*/
112 static status_t GuessMimeType(const entry_ref *file, BMimeType *type);
/haiku/src/kits/package/
H A DRepositoryInfo.cpp310 // This is a temporary measure because older versions of the file
339 BFile file(&entry, B_READ_ONLY);
340 status_t result = file.InitCheck();
345 if ((result = file.GetSize(&size)) != B_OK)
353 if ((result = file.Read(buffer, size)) < size) {
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmalloc.h38 void *_kernel_contigmalloc(const char *file, int line, size_t size, int flags,
H A Dktr.h131 void ktr_tracepoint(u_int mask, const char *file, int line,
136 #define ktr_tracepoint(mask, file, line, format, arg1, arg2, arg3, arg4, arg5, arg6) \
137 driver_printf("(%s:%i) " format "\n", file, line, arg1, arg2, arg3, arg4, arg5, arg6)
/haiku/src/apps/poorman/
H A DPoorManServer.cpp395 BFile file(hc->expnfilename, B_READ_ONLY);
396 if (file.InitCheck() != B_OK)
407 log.SetTo("Sending file: ");
421 file.Seek(hc->first_byte_index, SEEK_SET);
423 bytesRead = file.Read(buf, POOR_MAN_BUF_SIZE);
431 log.SetTo("Error sending file: ");
/haiku/src/apps/powerstatus/
H A DPowerStatusView.h94 status_t _GetSettings(BFile& file, int mode);
/haiku/src/tools/restest/
H A Drestest.cpp20 " -l, --list list each file's resources (short version)\n"
21 " -L, --list-long list each file's resources (long version)\n"
23 " -w, --write-test write the file resources (in memory only) and\n"
24 " compare the data with the file's\n"
181 // check if the file exists
187 throw Exception("Entry doesn't exist or is no regular file.");
189 // open the file
190 BFile file(filename, B_READ_ONLY);
191 error = file.InitCheck();
193 throw Exception(error, "Failed to open file
[all...]
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.cpp4 * This file may be used under the terms of the MIT License.
45 fFileEntry.file.SetAttribs(EXFAT_ENTRY_ATTRIB_SUBDIR);
86 fFileEntry.file.SetAttribs(EXFAT_ENTRY_ATTRIB_SUBDIR);
145 if (fFileEntry.file.Attribs() & EXFAT_ENTRY_ATTRIB_SUBDIR)

Completed in 231 milliseconds

<<11121314151617181920>>