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

/frameworks/base/tests/AmSlam/src/test/amslam/
H A DPongReceiver.java29 void onPingPongResponse(long send, long bounce, long recv, String remote); argument
H A DMainActivity.java118 public void onPingPongResponse(long send, long bounce, long recv, String remote) { argument
122 + ", batchStart " + mBatchStartTime + ", remote: " + remote);
/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 explicit BpInterface(const sp<IBinder>& remote);
135 inline BpInterface<INTERFACE>::BpInterface(const sp<IBinder>& remote) argument
136 : BpRefBase(remote)
143 return remote();
/frameworks/native/libs/binder/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 explicit 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/native/libs/vr/libpdx_uds/
H A Dclient_channel_factory.cpp87 sockaddr_un remote; local
88 remote.sun_family = AF_UNIX;
89 strncpy(remote.sun_path, endpoint_path_.c_str(), sizeof(remote.sun_path));
90 remote.sun_path[sizeof(remote.sun_path) - 1] = '\0';
91 ALOGD("ClientChannelFactory: Waiting for endpoint at %s", remote.sun_path);
96 ALOGD("ClientChannelFactory: Connecting to %s", remote.sun_path);
98 socket_.Get(), reinterpret_cast<sockaddr*>(&remote), sizeof(remote)));
[all...]
/frameworks/av/camera/
H A DCameraBase.cpp190 sp<typename TCamTraits::TCamUser> CameraBase<TCam, TCamTraits>::remote() function in class:android::CameraBase
203 ALOGW("mediaserver's remote binder Camera object died");
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java380 public ContentProviderProxy(IBinder remote) argument
382 mRemote = remote;
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.h86 // Camera device is only functional after remote being set
87 void setRemoteDevice(sp<hardware::camera2::ICameraDeviceUser> remote);
309 // Camera device is only functional after remote being set
310 inline void setRemoteDevice(android::sp<android::hardware::camera2::ICameraDeviceUser> remote) { argument
311 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/av/services/camera/libcameraservice/
H A DCameraService.cpp1007 // If we are using API1, any existing client for this camera ID with the same remote
1737 bool CameraService::evictClientIdByRemote(const wp<IBinder>& remote) { argument
1755 if (remote == clientSp->getRemote() && (callingPid == servicePid ||
1771 // Do not clear caller identity, remote caller should be client proccess
2132 sp<IBinder> remote = getRemote(); local
2133 if (remote != nullptr) {
2134 remote->unlinkToDeath(sCameraService);

Completed in 3825 milliseconds