Symbol: cache_notification
src/system/kernel/cache/block_cache.cpp
127
struct cache_notification : DoublyLinkedListLinkImpl<cache_notification> {
src/system/kernel/cache/block_cache.cpp
139
typedef DoublyLinkedList<cache_notification> NotificationList;
src/system/kernel/cache/block_cache.cpp
144
struct cache_listener : cache_notification {
src/system/kernel/cache/block_cache.cpp
155
cache_notification::operator new(size_t size)
src/system/kernel/cache/block_cache.cpp
167
cache_notification::operator delete(void* block)
src/system/kernel/cache/block_cache.cpp
2551
cache_notification* notification = iterator.Next();
src/system/kernel/cache/block_cache.cpp
2996
cache_notification notification;
src/system/kernel/cache/block_cache.cpp
843
get_next_pending_event(cache_notification* notification, int32* _event)
src/system/kernel/cache/block_cache.cpp
869
cache_notification* notification = cache->pending_notifications.Head();
src/system/kernel/cache/block_cache.cpp
884
cache_notification copy = *notification;
src/system/kernel/cache/block_cache.cpp
919
cache_notification &notification, int32 events,
src/system/kernel/cache/block_cache.cpp
935
delete_notification(cache_notification* notification)
src/system/kernel/cache/block_cache.cpp
953
add_notification(block_cache* cache, cache_notification* notification,
src/tools/fs_shell/block_cache.cpp
100
typedef DoublyLinkedList<cache_notification> NotificationList;
src/tools/fs_shell/block_cache.cpp
140
struct cache_listener : cache_notification {
src/tools/fs_shell/block_cache.cpp
196
get_next_pending_event(cache_notification* notification, int32_t* _event)
src/tools/fs_shell/block_cache.cpp
220
cache_notification* notification = cache->pending_notifications.Head();
src/tools/fs_shell/block_cache.cpp
235
cache_notification copy = *notification;
src/tools/fs_shell/block_cache.cpp
252
cache_notification &notification, int32_t events,
src/tools/fs_shell/block_cache.cpp
268
delete_notification(cache_notification* notification)
src/tools/fs_shell/block_cache.cpp
286
add_notification(block_cache* cache, cache_notification* notification,
src/tools/fs_shell/block_cache.cpp
91
struct cache_notification : DoublyLinkedListLinkImpl<cache_notification> {