Lines Matching defs:BFile

25 // Creates an uninitialized BFile.
26 BFile::BFile()
33 // Creates a copy of the supplied BFile.
34 BFile::BFile(const BFile& file)
42 // Creates a BFile and initializes it to the file referred to by
44 BFile::BFile(const entry_ref* ref, uint32 openMode)
52 // Creates a BFile and initializes it to the file referred to by
54 BFile::BFile(const BEntry* entry, uint32 openMode)
62 // Creates a BFile and initializes it to the file referred to by
64 BFile::BFile(const char* path, uint32 openMode)
72 // Creates a BFile and initializes it to the file referred to by
75 BFile::BFile(const BDirectory *dir, const char* path, uint32 openMode)
84 BFile::~BFile()
95 // Re-initializes the BFile to the file referred to by the
98 BFile::SetTo(const entry_ref* ref, uint32 openMode)
124 // Re-initializes the BFile to the file referred to by the
127 BFile::SetTo(const BEntry* entry, uint32 openMode)
151 // Re-initializes the BFile to the file referred to by the
154 BFile::SetTo(const char* path, uint32 openMode)
175 // Re-initializes the BFile to the file referred to by the
179 BFile::SetTo(const BDirectory* dir, const char* path, uint32 openMode)
202 BFile::IsReadable() const
211 BFile::IsWritable() const
220 BFile::Read(void* buffer, size_t size)
231 BFile::ReadAt(off_t location, void* buffer, size_t size)
244 BFile::Write(const void* buffer, size_t size)
255 BFile::WriteAt(off_t location, const void* buffer, size_t size)
268 BFile::Seek(off_t offset, uint32 seekMode)
278 BFile::Position() const
288 BFile::SetSize(off_t size)
302 BFile::GetSize(off_t* size) const
308 // Assigns another BFile to this BFile.
309 BFile&
310 BFile::operator=(const BFile &file)
332 void BFile::_PhiloFile1() {}
333 void BFile::_PhiloFile2() {}
334 void BFile::_PhiloFile3() {}
335 void BFile::_PhiloFile4() {}
336 void BFile::_PhiloFile5() {}
337 void BFile::_PhiloFile6() {}
340 /*! Gets the file descriptor of the BFile.
347 BFile::get_fd() const
355 BFile::close_fd()