Searched refs:fd_count_ (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/utest/fs-vnode/
H A Dteardown-tests.cpp26 FdCountVnode() : fd_count_(0) {}
28 ZX_ASSERT(fd_count_ == 0);
32 return fd_count_;
36 fd_count_++;
41 fd_count_--;
42 ZX_ASSERT(fd_count_ >= 0);
47 int fd_count_; member in class:__anon1413::FdCountVnode
/fuchsia/zircon/system/ulib/blobfs/
H A Dvnode.cpp166 vn->fd_count_ = 1;
287 fd_count_++;
292 ZX_DEBUG_ASSERT_MSG(fd_count_ > 0, "Closing blob with no fds open");
293 fd_count_--;
300 ZX_DEBUG_ASSERT(fd_count_ == 0);
/fuchsia/zircon/system/ulib/minfs/
H A Dvnode.cpp819 if (fd_count_ == 0 && IsUnlinked()) {
1061 ZX_DEBUG_ASSERT(fd_count_ == 0);
1153 fd_count_++;
1158 ZX_DEBUG_ASSERT(fd_count_ == 0);
1174 ZX_DEBUG_ASSERT_MSG(fd_count_ > 0, "Closing ino with no fds open");
1175 fd_count_--;
1177 if (fd_count_ == 0 && IsUnlinked()) {
1188 ZX_DEBUG_ASSERT_MSG(fd_count_ > 0, "Reading from ino with no fds open");
1268 ZX_DEBUG_ASSERT_MSG(fd_count_ > 0, "Writing to ino with no fds open");
1681 vn->fd_count_
[all...]
H A Dminfs-private.h686 uint32_t fd_count_{};
/fuchsia/zircon/system/ulib/blobfs/include/blobfs/
H A Dblobfs.h95 return fd_count_ == 0 && (DeletionQueued() || !(GetState() & kBlobStateReadable));
278 uint32_t fd_count_ = {}; member in class:blobfs::final

Completed in 46 milliseconds