OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSm
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/com/android/internal/util/
StateMachine.java
448
private StateMachine
mSm
;
479
mSm
= sm;
544
String what =
mSm
!= null ?
mSm
.getWhatToString(mWhat) : "";
712
private StateMachine
mSm
;
756
mSm
.haltedProcessMessage(msg);
780
if (mDbg)
mSm
.log("handleMessage: E msg.what=" + msg.what);
801
// We need to check if
mSm
== null here as we could be quitting.
802
if (mDbg &&
mSm
!= null)
mSm
.log("handleMessage: X")
[
all
...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerBaseTest.java
44
protected StorageManager
mSm
= null;
217
mSm
= (StorageManager)mContext.getSystemService(android.content.Context.STORAGE_SERVICE);
275
// get
mSm
obb mount path
276
assertTrue("Cannot open file when OBB is not mounted!",
mSm
.isObbMounted(obbPath));
278
String path =
mSm
.getMountedObbPath(obbPath);
358
boolean success =
mSm
.mountObb(obbFilePath, key, obbListener);
364
success &=
mSm
.isObbMounted(obbListener.officialPath());
366
success &= !
mSm
.isObbMounted(obbListener.officialPath());
390
assertTrue("mountObb call failed",
mSm
.mountObb(obbFilePath, key, obbListener));
398
mSm
.isObbMounted(obbListener.officialPath()))
[
all
...]
StorageManagerIntegrationTest.java
196
assertTrue("mounted path should still be mounted!",
mSm
.isObbMounted(obbFilePath));
204
mSm
.isObbMounted(obbFilePath));
Completed in 24 milliseconds