OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDm
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/tests/coretests/src/android/os/
PowerManagerVrTest.java
38
private IDreamManager
mDm
;
54
mDm
= IDreamManager.Stub.asInterface(
63
if (
mDm
!= null) {
64
mDm
.awaken(); // Don't leave the device in the dream state.
78
assertNotNull(
mDm
);
93
mDm
.dream();
95
assertTrue(
mDm
.isDreaming());
96
mDm
.awaken();
107
mDm
.dream();
109
assertFalse(
mDm
.isDreaming()); // ensure dream is still false after waiting
[
all
...]
/frameworks/base/core/java/android/hardware/display/
DisplayManagerGlobal.java
69
private final IDisplayManager
mDm
;
81
mDm
= dm;
120
info =
mDm
.getDisplayInfo(displayId);
154
int[] displayIds =
mDm
.getDisplayIds();
255
mDm
.registerCallback(mCallback);
284
mDm
.startWifiDisplayScan();
296
mDm
.stopWifiDisplayScan();
314
mDm
.connectWifiDisplay(deviceAddress);
322
mDm
.pauseWifiDisplay();
330
mDm
.resumeWifiDisplay()
[
all
...]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java
81
private DownloadManager
mDm
;
86
mDm
= (DownloadManager) getContext().getSystemService(Context.DOWNLOAD_SERVICE);
87
mDm
.setAccessAllDownloads(true);
88
mDm
.setAccessFilename(true);
163
newDocumentId = Long.toString(
mDm
.addCompletedDownload(
183
if (
mDm
.remove(Long.parseLong(docId)) != 1) {
203
if (!
mDm
.rename(getContext(), id, displayName)) {
229
cursor =
mDm
.query(new Query().setFilterById(Long.parseLong(docId)));
274
cursor =
mDm
.query(
277
cursor =
mDm
[
all
...]
/packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java
499
private boolean
mDm
; // degrees
513
mDm
= dm;
576
res = mExprInfo.mExpr.eval(
mDm
, Evaluator.this);
[
all
...]
Completed in 534 milliseconds