Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/tests/external/
DStatsPuller_test.cpp44 bool pullSuccess; variable
57 return pullSuccess ? PULL_SUCCESS : PULL_FAIL; in PullInternal()
81 pullSuccess = false; in SetUp()
92 pullSuccess = true; in TEST_F()
107 pullSuccess = true; in TEST_F()
120 pullSuccess = true; in TEST_F()
135 pullSuccess = false; in TEST_F()
141 pullSuccess = true; in TEST_F()
150 pullSuccess = true; in TEST_F()
162 pullSuccess = true; in TEST_F()
[all …]
DStatsCallbackPuller_test.cpp54 bool pullSuccess; variable
86 resultReceiver->pullFinished(pullTagId, pullSuccess, parcels); in executePull()
105 pullSuccess = false; in SetUp()
124 pullSuccess = true; in TEST_F()
144 pullSuccess = false; in TEST_F()
157 pullSuccess = true; in TEST_F()
186 pullSuccess = true; in TEST_F()
/packages/modules/StatsD/statsd/src/external/
DStatsCallbackPuller.cpp56 shared_ptr<bool> pullSuccess = make_shared<bool>(false); in PullInternal() local
61 [cv_mutex, cv, pullFinish, pullSuccess, sharedData]( in PullInternal()
79 *pullSuccess = success; in PullInternal()
109 if (*pullSuccess) { in PullInternal()
113 return *pullSuccess ? PULL_SUCCESS : PULL_FAIL; in PullInternal()