Searched refs:wallClockSec (Results 1 – 3 of 3) sorted by relevance
/packages/modules/StatsD/statsd/src/storage/ |
D | StorageManager.h | 162 static string getDataFileName(long wallClockSec, int uid, int64_t id); 164 static string getDataHistoryFileName(long wallClockSec, int uid, int64_t id); 168 static void enforceDbGuardrails(const char* path, int64_t wallClockSec, int64_t maxBytes);
|
D | StorageManager.cpp | 67 string StorageManager::getDataFileName(long wallClockSec, int uid, int64_t id) { in getDataFileName() argument 68 return StringPrintf("%s/%ld_%d_%lld", STATS_DATA_DIR, wallClockSec, uid, in getDataFileName() 72 string StorageManager::getDataHistoryFileName(long wallClockSec, int uid, int64_t id) { in getDataHistoryFileName() argument 73 return StringPrintf("%s/%ld_%d_%lld_history", STATS_DATA_DIR, wallClockSec, uid, in getDataHistoryFileName()
|
/packages/modules/StatsD/statsd/tests/storage/ |
D | StorageManager_test.cpp | 294 int64_t wallClockSec = getWallClockSec() + (StatsdStats::kMaxAgeSecond + 1); in TEST() local 295 StorageManager::enforceDbGuardrails(STATS_RESTRICTED_DATA_DIR, wallClockSec, in TEST()
|