Searched refs:mRemote (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/os/
H A DCommonTimeConfig.java66 mRemote = ServiceManager.getService(SERVICE_NAME);
67 if (null == mRemote)
70 mInterfaceDesc = mRemote.getInterfaceDescriptor();
71 mUtils = new CommonTimeUtils(mRemote, mInterfaceDesc);
72 mRemote.linkToDeath(mDeathHandler, 0);
101 if (null != mRemote) {
103 mRemote.unlinkToDeath(mDeathHandler, 0);
106 mRemote = null;
365 mRemote.transact(METHOD_FORCE_NETWORKLESS_MASTER_MODE, data, reply, 0);
407 return ((null == mRemote) || (nul
418 private IBinder mRemote = null; field in class:CommonTimeConfig
[all...]
H A DCancellationSignal.java28 private ICancellationSignal mRemote; field in class:CancellationSignal
73 remote = mRemote;
142 if (mRemote == remote) {
145 mRemote = remote;
H A DCommonClock.java122 mRemote = ServiceManager.getService(SERVICE_NAME);
123 if (null == mRemote)
126 mInterfaceDesc = mRemote.getInterfaceDescriptor();
127 mUtils = new CommonTimeUtils(mRemote, mInterfaceDesc);
128 mRemote.linkToDeath(mDeathHandler, 0);
159 if (null != mRemote) {
161 mRemote.unlinkToDeath(mDeathHandler, 0);
164 mRemote = null;
302 if ((null == mRemote) || (null == mUtils))
310 private IBinder mRemote field in class:CommonClock
[all...]
H A DServiceManagerNative.java111 mRemote = remote;
115 return mRemote;
123 mRemote.transact(GET_SERVICE_TRANSACTION, data, reply, 0);
135 mRemote.transact(CHECK_SERVICE_TRANSACTION, data, reply, 0);
150 mRemote.transact(ADD_SERVICE_TRANSACTION, data, reply, 0);
165 boolean res = mRemote.transact(LIST_SERVICES_TRANSACTION, data, reply, 0);
190 mRemote.transact(SET_PERMISSION_CONTROLLER_TRANSACTION, data, reply, 0);
195 private IBinder mRemote; field in class:ServiceManagerProxy
H A DCommonTimeUtils.java43 mRemote = remote;
56 mRemote.transact(method_code, data, reply, 0);
76 mRemote.transact(method_code, data, reply, 0);
98 mRemote.transact(method_code, data, reply, 0);
118 mRemote.transact(method_code, data, reply, 0);
140 mRemote.transact(method_code, data, reply, 0);
160 mRemote.transact(method_code, data, reply, 0);
182 mRemote.transact(method_code, data, reply, 0);
275 mRemote.transact(method_code, data, reply, 0);
289 private IBinder mRemote; field in class:CommonTimeUtils
[all...]
/frameworks/native/libs/binder/
H A DBinder.cpp224 : mRemote(o.get()), mRefs(NULL), mState(0)
228 if (mRemote) {
229 mRemote->incStrong(this); // Removed on first IncStrong().
230 mRefs = mRemote->createWeak(this); // Held for our entire lifetime.
236 if (mRemote) {
238 mRemote->decStrong(this);
251 if (mRemote) {
252 mRemote->decStrong(this);
258 return mRemote ? mRefs->attemptIncStrong(this) : false;
/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java80 private IBinder mRemote; field in class:IMountShutdownObserver.Stub.Proxy
83 mRemote = remote;
87 return mRemote;
106 mRemote.transact(Stub.TRANSACTION_onShutDownComplete, _data, _reply, 0);
H A DIObbActionListener.java85 private IBinder mRemote; field in class:IObbActionListener.Stub.Proxy
88 mRemote = remote;
92 return mRemote;
115 mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
H A DIMountServiceListener.java93 private IBinder mRemote; field in class:IMountServiceListener.Stub.Proxy
96 mRemote = remote;
100 return mRemote;
118 mRemote.transact(Stub.TRANSACTION_onUsbMassStorageConnectionChanged, _data,
145 mRemote.transact(Stub.TRANSACTION_onStorageStateChanged, _data, _reply, 0);
H A DIMountService.java39 private final IBinder mRemote; field in class:IMountService.Stub.Proxy
42 mRemote = remote;
46 return mRemote;
63 mRemote.transact(Stub.TRANSACTION_registerListener, _data, _reply, 0);
80 mRemote.transact(Stub.TRANSACTION_unregisterListener, _data, _reply, 0);
97 mRemote.transact(Stub.TRANSACTION_isUsbMassStorageConnected, _data, _reply, 0);
118 mRemote.transact(Stub.TRANSACTION_setUsbMassStorageEnabled, _data, _reply, 0);
136 mRemote.transact(Stub.TRANSACTION_isUsbMassStorageEnabled, _data, _reply, 0);
157 mRemote.transact(Stub.TRANSACTION_mountVolume, _data, _reply, 0);
181 mRemote
[all...]
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java141 private IBinder mRemote; field in class:BulkCursorProxy
146 mRemote = remote;
152 return mRemote;
163 mRemote.transact(GET_CURSOR_WINDOW_TRANSACTION, data, reply, 0);
184 mRemote.transact(ON_MOVE_TRANSACTION, data, reply, 0);
199 mRemote.transact(DEACTIVATE_TRANSACTION, data, reply, 0);
214 mRemote.transact(CLOSE_TRANSACTION, data, reply, 0);
229 boolean result = mRemote.transact(REQUERY_TRANSACTION, data, reply, 0);
253 mRemote.transact(GET_EXTRAS_TRANSACTION, data, reply, 0);
272 mRemote
[all...]
H A DCursorToBulkCursorAdaptor.java59 protected IContentObserver mRemote; field in class:CursorToBulkCursorAdaptor.ContentObserverProxy
63 mRemote = remoteObserver;
72 return mRemote.asBinder().unlinkToDeath(recipient, 0);
84 mRemote.onChange(selfChange, uri);
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java30 private IAidlTest mRemote; field in class:AidlTest
36 mRemote = IAidlTest.Stub.asInterface(mLocal);
209 int result = mRemote.intMethod(42);
216 TestParcelable result = mRemote.parcelableIn(arg);
226 TestParcelable result = mRemote.parcelableOut(arg);
234 TestParcelable result = mRemote.parcelableInOut(arg);
245 TestParcelable result = mRemote.listParcelableLonger(list, 1);
270 int result = mRemote.listParcelableShorter(list, 2);
291 boolean[] br = mRemote.booleanArray(b0, b1, b2);
307 char[] cr = mRemote
[all...]
/frameworks/native/include/binder/
H A DBinder.h87 inline IBinder* remote() { return mRemote; }
88 inline IBinder* remote() const { return mRemote; }
94 IBinder* const mRemote; member in class:android::BpRefBase
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1849 mRemote = remote;
1854 return mRemote;
1884 mRemote.transact(START_ACTIVITY_TRANSACTION, data, reply, 0);
1920 mRemote.transact(START_ACTIVITY_AS_USER_TRANSACTION, data, reply, 0);
1955 mRemote.transact(START_ACTIVITY_AND_WAIT_TRANSACTION, data, reply, 0);
1984 mRemote.transact(START_ACTIVITY_TRANSACTION, data, reply, 0);
2018 mRemote.transact(START_ACTIVITY_INTENT_SENDER_TRANSACTION, data, reply, 0);
2038 mRemote.transact(START_NEXT_MATCHING_ACTIVITY_TRANSACTION, data, reply, 0);
2058 mRemote.transact(FINISH_ACTIVITY_TRANSACTION, data, reply, 0);
2073 mRemote
4152 private IBinder mRemote; field in class:ActivityManagerProxy
[all...]
H A DApplicationThreadNative.java602 private final IBinder mRemote; field in class:ApplicationThreadProxy
605 mRemote = remote;
609 return mRemote;
620 mRemote.transact(SCHEDULE_PAUSE_ACTIVITY_TRANSACTION, data, null,
632 mRemote.transact(SCHEDULE_STOP_ACTIVITY_TRANSACTION, data, null,
643 mRemote.transact(SCHEDULE_WINDOW_VISIBILITY_TRANSACTION, data, null,
654 mRemote.transact(SCHEDULE_SLEEPING_TRANSACTION, data, null,
665 mRemote.transact(SCHEDULE_RESUME_ACTIVITY_TRANSACTION, data, null,
676 mRemote.transact(SCHEDULE_SEND_RESULT_TRANSACTION, data, null,
708 mRemote
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java324 mRemote = remote;
329 return mRemote;
364 mRemote.transact(IContentProvider.QUERY_TRANSACTION, data, reply, 0);
397 mRemote.transact(IContentProvider.GET_TYPE_TRANSACTION, data, reply, 0);
418 mRemote.transact(IContentProvider.INSERT_TRANSACTION, data, reply, 0);
438 mRemote.transact(IContentProvider.BULK_INSERT_TRANSACTION, data, reply, 0);
459 mRemote.transact(IContentProvider.APPLY_BATCH_TRANSACTION, data, reply, 0);
482 mRemote.transact(IContentProvider.DELETE_TRANSACTION, data, reply, 0);
505 mRemote.transact(IContentProvider.UPDATE_TRANSACTION, data, reply, 0);
526 mRemote
647 private IBinder mRemote; field in class:ContentProviderProxy
[all...]
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp155 Variable* mRemote; member in class:ProxyClass
169 // IBinder mRemote
170 mRemote = new Variable(IBINDER_TYPE, "mRemote");
171 this->elements.push_back(new Field(PRIVATE, mRemote));
179 ctor->statements->Add(new Assignment(mRemote, remote));
188 asBinder->statements->Add(new ReturnStatement(mRemote));
454 MethodCall* call = new MethodCall(proxyClass->mRemote, "transact", 4,
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp118 sockaddr_storage mRemote; member in class:__anon1172::AudioStream
203 mRemote = *remote;
297 (sockaddr *)&mRemote, sizeof(mRemote));
356 sendto(mSocket, buffer, length + 12, MSG_DONTWAIT, (sockaddr *)&mRemote,
357 sizeof(mRemote));
435 mRemote = remote;

Completed in 331 milliseconds