Searched defs:remote (Results 1 - 19 of 19) 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 DIMountServiceListener.java95 Proxy(IBinder remote) { argument
96 mRemote = remote;
H A DIMountShutdownObserver.java82 Proxy(IBinder remote) { argument
83 mRemote = remote;
H A DIObbActionListener.java87 Proxy(IBinder remote) { argument
88 mRemote = remote;
H A DIMountService.java39 Proxy(IBinder remote) { argument
40 mRemote = remote;
/frameworks/av/camera/
H A DCameraBase.cpp144 sp<typename TCamTraits::TCamUser> CameraBase<TCam, TCamTraits>::remote() function in class:android::CameraBase
157 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/base/tools/aidl/
H A Dgenerate_java_binder.cpp174 Variable* remote = new Variable(IBINDER_TYPE, "remote"); local
178 ctor->parameters.push_back(remote);
179 ctor->statements->Add(new Assignment(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/base/core/java/android/security/
H A DIKeystoreService.java36 Proxy(IBinder remote) { argument
37 mRemote = remote;
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java687 public ApplicationThreadProxy(IBinder remote) { argument
688 mRemote = remote;
H A DActivityManagerNative.java2393 public ActivityManagerProxy(IBinder remote) argument
2395 mRemote = remote;
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp99 bool set(int mode, int socket, sockaddr_storage *remote,
165 bool AudioStream::set(int mode, int socket, sockaddr_storage *remote, argument
203 mRemote = *remote;
210 if (remote->ss_family == AF_INET) {
212 (unsigned char *)&((sockaddr_in *)remote)->sin_addr;
410 sockaddr_storage remote; local
411 socklen_t addrlen = sizeof(remote);
414 MSG_TRUNC | MSG_DONTWAIT, (sockaddr *)&remote, &addrlen);
435 mRemote = remote;
948 sockaddr_storage remote; local
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp209 * The remote app will no longer be able to call methods on the
1159 sp<IBinder> remote = client->getRemote(); local
1160 if (remote != NULL) {
1161 remote->unlinkToDeath(this);

Completed in 273 milliseconds