Searched defs:remote (Results 1 - 20 of 20) sorted by relevance

/frameworks/native/include/binder/
H A DBinder.h89 inline IBinder* remote() { return mRemote; } function in class:android::BpRefBase
90 inline IBinder* remote() const { return mRemote; } function in class:android::BpRefBase
H A DIInterface.h66 BpInterface(const sp<IBinder>& remote);
135 inline BpInterface<INTERFACE>::BpInterface(const sp<IBinder>& remote) argument
136 : BpRefBase(remote)
143 return remote();
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java144 public BulkCursorProxy(IBinder remote) argument
146 mRemote = remote;
/frameworks/base/core/java/android/os/
H A DCancellationSignal.java64 final ICancellationSignal remote;
72 remote = mRemote;
79 if (remote != null) {
81 remote.cancel();
125 * Sets the remote transport.
128 * remote transport is canceled immediately.
130 * This method is guaranteed that the remote transport will not be called after it
133 * @param remote The remote transport, or null to remove.
137 public void setRemote(ICancellationSignal remote) { argument
[all...]
H A DCommonTimeUtils.java39 * Operation failed due to dead remote object.
43 public CommonTimeUtils(IBinder remote, String interfaceDesc) { argument
44 mRemote = remote;
H A DServiceManagerNative.java110 public ServiceManagerProxy(IBinder remote) { argument
111 mRemote = remote;
/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java82 Proxy(IBinder remote) { argument
83 mRemote = remote;
H A DIObbActionListener.java87 Proxy(IBinder remote) { argument
88 mRemote = remote;
H A DIMountServiceListener.java130 Proxy(IBinder remote) { argument
131 mRemote = remote;
H A DIMountService.java42 Proxy(IBinder remote) { argument
43 mRemote = remote;
/frameworks/av/camera/
H A DCameraBase.cpp165 sp<typename TCamTraits::TCamUser> CameraBase<TCam, TCamTraits>::remote() function in class:android::CameraBase
178 ALOGW("mediaserver's remote binder Camera object died");
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java376 public ContentProviderProxy(IBinder remote) argument
378 mRemote = remote;
/frameworks/av/media/libmedia/
H A DIMediaSource.cpp101 // Explicitly ask the remote side to release the buffer. We could also just clear
102 // mRemoteSource, but that doesn't immediately release the reference on the remote side.
122 status_t ret = remote()->transact(START, data, &reply);
138 return remote()->transact(STOP, data, &reply);
145 status_t ret = remote()->transact(GETFORMAT, data, &reply);
160 status_t ret = remote()->transact(READ, data, &reply);
168 sp<IBinder> remote = reply.readStrongBinder(); local
176 MediaBuffer *buf = new RemoteMediaBufferWrapper(mem, remote);
201 status_t ret = remote()->transact(READMULTIPLE, data, &reply);
228 return remote()
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.h85 // Camera device is only functional after remote being set
86 void setRemoteDevice(sp<hardware::camera2::ICameraDeviceUser> remote);
308 // Camera device is only functional after remote being set
309 inline void setRemoteDevice(android::sp<android::hardware::camera2::ICameraDeviceUser> remote) { argument
310 mDevice->setRemoteDevice(remote);
H A DACameraDevice.cpp244 ALOGE("Camera %s submit request remote failure: ret %d", getId(), sequenceId);
388 ALOGE("Stop repeating request fails in remote: %s", remoteRet.toString8().string());
439 ALOGE("Abort captures fails in remote: %s", remoteRet.toString8().string());
618 CameraDevice::setRemoteDevice(sp<hardware::camera2::ICameraDeviceUser> remote) { argument
620 mRemote = remote;
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp276 struct sockaddr_in remote; local
277 memset(remote.sin_zero, 0, sizeof(remote.sin_zero));
278 remote.sin_family = AF_INET;
279 remote.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
280 remote.sin_port = htons(port);
283 mSocket, (const struct sockaddr *)&remote, sizeof(remote));
285 reply->setInt32("server-ip", ntohl(remote.sin_addr.s_addr));
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp101 bool set(int mode, int socket, sockaddr_storage *remote,
167 bool AudioStream::set(int mode, int socket, sockaddr_storage *remote, argument
205 mRemote = *remote;
212 if (remote->ss_family == AF_INET) {
214 (unsigned char *)&((sockaddr_in *)remote)->sin_addr;
412 sockaddr_storage remote; local
413 socklen_t addrlen = sizeof(remote);
416 MSG_TRUNC | MSG_DONTWAIT, (sockaddr *)&remote, &addrlen);
437 mRemote = remote;
952 sockaddr_storage remote; local
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java767 public ApplicationThreadProxy(IBinder remote) { argument
768 mRemote = remote;
H A DActivityManagerNative.java3034 public ActivityManagerProxy(IBinder remote) argument
3036 mRemote = remote;
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1077 // If we are using API1, any existing client for this camera ID with the same remote
1653 bool CameraService::evictClientIdByRemote(const wp<IBinder>& remote) { argument
1671 if (remote == clientSp->getRemote() && (callingPid == servicePid ||
1687 // Do not clear caller identity, remote caller should be client proccess
2115 sp<IBinder> remote = getRemote(); local
2116 if (remote != nullptr) {
2117 remote->unlinkToDeath(mCameraService);

Completed in 1101 milliseconds