Home
last modified time | relevance | path

Searched refs:getStorageBytes (Results 1 – 24 of 24) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/
H A DKeyValueStoreCompressTestData.actor.cpp44 virtual StorageBytes getStorageBytes() { return store->getStorageBytes(); } in getStorageBytes() function
H A DIVersionedStore.h53 virtual StorageBytes getStorageBytes() = 0;
H A DIPager.h83 virtual StorageBytes getStorageBytes() = 0;
H A DIKeyValueStore.h55 virtual StorageBytes getStorageBytes() = 0;
H A DIDiskQueue.h81 virtual StorageBytes getStorageBytes() = 0;
H A DOldTLogServer_4_6.actor.cpp425 …(cc, "KvstoreBytesUsed", [tLogData](){ return tLogData->persistentData->getStorageBytes().used; }); in LogData()
426 …(cc, "KvstoreBytesFree", [tLogData](){ return tLogData->persistentData->getStorageBytes().free; }); in LogData()
427 …storeBytesAvailable", [tLogData](){ return tLogData->persistentData->getStorageBytes().available; … in LogData()
428 …c, "KvstoreBytesTotal", [tLogData](){ return tLogData->persistentData->getStorageBytes().total; }); in LogData()
429 …QueueDiskBytesUsed", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().used; }); in LogData()
430 …QueueDiskBytesFree", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().free; }); in LogData()
431 …kBytesAvailable", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().available; … in LogData()
432 …eueDiskBytesTotal", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().total; }); in LogData()
1136 reply.storageBytes = self->persistentData->getStorageBytes(); in getQueuingMetrics()
H A DLogSystemDiskQueueAdapter.h91 virtual StorageBytes getStorageBytes() { ASSERT(false); throw internal_error(); } in getStorageBytes() function
H A DIndirectShadowPager.h152 virtual StorageBytes getStorageBytes();
H A DOldTLogServer_6_0.actor.cpp440 …(cc, "KvstoreBytesUsed", [tLogData](){ return tLogData->persistentData->getStorageBytes().used; }); in LogData()
441 …(cc, "KvstoreBytesFree", [tLogData](){ return tLogData->persistentData->getStorageBytes().free; }); in LogData()
442 …storeBytesAvailable", [tLogData](){ return tLogData->persistentData->getStorageBytes().available; … in LogData()
443 …c, "KvstoreBytesTotal", [tLogData](){ return tLogData->persistentData->getStorageBytes().total; }); in LogData()
444 …QueueDiskBytesUsed", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().used; }); in LogData()
445 …QueueDiskBytesFree", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().free; }); in LogData()
446 …kBytesAvailable", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().available; … in LogData()
447 …eueDiskBytesTotal", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().total; }); in LogData()
1417 reply.storageBytes = self->persistentData->getStorageBytes(); in getQueuingMetrics()
H A DDiskQueue.actor.cpp216 StorageBytes getStorageBytes() { in getStorageBytes() function in RawDiskQueue_TwoFiles
861 virtual StorageBytes getStorageBytes() { in getStorageBytes() function in DiskQueue
862 return rawQueue->getStorageBytes(); in getStorageBytes()
1379 virtual StorageBytes getStorageBytes() { return queue->getStorageBytes(); } in getStorageBytes() function in DiskQueue_PopUncommitted
H A DTLogServer.actor.cpp497 …(cc, "KvstoreBytesUsed", [tLogData](){ return tLogData->persistentData->getStorageBytes().used; }); in LogData()
498 …(cc, "KvstoreBytesFree", [tLogData](){ return tLogData->persistentData->getStorageBytes().free; }); in LogData()
499 …storeBytesAvailable", [tLogData](){ return tLogData->persistentData->getStorageBytes().available; … in LogData()
500 …c, "KvstoreBytesTotal", [tLogData](){ return tLogData->persistentData->getStorageBytes().total; }); in LogData()
501 …QueueDiskBytesUsed", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().used; }); in LogData()
502 …QueueDiskBytesFree", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().free; }); in LogData()
503 …kBytesAvailable", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().available; … in LogData()
504 …eueDiskBytesTotal", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().total; }); in LogData()
1777 reply.storageBytes = self->persistentData->getStorageBytes(); in getQueuingMetrics()
H A DKeyValueStoreMemory.actor.cpp79 virtual StorageBytes getStorageBytes() { in getStorageBytes() function in KeyValueStoreMemory
80 StorageBytes diskQueueBytes = log->getStorageBytes(); in getStorageBytes()
H A DMemoryPager.actor.cpp96 virtual StorageBytes getStorageBytes() { in getStorageBytes() function in MemoryPager
H A Dstorageserver.actor.cpp186 StorageBytes getStorageBytes() { return storage->getStorageBytes(); } in getStorageBytes() function
496 specialCounter(cc, "KvstoreBytesUsed", [self](){ return self->storage.getStorageBytes().used; }); in Counters()
497 specialCounter(cc, "KvstoreBytesFree", [self](){ return self->storage.getStorageBytes().free; }); in Counters()
498 …specialCounter(cc, "KvstoreBytesAvailable", [self](){ return self->storage.getStorageBytes().avail… in Counters()
499 …specialCounter(cc, "KvstoreBytesTotal", [self](){ return self->storage.getStorageBytes().total; }); in Counters()
1453 reply.storageBytes = self->storage.getStorageBytes(); in getQueuingMetrics()
3313 StorageBytes sb = self->storage.getStorageBytes(); in metricsCore()
H A DVersionedBTree.actor.cpp478 virtual StorageBytes getStorageBytes() { in getType()
479 return m_pager->getStorageBytes(); in getType()
1856 virtual StorageBytes getStorageBytes() { in getStorageBytes() function in KeyValueStoreRedwoodUnversioned
1857 return m_tree->getStorageBytes(); in getStorageBytes()
H A DKeyValueStoreSQLite.actor.cpp1421 virtual StorageBytes getStorageBytes();
1906 StorageBytes KeyValueStoreSQLite::getStorageBytes() { in getStorageBytes() function in KeyValueStoreSQLite
H A DIndirectShadowPager.actor.cpp357 StorageBytes IndirectShadowPager::getStorageBytes() { in getStorageBytes() function in IndirectShadowPager
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/CloudFilestore/
H A DBackup.php125 public function getStorageBytes() function in Google_Service_CloudFilestore_Backup
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Compute/
H A DSnapshot.php187 public function getStorageBytes() function in Google_Service_Compute_Snapshot
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Compute/
H A DSnapshot.php232 public function getStorageBytes() function in Google_Service_Compute_Snapshot
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmOpenidAuthenticationPlugin/lib/vendor/GoogleAPIClient/Service/
H A DCompute.php10614 public function getStorageBytes() function in Google_Service_Compute_Snapshot
/dports/www/moodle310/moodle/lib/google/src/Google/Service/
H A DCompute.php15476 public function getStorageBytes() function in Google_Service_Compute_Snapshot
/dports/www/moodle311/moodle/lib/google/src/Google/Service/
H A DCompute.php15476 public function getStorageBytes() function in Google_Service_Compute_Snapshot
/dports/www/moodle39/moodle/lib/google/src/Google/Service/
H A DCompute.php15476 public function getStorageBytes() function in Google_Service_Compute_Snapshot