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

/frameworks/base/core/java/android/os/
H A DCommonClock.java113 mRemote = ServiceManager.getService(SERVICE_NAME);
114 if (null == mRemote)
117 mInterfaceDesc = mRemote.getInterfaceDescriptor();
118 mUtils = new CommonTimeUtils(mRemote, mInterfaceDesc);
119 mRemote.linkToDeath(mDeathHandler, 0);
150 if (null != mRemote) {
152 mRemote.unlinkToDeath(mDeathHandler, 0);
155 mRemote = null;
293 if ((null == mRemote) || (null == mUtils))
301 private IBinder mRemote field in class:CommonClock
[all...]
H A DCommonTimeConfig.java65 mRemote = ServiceManager.getService(SERVICE_NAME);
66 if (null == mRemote)
69 mInterfaceDesc = mRemote.getInterfaceDescriptor();
70 mUtils = new CommonTimeUtils(mRemote, mInterfaceDesc);
71 mRemote.linkToDeath(mDeathHandler, 0);
100 if (null != mRemote) {
102 mRemote.unlinkToDeath(mDeathHandler, 0);
105 mRemote = null;
364 mRemote.transact(METHOD_FORCE_NETWORKLESS_MASTER_MODE, data, reply, 0);
406 return ((null == mRemote) || (nul
417 private IBinder mRemote = null; field in class:CommonTimeConfig
[all...]
H A DCancellationSignal.java27 private ICancellationSignal mRemote; field in class:CancellationSignal
72 remote = mRemote;
141 if (mRemote == remote) {
144 mRemote = remote;
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.java44 mRemote = remote;
57 mRemote.transact(method_code, data, reply, 0);
77 mRemote.transact(method_code, data, reply, 0);
99 mRemote.transact(method_code, data, reply, 0);
119 mRemote.transact(method_code, data, reply, 0);
141 mRemote.transact(method_code, data, reply, 0);
161 mRemote.transact(method_code, data, reply, 0);
183 mRemote.transact(method_code, data, reply, 0);
277 mRemote.transact(method_code, data, reply, 0);
291 private IBinder mRemote; field in class:CommonTimeUtils
[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.java56 protected IContentObserver mRemote; field in class:CursorToBulkCursorAdaptor.ContentObserverProxy
60 mRemote = remoteObserver;
69 return mRemote.asBinder().unlinkToDeath(recipient, 0);
81 mRemote.onChange(selfChange, uri, android.os.Process.myUid());
/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.h89 inline IBinder* remote() { return mRemote; }
90 inline IBinder* remote() const { return mRemote; }
96 IBinder* const mRemote; member in class:android::BpRefBase
/frameworks/native/libs/binder/include/binder/
H A DBinder.h89 inline IBinder* remote() { return mRemote; }
90 inline IBinder* remote() const { return mRemote; }
96 IBinder* const mRemote; member in class:android::BpRefBase
/frameworks/native/libs/binder/
H A DBinder.cpp274 : mRemote(o.get()), mRefs(NULL), mState(0)
278 if (mRemote) {
279 mRemote->incStrong(this); // Removed on first IncStrong().
280 mRefs = mRemote->createWeak(this); // Held for our entire lifetime.
286 if (mRemote) {
288 mRemote->decStrong(this);
301 if (mRemote) {
302 mRemote->decStrong(this);
308 return mRemote ? mRefs->attemptIncStrong(this) : false;
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java382 mRemote = remote;
388 return mRemote;
416 mRemote.transact(IContentProvider.QUERY_TRANSACTION, data, reply, 0);
422 Binder.copyAllowBlocking(mRemote, (d.cursor != null) ? d.cursor.asBinder() : null);
451 mRemote.transact(IContentProvider.GET_TYPE_TRANSACTION, data, reply, 0);
474 mRemote.transact(IContentProvider.INSERT_TRANSACTION, data, reply, 0);
496 mRemote.transact(IContentProvider.BULK_INSERT_TRANSACTION, data, reply, 0);
520 mRemote.transact(IContentProvider.APPLY_BATCH_TRANSACTION, data, reply, 0);
545 mRemote.transact(IContentProvider.DELETE_TRANSACTION, data, reply, 0);
570 mRemote
796 private IBinder mRemote; field in class:ContentProviderProxy
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp123 if (mRemote == nullptr) {
127 binder::Status remoteRet = mRemote->createDefaultRequest(templateId, &rawRequest);
240 remoteRet = mRemote->submitRequestList(requestList, isRepeating, &info);
359 if (mRemote != nullptr) {
360 mRemote->disconnect();
362 mRemote = nullptr;
382 binder::Status remoteRet = mRemote->cancelRequest(repeatingSequenceId, &lastFrameNumber);
437 binder::Status remoteRet = mRemote->flush(&lastFrameNumber);
461 binder::Status remoteRet = mRemote->waitUntilIdle();
575 binder::Status remoteRet = mRemote
[all...]
H A DACameraDevice.h170 sp<hardware::camera2::ICameraDeviceUser> mRemote; member in class:android::final
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp120 sockaddr_storage mRemote; member in class:__anon1950::AudioStream
205 mRemote = *remote;
299 (sockaddr *)&mRemote, sizeof(mRemote));
358 sendto(mSocket, buffer, length + 12, MSG_DONTWAIT, (sockaddr *)&mRemote,
359 sizeof(mRemote));
437 mRemote = remote;

Completed in 257 milliseconds