HomeSort by relevance Sort by last modified time
    Searched refs:mDataStore (Results 1 - 2 of 2) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ObjectCache.java 35 private final Deque<T> mDataStore = Lists.newLinkedList();
55 synchronized (mDataStore) {
56 result = mDataStore.poll();
69 synchronized (mDataStore) {
70 if (mDataStore.size() < mMaxSize) {
72 mDataStore.add(objectToCache);
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java 128 private final PersistentDataStore mDataStore = new PersistentDataStore();
700 synchronized (mDataStore) {
743 synchronized (mDataStore) {
744 return mDataStore.getTouchCalibration(inputDeviceDescriptor, surfaceRotation);
765 synchronized (mDataStore) {
767 if (mDataStore.setTouchCalibration(inputDeviceDescriptor, surfaceRotation,
    [all...]

Completed in 97 milliseconds