Home
last modified time | relevance | path

Searched refs:wallClockSec (Results 1 – 3 of 3) sorted by relevance

/packages/modules/StatsD/statsd/src/storage/
DStorageManager.h162 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);
DStorageManager.cpp67 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/
DStorageManager_test.cpp294 int64_t wallClockSec = getWallClockSec() + (StatsdStats::kMaxAgeSecond + 1); in TEST() local
295 StorageManager::enforceDbGuardrails(STATS_RESTRICTED_DATA_DIR, wallClockSec, in TEST()