Searched defs:remote (Results 1 - 17 of 17) sorted by path

/frameworks/av/camera/
H A DCamera.cpp71 // construct a camera client from an existing camera remote
76 ALOGE("camera remote is a NULL pointer");
154 sp<ICamera> Camera::remote() function in class:android::Camera
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp271 struct sockaddr_in remote; local
272 memset(remote.sin_zero, 0, sizeof(remote.sin_zero));
273 remote.sin_family = AF_INET;
274 remote.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
275 remote.sin_port = htons(port);
278 mSocket, (const struct sockaddr *)&remote, sizeof(remote));
280 reply->setInt32("server-ip", ntohl(remote.sin_addr.s_addr));
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1832 public ActivityManagerProxy(IBinder remote) argument
1834 mRemote = remote;
H A DApplicationThreadNative.java604 public ApplicationThreadProxy(IBinder remote) { argument
605 mRemote = remote;
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java322 public ContentProviderProxy(IBinder remote) argument
324 mRemote = 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.java65 final ICancellationSignal remote;
73 remote = mRemote;
80 if (remote != null) {
82 remote.cancel();
126 * Sets the remote transport.
129 * remote transport is canceled immediately.
131 * This method is guaranteed that the remote transport will not be called after it
134 * @param remote The remote transport, or null to remove.
138 public void setRemote(ICancellationSignal remote) { argument
[all...]
H A DCommonTimeUtils.java38 * Operation failed due to dead remote object.
42 public CommonTimeUtils(IBinder remote, String interfaceDesc) { argument
43 mRemote = remote;
H A DServiceManagerNative.java110 public ServiceManagerProxy(IBinder remote) { argument
111 mRemote = remote;
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java41 Proxy(IBinder remote) { argument
42 mRemote = remote;
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;
/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/base/voip/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;
942 sockaddr_storage remote; local
[all...]
/frameworks/native/include/binder/
H A DBinder.h87 inline IBinder* remote() { return mRemote; } function in class:android::BpRefBase
88 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();

Completed in 244 milliseconds