/packages/apps/Calendar/src/com/android/calendar/ |
AbstractCalendarActivity.java | 6 protected AsyncQueryService mService; 9 if (mService == null) { 10 mService = new AsyncQueryService(this); 12 return mService;
|
/frameworks/base/core/java/android/app/ |
UiModeManager.java | 111 private IUiModeManager mService; 114 mService = IUiModeManager.Stub.asInterface( 134 if (mService != null) { 136 mService.enableCarMode(flags); 157 if (mService != null) { 159 mService.disableCarMode(flags); 174 if (mService != null) { 176 return mService.getCurrentModeType(); 199 if (mService != null) { 201 mService.setNightMode(mode) [all...] |
AlarmManager.java | 85 private final IAlarmManager mService; 91 mService = service; 139 mService.set(type, triggerAtTime, operation); 193 mService.setRepeating(type, triggerAtTime, interval, operation); 259 mService.setInexactRepeating(type, triggerAtTime, interval, operation); 276 mService.remove(operation); 289 mService.setTime(millis); 302 mService.setTimeZone(timeZone);
|
WallpaperInfo.java | 52 final ResolveInfo mService; 84 mService = service; 150 mService = ResolveInfo.CREATOR.createFromParcel(source); 157 return mService.serviceInfo.packageName; 165 return mService.serviceInfo.name; 173 return mService.serviceInfo; 180 return new ComponentName(mService.serviceInfo.packageName, 181 mService.serviceInfo.name); 191 return mService.loadLabel(pm); 201 return mService.loadIcon(pm) [all...] |
/development/samples/Alarm/tests/src/com/example/android/newalarm/ |
AlarmServiceTest.java | 32 AlarmService mService; 74 mService = this.getService(); 77 assertNotNull(mService.mNotificationManager); 80 assertNotNull(mService.mContentIntent); 83 assertNotNull(mService.mNotification);
|
/frameworks/base/test-runner/src/android/test/ |
ServiceTestCase.java | 108 private T mService; 121 return mService; 148 mService = null; 150 mService = mServiceClass.newInstance(); 152 assertNotNull(mService); 157 mService.attach( 166 assertNotNull(mService); 186 assertNotNull(mService); 189 mService.onCreate(); 192 mService.onStartCommand(intent, 0, mServiceId) [all...] |
/frameworks/base/core/java/android/os/ |
Vibrator.java | 31 IVibratorService mService; 37 mService = IVibratorService.Stub.asInterface( 46 if (mService == null) { 51 return mService.hasVibrator(); 64 if (mService == null) { 69 mService.vibrate(milliseconds, mToken); 95 if (mService == null) { 104 mService.vibratePattern(pattern, repeat, mToken); 118 if (mService == null) { 122 mService.cancelVibrate(mToken) [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
A2dpProfile.java | 34 * TODO: add null checks around calls to mService object. 37 private BluetoothA2dp mService; 54 mService = (BluetoothA2dp) proxy; 58 mService = null; 77 return mService.getDevicesMatchingConnectionStates( 87 mService.disconnect(sink); 90 return mService.connect(device); 94 return mService.disconnect(device); 98 return mService.getConnectionState(device); 102 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF [all...] |
HeadsetProfile.java | 38 private BluetoothHeadset mService; 60 mService = (BluetoothHeadset) proxy; 64 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 83 mService = null; 88 // TODO(): The calls must get queued if mService becomes null. 111 List<BluetoothDevice> sinks = mService.getConnectedDevices(); 114 mService.disconnect(sink); 117 return mService.connect(device); 121 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 124 if (mService.getPriority(device) > BluetoothProfile.PRIORITY_ON) [all...] |
HidProfile.java | 33 private BluetoothInputDevice mService; 46 mService = (BluetoothInputDevice) proxy; 52 mService = null; 70 return mService.connect(device); 74 return mService.disconnect(device); 78 List<BluetoothDevice> deviceList = mService.getConnectedDevices(); 81 ? mService.getConnectionState(device) 86 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF; 90 return mService.getPriority(device); 95 if (mService.getPriority(device) < BluetoothProfile.PRIORITY_ON) [all...] |
/frameworks/base/core/java/android/app/admin/ |
DevicePolicyManager.java | 48 private final IDevicePolicyManager mService; 52 mService = IDevicePolicyManager.Stub.asInterface( 59 return me.mService != null ? me : null; 125 if (mService != null) { 127 return mService.isAdminActive(who); 141 if (mService != null) { 143 return mService.getActiveAdmins(); 155 if (mService != null) { 157 return mService.packageHasActiveAdmins(packageName); 172 if (mService != null) [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
Session.java | 51 final WindowManagerService mService; 63 mService = service; 76 synchronized (mService.mWindowMap) { 77 if (mService.mInputMethodManager == null && mService.mHaveInputMethods) { 80 mService.mInputMethodManager = IInputMethodManager.Stub.asInterface(b); 87 if (mService.mInputMethodManager != null) { 88 mService.mInputMethodManager.addClient(client, inputContext, 97 if (mService.mInputMethodManager != null) { 98 mService.mInputMethodManager.removeClient(client) [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothInputDevice.java | 96 private IBluetooth mService; 108 mService = IBluetooth.Stub.asInterface(b); 117 mService = null; 143 if (mService != null && isEnabled() && 146 return mService.connectInputDevice(device); 152 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 184 if (mService != null && isEnabled() && 187 return mService.disconnectInputDevice(device); 193 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 202 if (mService != null && isEnabled()) [all...] |
BluetoothA2dp.java | 106 private IBluetoothA2dp mService; 119 mService = IBluetoothA2dp.Stub.asInterface(b); 128 mService = null; 156 if (mService != null && isEnabled() && 159 return mService.connect(device); 165 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 197 if (mService != null && isEnabled() && 200 return mService.disconnect(device); 206 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 215 if (mService != null && isEnabled()) [all...] |
BluetoothHeadset.java | 221 private IBluetoothHeadset mService; 274 if (mService != null && isEnabled() && 277 return mService.connect(device); 283 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 315 if (mService != null && isEnabled() && 318 return mService.disconnect(device); 324 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 333 if (mService != null && isEnabled()) { 335 return mService.getConnectedDevices(); 341 if (mService == null) Log.w(TAG, "Proxy not attached to service") [all...] |
BluetoothPan.java | 117 private IBluetooth mService; 129 mService = IBluetooth.Stub.asInterface(b); 138 mService = null; 162 if (mService != null && isEnabled() && 165 return mService.connectPanDevice(device); 171 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 203 if (mService != null && isEnabled() && 206 return mService.disconnectPanDevice(device); 212 if (mService == null) Log.w(TAG, "Proxy not attached to service"); 221 if (mService != null && isEnabled()) [all...] |
BluetoothHealth.java | 148 if (mService != null) { 150 result = mService.registerAppConfiguration(config, wrapper); 172 if (mService != null && isEnabled() && config != null) { 174 result = mService.unregisterAppConfiguration(config); 200 if (mService != null && isEnabled() && isValidDevice(device) && 203 return mService.connectChannelToSource(device, config); 229 if (mService != null && isEnabled() && isValidDevice(device) && 232 return mService.connectChannelToSink(device, config, channelType); 258 if (mService != null && isEnabled() && isValidDevice(device) && 261 return mService.disconnectChannel(device, config, channelId) [all...] |
/frameworks/base/core/java/android/net/ |
ConnectivityManager.java | 289 private final IConnectivityManager mService; 350 mService.setNetworkPreference(preference); 357 return mService.getNetworkPreference(); 365 return mService.getActiveNetworkInfo(); 374 return mService.getActiveNetworkInfoForUid(uid); 382 return mService.getNetworkInfo(networkType); 390 return mService.getAllNetworkInfo(); 399 return mService.getActiveLinkProperties(); 408 return mService.getLinkProperties(networkType); 417 return mService.setRadios(turnOn) [all...] |
ThrottleManager.java | 121 return mService.getResetTime(iface); 134 return mService.getPeriodStartTime(iface); 150 return mService.getByteCount(iface, direction, period, ago); 163 return mService.getCliffThreshold(iface, cliff); 176 return mService.getCliffLevel(iface, cliff); 188 return mService.getHelpUri(); 195 private IThrottleManager mService; 212 mService = service;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
CloseDragHandle.java | 26 PhoneStatusBar mService; 40 mService.interceptTouchEvent(event); 47 return mService.interceptTouchEvent(event)
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
MeetingResponseParser.java | 27 private EasSyncService mService; 31 mService = service; 39 mService.userLog("Error in meeting response: " + status); 42 mService.userLog("Meeting response calendar id: " + getValue());
|
SettingsParser.java | 31 private final EasSyncService mService; 35 mService = service; 47 mService.userLog("Settings status = ", status); 76 mService.userLog("Set status = ", getValueInt());
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiManager.java | 450 IWifiManager mService; 476 mService = service; 500 return mService.getConfiguredNetworks(); 560 return mService.addOrUpdateNetwork(config); 576 return mService.removeNetwork(netId); 596 return mService.enableNetwork(netId, disableOthers); 611 return mService.disableNetwork(netId); 635 mService.disconnect(); 650 mService.reconnect(); 665 mService.reassociate() [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
AccountServiceProxy.java | 30 private IAccountService mService = null; 39 mService = IAccountService.Stub.asInterface(binder); 52 mService.notifyLoginFailed(accountId); 62 mService.notifyLoginSucceeded(accountId); 73 mService.reconcileAccounts(protocol, accountManagerType); 85 mReturn = mService.getAccountColor(accountId); 102 mReturn = mService.getConfigurationData(accountType); 119 mReturn = mService.getDeviceId();
|
/hardware/libhardware_legacy/audio/ |
AudioPolicyCompatClient.cpp | 40 return mServiceOps->open_output(mService, pDevices, pSamplingRate, pFormat, 48 return mServiceOps->open_duplicate_output(mService, output1, output2); 53 return mServiceOps->close_output(mService, output); 58 return mServiceOps->suspend_output(mService, output); 63 return mServiceOps->restore_output(mService, output); 72 return mServiceOps->open_input(mService, pDevices, pSamplingRate, pFormat, 78 return mServiceOps->close_input(mService, input); 84 return mServiceOps->set_stream_output(mService, (audio_stream_type_t)stream, 91 return mServiceOps->move_effects(mService, session, srcOutput, dstOutput); 99 str = mServiceOps->get_parameters(mService, ioHandle, keys.string()) [all...] |