Searched defs:mDm (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
H A DVisibilityPreferenceControllerTest.java80 private DevicePolicyManager mDm; field in class:VisibilityPreferenceControllerTest
91 shadowApplication.setSystemService(Context.DEVICE_POLICY_SERVICE, mDm);
153 when(mDm.getActiveAdminsAsUser(anyInt())).thenReturn(components);
154 when(mDm.getKeyguardDisabledFeatures(any(), anyInt()))
175 when(mDm.getActiveAdminsAsUser(anyInt())).thenReturn(components);
176 when(mDm.getKeyguardDisabledFeatures(any(), anyInt()))
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadStorageProvider.java81 private DownloadManager mDm; field in class:DownloadStorageProvider
86 mDm = (DownloadManager) getContext().getSystemService(Context.DOWNLOAD_SERVICE);
87 mDm.setAccessAllDownloads(true);
88 mDm.setAccessFilename(true);
165 newDocumentId = Long.toString(mDm.addCompletedDownload(
185 if (mDm.remove(Long.parseLong(docId)) != 1) {
205 if (!mDm.rename(getContext(), id, displayName)) {
231 cursor = mDm.query(new Query().setFilterById(Long.parseLong(docId)));
276 cursor = mDm.query(
279 cursor = mDm
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanManager.java103 private DisplayManager mDm; field in class:ScanManager
129 mDm = (DisplayManager) mService.getSystemService(Context.DISPLAY_SERVICE);
138 if (mDm != null) {
139 mDm.registerDisplayListener(mDisplayListener, null);
163 if (mDm != null) {
164 mDm.unregisterDisplayListener(mDisplayListener);
1301 Display[] displays = mDm.getDisplays();
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DEvaluator.java499 private boolean mDm; // degrees field in class:Evaluator.AsyncEvaluator
513 mDm = dm;
576 res = mExprInfo.mExpr.eval(mDm, Evaluator.this);

Completed in 113 milliseconds