HomeSort by relevance Sort by last modified time
    Searched refs:sInstance (Results 176 - 200 of 270) sorted by null

1 2 3 4 5 6 78 91011

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatService.java 79 private static CatService sInstance;
195 if (sInstance == null) {
201 sInstance = new CatService(ci, ca, ir, context, fh, ic, slotId);
204 mIccRecords.unregisterForRecordsLoaded(sInstance);
210 mIccRecords.registerForRecordsLoaded(sInstance, MSG_ID_ICC_RECORDS_LOADED, null);
212 return sInstance;
243 sInstance = null;
    [all...]
CommandParamsFactory.java 35 private static CommandParamsFactory sInstance = null;
61 if (sInstance != null) {
62 return sInstance;
    [all...]
  /packages/apps/Email/src/com/android/email/
NotificationController.java 79 private static NotificationController sInstance;
99 if (sInstance == null) {
100 sInstance = new NotificationController(context, Clock.INSTANCE);
102 return sInstance;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 67 private static final KeyboardSwitcher sInstance = new KeyboardSwitcher();
70 return sInstance;
79 sInstance.initInternal(latinIme, prefs);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
Settings.java 133 private static final Settings sInstance = new Settings();
136 return sInstance;
140 sInstance.onCreate(context);
  /cts/libs/testserver/src/android/webkit/cts/
TestWebServer.java 71 private static TestWebServer sInstance;
118 if (sInstance != null) {
119 sInstance.shutdown();
168 sInstance = instance;
  /external/chromium_org/net/test/android/javatests/src/org/chromium/net/test/util/
TestWebServer.java 70 private static TestWebServer sInstance;
116 if (sInstance != null) {
117 sInstance.shutdown();
165 sInstance = instance;
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareImpl.java 44 private static GeofenceHardwareImpl sInstance;
91 if (sInstance == null) {
92 sInstance = new GeofenceHardwareImpl(context);
94 return sInstance;
    [all...]
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 55 private static MediaSessionLegacyHelper sInstance;
76 if (sInstance == null) {
77 sInstance = new MediaSessionLegacyHelper(context);
80 return sInstance;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 80 private static RecentTasksLoader sInstance;
82 if (sInstance == null) {
83 sInstance = new RecentTasksLoader(context);
85 return sInstance;
  /hardware/qcom/display/msm8084/liboverlay/
overlay.cpp 375 if(sInstance == NULL) {
376 sInstance = new Overlay();
378 return sInstance;
584 Overlay* Overlay::sInstance = 0;
  /hardware/qcom/display/msm8960/liboverlay/
overlay.h 149 static Overlay *sInstance;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
ApplicationsState.java 313 private static ApplicationsState sInstance;
317 if (sInstance == null) {
318 sInstance = new ApplicationsState(app);
320 return sInstance;
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 35 MediaProfiles *MediaProfiles::sInstance = NULL;
649 sInstance = createDefaultInstance();
652 sInstance = createInstanceFromXmlFile(defaultXmlFile);
655 sInstance = createInstanceFromXmlFile(value);
657 CHECK(sInstance != NULL);
658 sInstance->checkAndAddRequiredProfilesIfNecessary();
662 return sInstance;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 38 private static EditorAnimator sInstance = new EditorAnimator();
41 return sInstance;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpDeviceIndex.java 104 private static final MtpDeviceIndex sInstance = new MtpDeviceIndex(
108 return sInstance;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 44 private static final KeyCodeDescriptionMapper sInstance = new KeyCodeDescriptionMapper();
47 return sInstance;
  /prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar 
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMonitor.java 511 WifiMonitorSingleton.sInstance.registerInterfaceMonitor(mInterfaceName, this);
528 WifiMonitorSingleton.sInstance.startMonitoring(mInterfaceName);
532 WifiMonitorSingleton.sInstance.stopMonitoring(mInterfaceName);
536 WifiMonitorSingleton.sInstance.stopSupplicant();
540 WifiMonitorSingleton.sInstance.killSupplicant(p2pSupported);
544 private static final WifiMonitorSingleton sInstance = new WifiMonitorSingleton();
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 105 private static BrowserSettings sInstance;
130 sInstance = new BrowserSettings(context);
134 return sInstance;
  /frameworks/base/core/java/android/view/
ThreadedRenderer.java 116 AtlasInitializer.sInstance.init(context, mNativeProxy);
410 static AtlasInitializer sInstance = new AtlasInitializer();
  /packages/apps/InCallUI/src/com/android/incallui/
CallList.java 48 private static CallList sInstance = new CallList();
69 return sInstance;
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvInputServiceTest.java 301 static CountingTvInputService sInstance;
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwSettings.java 123 private static final String sInstance = nativeGetDefaultUserAgent();
232 mUserAgent = LazyDefaultUserAgent.sInstance;
550 return LazyDefaultUserAgent.sInstance;
560 mUserAgent = LazyDefaultUserAgent.sInstance;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitor.java 117 private static KeyguardUpdateMonitor sInstance;
548 if (sInstance == null) {
549 sInstance = new KeyguardUpdateMonitor(context);
551 return sInstance;
    [all...]

Completed in 1155 milliseconds

1 2 3 4 5 6 78 91011