OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sInstance
(Results
76 - 82
of
82
) sorted by null
1
2
3
4
/packages/apps/Mms/src/com/android/mms/data/
Conversation.java
634
private static Cache
sInstance
= new Cache();
635
static Cache getInstance() { return
sInstance
; }
646
synchronized (
sInstance
) {
650
for (Conversation c :
sInstance
.mCache) {
668
synchronized (
sInstance
) {
672
for (Conversation c :
sInstance
.mCache) {
687
synchronized (
sInstance
) {
694
if (
sInstance
.mCache.contains(c)) {
698
sInstance
.mCache.add(c);
707
for (Conversation c :
sInstance
.mCache)
[
all
...]
/packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java
322
static ApplicationsState
sInstance
;
326
if (
sInstance
== null) {
327
sInstance
= new ApplicationsState(app);
329
return
sInstance
;
RunningState.java
55
static RunningState
sInstance
;
543
if (
sInstance
== null) {
544
sInstance
= new RunningState(context);
546
return
sInstance
;
[
all
...]
/packages/apps/Stk/src/com/android/stk/
StkAppService.java
75
static StkAppService
sInstance
= null;
157
sInstance
= this;
234
return
sInstance
;
/cts/tools/host/src/com/android/cts/
HostConfig.java
107
private final static HostConfig
sInstance
= new HostConfig();
114
return
sInstance
;
[
all
...]
/packages/apps/Email/src/com/android/email/
MessagingController.java
115
private static MessagingController
sInstance
= null;
140
if (
sInstance
== null) {
141
sInstance
= new MessagingController(_context);
143
return
sInstance
;
150
sInstance
= mockController;
[
all
...]
/prebuilt/common/tradefed/
tradefed-prebuilt.jar
Completed in 159 milliseconds
1
2
3
4