Searched refs:mCounter (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DMotionSensorWTime.java44 private int mCounter = 0; field in class:MotionSensorWTime
92 if (mCounter < 3 && mCounter >= 0) {
93 mTemp[0][mCounter] = mValues[0];
94 mTemp[1][mCounter] = mValues[1];
95 mTemp[2][mCounter] = mValues[2];
98 mCounter = (mCounter + 1) % 3;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcFailBringUp.java38 int mCounter; field in class:DcFailBringUp
53 mCounter = intent.getIntExtra(COUNTER, DEFAULT_COUNTER);
64 mCounter = counter;
71 return "{mCounter=" + mCounter +
H A DDataConnection.java440 if (mDcTesterFailBringUpAll.getDcFailBringUp().mCounter > 0) {
453 mDcTesterFailBringUpAll.getDcFailBringUp().mCounter -= 1;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCommitter.java45 private int mCounter; field in class:VCardEntryCommitter
72 mCounter++;
73 if (mCounter >= 20) {
75 mCounter = 0;
/frameworks/av/media/libaaudio/src/utility/
H A DAAudioUtilities.h279 int index = mCounter.load() & 1;
281 mCounter++; // Increment AFTER updating storage, OK if it wraps.
289 mCounter.store(0);
299 before = mCounter.load();
302 after = mCounter.load();
311 return mCounter.load() > 0;
316 std::atomic<int> mCounter{0};
/frameworks/wilhelm/tests/sandbox/
H A Dmultithread.c32 SLuint32 mCounter; member in struct:__anon2292
51 ++ta->mCounter;
141 ta->mCounter = 0;
150 ta->mCounter = 0;
166 printf("[%d]=%u ", j, ta->mCounter);
178 printf("[%d]=%u ", j, ta->mCounter);
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseLockTest.java40 private AtomicInteger mCounter = new AtomicInteger(); field in class:DatabaseLockTest
75 int val = mCounter.get();
102 mCounter.incrementAndGet();
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
H A DEventIdsTest.java115 Map<Integer, Integer> mCounter = new HashMap<Integer, Integer>(); field in class:EventIdsTest.EventCounter
119 mCounter.put(propertyId, get(propertyId) + 1);
123 Integer val = mCounter.get(propertyId);
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp41 EventCounter(int *counter, int magic=1234) : mCounter(counter), mMagic(magic) { }
42 virtual ~EventCounter() { ++*mCounter; mMagic = 0; }
45 int *mCounter; member in struct:android::EventCounter

Completed in 485 milliseconds