Symbol: LastModifiedIndex
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
101
class LastModifiedIndex::IteratorList : public SinglyLinkedList<Iterator> {};
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
107
struct LastModifiedIndex::IteratorPolicy {
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
108
typedef LastModifiedIndex Index;
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
110
typedef LastModifiedIndex::NodeTree NodeTree;
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
126
class LastModifiedIndex::Iterator : public GenericIndexIterator<IteratorPolicy>,
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
137
LastModifiedIndex::LastModifiedIndex()
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
146
LastModifiedIndex::~LastModifiedIndex()
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
159
LastModifiedIndex::Init(Volume* volume)
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
178
LastModifiedIndex::CountEntries() const
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
185
LastModifiedIndex::NodeAdded(Node* node)
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
192
LastModifiedIndex::NodeRemoved(Node* node)
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
199
LastModifiedIndex::NodeChanged(Node* node, uint32 statFields,
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
247
LastModifiedIndex::InternalGetIterator()
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
261
LastModifiedIndex::InternalFind(const void* key, size_t length)
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
277
LastModifiedIndex::_AddIteratorToUpdate(Iterator* iterator)
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
287
LastModifiedIndex::Iterator::NodeChanged(Node* node, uint32 statFields,
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.cpp
95
class LastModifiedIndex::NodeTree : public _NodeTree {};
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.h
13
class LastModifiedIndex : public Index, private NodeListener {
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.h
15
LastModifiedIndex();
src/add-ons/kernel/file_systems/packagefs/indices/LastModifiedIndex.h
16
virtual ~LastModifiedIndex();
src/add-ons/kernel/file_systems/packagefs/volume/Volume.cpp
286
LastModifiedIndex* index = new(std::nothrow) LastModifiedIndex;
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.cpp
24
fLastModifiedIndex = new(nothrow) LastModifiedIndex(volume);
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.h
12
class LastModifiedIndex;
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.h
36
LastModifiedIndex *GetLastModifiedIndex() const
src/add-ons/kernel/file_systems/ramfs/IndexDirectory.h
45
LastModifiedIndex *fLastModifiedIndex;
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
101
typedef NodeEntryIterator<LastModifiedIndex::NodeTree::Iterator> BaseClass;
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
104
LastModifiedIndex *fIndex;
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
111
LastModifiedIndex::LastModifiedIndex(Volume *volume)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
125
LastModifiedIndex::~LastModifiedIndex()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
144
LastModifiedIndex::CountEntries() const
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
151
LastModifiedIndex::Changed(Node *node, time_t oldModified)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
184
LastModifiedIndex::NodeAdded(Node *node)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
192
LastModifiedIndex::NodeRemoved(Node *node)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
200
LastModifiedIndex::InternalGetIterator()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
214
LastModifiedIndex::InternalFind(const uint8 *key, size_t length)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
230
LastModifiedIndex::_AddIterator(Iterator *iterator)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
238
LastModifiedIndex::_RemoveIterator(Iterator *iterator)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
248
LastModifiedIndex::Iterator::Iterator()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
255
LastModifiedIndex::Iterator::~Iterator()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
262
LastModifiedIndex::Iterator::GetCurrent()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
269
LastModifiedIndex::Iterator::GetCurrent(uint8 *buffer, size_t *keyLength)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
281
LastModifiedIndex::Iterator::Suspend()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
303
LastModifiedIndex::Iterator::Resume()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
321
LastModifiedIndex::Iterator::SetTo(LastModifiedIndex *index, time_t modified,
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
356
LastModifiedIndex::Iterator::Unset()
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
367
LastModifiedIndex::Iterator::EntryRemoved(Entry */*entry*/)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
376
LastModifiedIndex::Iterator::NodeRemoved(Node */*node*/)
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
71
class LastModifiedIndex::NodeTree : public _NodeTree {};
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
75
class LastModifiedIndex::IteratorList : public DoublyLinkedList<Iterator> {};
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
79
class LastModifiedIndex::Iterator
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
80
: public NodeEntryIterator<LastModifiedIndex::NodeTree::Iterator>,
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.cpp
93
bool SetTo(LastModifiedIndex *index, time_t modified,
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.h
13
class LastModifiedIndex : public Index, private NodeListener {
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.h
15
LastModifiedIndex(Volume *volume);
src/add-ons/kernel/file_systems/ramfs/LastModifiedIndex.h
16
virtual ~LastModifiedIndex();
src/add-ons/kernel/file_systems/ramfs/Node.cpp
132
if (LastModifiedIndex *index = fVolume->GetLastModifiedIndex())
src/add-ons/kernel/file_systems/ramfs/Volume.cpp
622
LastModifiedIndex *
src/add-ons/kernel/file_systems/ramfs/Volume.h
139
LastModifiedIndex *GetLastModifiedIndex() const;
src/add-ons/kernel/file_systems/ramfs/Volume.h
46
class LastModifiedIndex;