OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mServiceConnection
(Results
1 - 15
of
15
) sorted by null
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
BaseBindingActivity.java
39
private ServiceConnection
mServiceConnection
;
109
if (
mServiceConnection
== null) {
112
mServiceConnection
= new ServiceConnection() {
143
mServiceConnection
,
152
if (
mServiceConnection
!= null) {
154
mServiceConnection
.onServiceDisconnected(null /*name*/);
155
unbindService(
mServiceConnection
);
156
mServiceConnection
= null;
/external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
MemConsumer.java
29
private ServiceConnection
mServiceConnection
= new ServiceConnection() {
95
mServiceConnection
,
101
unbindService(
mServiceConnection
);
/cts/tests/tests/os/src/android/os/cts/
TokenWatcherTest.java
39
private ServiceConnection
mServiceConnection
;
66
mServiceConnection
= new ServiceConnection() {
86
mServiceConnection
, Context.BIND_AUTO_CREATE);
102
getContext().unbindService(
mServiceConnection
);
/cts/tests/tests/security/src/android/security/cts/
ClonedSecureRandomTest.java
65
private ServiceConnection
mServiceConnection
= new ServiceConnection() {
127
getContext().bindService(mSeparateIntent,
mServiceConnection
, 0);
134
getContext().unbindService(
mServiceConnection
);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ServiceMonitor.java
158
private SC
mServiceConnection
;
219
mContext.unbindService(
mServiceConnection
);
239
mServiceConnection
= new SC();
240
mBound = mContext.bindService(intent,
mServiceConnection
, Context.BIND_AUTO_CREATE);
/frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java
78
private RemoteViewsAdapterServiceConnection
mServiceConnection
;
214
adapter.
mServiceConnection
.getRemoteViewsFactory();
[
all
...]
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeApp.java
65
ServiceConnection
mServiceConnection
= new ServiceConnection() {
135
bindService(new Intent(this, FakeCoreService.class),
mServiceConnection
,
/frameworks/base/services/java/com/android/server/location/
GeofenceProxy.java
99
mServiceConnection
, Context.BIND_AUTO_CREATE, UserHandle.OWNER);
102
private ServiceConnection
mServiceConnection
= new ServiceConnection() {
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java
63
private ServiceConnection
mServiceConnection
= new ServiceConnection() {
86
mServiceConnection
,
96
unbindService(
mServiceConnection
);
/developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java
69
private final ServiceConnection
mServiceConnection
= new ServiceConnection() {
174
bindService(gattServiceIntent,
mServiceConnection
, BIND_AUTO_CREATE);
196
unbindService(
mServiceConnection
);
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java
69
private final ServiceConnection
mServiceConnection
= new ServiceConnection() {
174
bindService(gattServiceIntent,
mServiceConnection
, BIND_AUTO_CREATE);
196
unbindService(
mServiceConnection
);
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DeviceControlActivity.java
69
private final ServiceConnection
mServiceConnection
= new ServiceConnection() {
174
bindService(gattServiceIntent,
mServiceConnection
, BIND_AUTO_CREATE);
196
unbindService(
mServiceConnection
);
/frameworks/base/core/java/android/speech/tts/
TextToSpeech.java
536
private Connection
mServiceConnection
;
625
if (
mServiceConnection
== null) {
629
return
mServiceConnection
.runAction(action, errorResult, method, reconnect,
708
return
mServiceConnection
.getCallerIdentity();
732
mServiceConnection
.disconnect();
740
mServiceConnection
= null;
[
all
...]
/frameworks/base/services/java/com/android/server/print/
RemotePrintSpooler.java
70
private final ServiceConnection
mServiceConnection
= new MyServiceConnection();
365
mContext.bindServiceAsUser(mIntent,
mServiceConnection
,
400
mContext.unbindService(
mServiceConnection
);
RemotePrintService.java
72
private final ServiceConnection
mServiceConnection
= new RemoteServiceConneciton();
500
mContext.bindServiceAsUser(mIntent,
mServiceConnection
,
525
mContext.unbindService(
mServiceConnection
);
539
mContext.unbindService(
mServiceConnection
);
Completed in 492 milliseconds