Home
last modified time | relevance | path

Searched refs:remote (Results 1 – 25 of 35) sorted by relevance

12

/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionManager.java120 for (RemoteConnection remote : conferenceable) {
121 if (mManagedConnectionByRemote.containsKey(remote)) {
122 c.add(mManagedConnectionByRemote.get(remote));
152 TestManagedConnection(RemoteConnection remote, boolean isIncoming) { in TestManagedConnection() argument
153 mRemote = remote; in TestManagedConnection()
158 setConnectionProperties(remote.getConnectionProperties()); in TestManagedConnection()
332 public TestManagedConference(RemoteConference remote) { in TestManagedConference() argument
334 mRemote = remote; in TestManagedConference()
335 remote.registerCallback(mRemoteCallback); in TestManagedConference()
337 for (RemoteConnection r : remote.getConnections()) { in TestManagedConference()
[all …]
/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
DInetDiagMessage.java57 InetSocketAddress remote, int family, short flags) { in InetDiagReqV2() argument
58 return InetDiagReqV2(protocol, local, remote, family, flags, 0 /* pad */, in InetDiagReqV2()
84 @Nullable InetSocketAddress remote, int family, short flags, int pad, int idiagExt, in InetDiagReqV2() argument
96 new StructInetDiagReqV2(protocol, local, remote, family, pad, idiagExt, state); in InetDiagReqV2()
116 InetSocketAddress remote, int family, short flags, in lookupUidByFamily() argument
119 byte[] msg = InetDiagReqV2(protocol, local, remote, family, flags); in lookupUidByFamily()
137 InetSocketAddress remote, FileDescriptor fd) in lookupUid() argument
148 uid = lookupUidByFamily(protocol, remote, local, family, NLM_F_REQUEST, fd); in lookupUid()
150 uid = lookupUidByFamily(protocol, local, remote, family, NLM_F_REQUEST, fd); in lookupUid()
191 InetSocketAddress remote) { in getConnectionOwnerUid() argument
[all …]
DStructInetDiagReqV2.java51 public StructInetDiagReqV2(int protocol, InetSocketAddress local, InetSocketAddress remote, in StructInetDiagReqV2() argument
53 this(protocol, local, remote, family, 0 /* pad */, 0 /* extension */, in StructInetDiagReqV2()
58 @Nullable InetSocketAddress remote, int family, int pad, int extension, int state) in StructInetDiagReqV2() argument
64 if ((local == null) != (remote == null)) { in StructInetDiagReqV2()
67 mId = ((local != null && remote != null) ? new StructInetDiagSockId(local, remote) : null); in StructInetDiagReqV2()
/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/
DInetDiagSocketTest.java76 InetSocketAddress remote = new InetSocketAddress(InetAddress.getByName("8.8.8.8"), in testInetDiagReqV2UdpInet4() local
78 final byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_UDP, local, remote, AF_INET, in testInetDiagReqV2UdpInet4()
111 InetSocketAddress remote = new InetSocketAddress(InetAddress.getByName("8.8.8.8"), in testInetDiagReqV2TcpInet6() local
113 byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET6, in testInetDiagReqV2TcpInet6()
148 InetSocketAddress remote = new InetSocketAddress(InetAddress.getByName("8.8.4.4"), in testInetDiagReqV2TcpInetWithExt() local
150 byte[] msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET, in testInetDiagReqV2TcpInetWithExt()
157 remote = new InetSocketAddress(InetAddress.getByName("8.8.8.8"), in testInetDiagReqV2TcpInetWithExt()
159 msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, local, remote, AF_INET6, in testInetDiagReqV2TcpInetWithExt()
194 InetSocketAddress remote = new InetSocketAddress(InetAddress.getByName("8.8.4.4"), in testInetDiagReqV2TcpInet6NoIdSpecified() local
201 msg = InetDiagMessage.InetDiagReqV2(IPPROTO_TCP, null, remote, AF_INET6, in testInetDiagReqV2TcpInet6NoIdSpecified()
/packages/modules/NetworkStack/tests/integration/src/android/net/netlink/
DInetDiagSocketIntegrationTest.java72 public InetSocketAddress remote; field in InetDiagSocketIntegrationTest.Connection
119 remote = (InetSocketAddress) Os.getpeername(localFd); in TcpConnection()
139 remote = new InetSocketAddress(remoteAddress, 7); in UdpConnection()
144 InetSocketAddress remote, boolean expectSuccess) { in checkConnectionOwnerUid() argument
145 final int uid = mCm.getConnectionOwnerUid(protocol, local, remote); in checkConnectionOwnerUid()
168 checkConnectionOwnerUid(tcp.protocol, tcp.local, tcp.remote, true); in checkGetConnectionOwnerUid()
169 checkConnectionOwnerUid(IPPROTO_UDP, tcp.local, tcp.remote, false); in checkGetConnectionOwnerUid()
170 checkConnectionOwnerUid(tcp.protocol, new InetSocketAddress(0), tcp.remote, false); in checkGetConnectionOwnerUid()
175 checkConnectionOwnerUid(udp.protocol, udp.local, udp.remote, true); in checkGetConnectionOwnerUid()
176 checkConnectionOwnerUid(IPPROTO_TCP, udp.local, udp.remote, false); in checkGetConnectionOwnerUid()
[all …]
/packages/apps/Contacts/src/com/android/contacts/model/
DValuesDelta.java335 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() argument
337 if (local == null && (remote.isDelete() || remote.isTransient())) return null; in mergeAfter()
344 local.mAfter = remote.getCompleteValues(); in mergeAfter()
347 local.mAfter = remote.mAfter; in mergeAfter()
DRawContactDelta.java105 public static RawContactDelta mergeAfter(RawContactDelta local, RawContactDelta remote) { in mergeAfter() argument
107 final ValuesDelta remoteValues = remote.mValues; in mergeAfter()
116 final Long remoteVersion = remote.mValues.getAsLong(RawContacts.VERSION); in mergeAfter()
122 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
125 for (ArrayList<ValuesDelta> mimeEntries : remote.mEntries.values()) { in mergeAfter()
DRawContactDeltaList.java102 RawContactDeltaList remote) { in mergeAfter() argument
106 for (RawContactDelta remoteEntity : remote) { in mergeAfter()
/packages/apps/Camera2/src_pd/com/android/camera/util/
DRemoteShutterHelper.java21 import com.android.camera.remote.RemoteCameraModule;
22 import com.android.camera.remote.RemoteShutterListener;
/packages/apps/Camera2/src/com/android/camera/remote/
DRemoteCameraModule.java17 package com.android.camera.remote;
DRemoteShutterListener.java17 package com.android.camera.remote;
/packages/apps/Camera2/src/com/android/camera/app/
DCameraServices.java19 import com.android.camera.remote.RemoteShutterListener;
DCameraServicesImpl.java24 import com.android.camera.remote.RemoteShutterListener;
/packages/apps/Dialer/java/com/android/incallui/video/protocol/
DVideoCallScreenDelegate.java48 void setSurfaceViews(SurfaceView preview, SurfaceView remote); in setSurfaceViews() argument
/packages/services/Car/procfs-inspector/server/
Dserver.cpp45 remote()->transact((uint32_t)IProcfsInspector::Call::READ_PROCESS_TABLE, data, &reply); in readProcessTable()
/packages/apps/Dialer/java/com/android/dialer/rtt/
Drtt_transcript.proto26 // Whether this message is sent from local device or received from remote
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java267 byte[] remote = (byte[]) request.getHeader(HeaderSet.WHO); in onConnect()
268 if (remote != null) { in onConnect()
270 Log.d(TAG, "onConnect(): remote=" + Arrays.toString(remote)); in onConnect()
272 reply.setHeader(HeaderSet.TARGET, remote); in onConnect()
/packages/apps/Dialer/java/com/android/dialer/logging/
Dcontact_source.proto40 // A remote source not listed below
Dcontact_lookup_result.proto69 // Number was identified by a remote data source not listed below
/packages/apps/Test/connectivity/sl4n/
DREADME.md6 APIs and accessing the HAL layer in an platform-independent manner. This tool enables remote
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java374 byte[] remote = (byte[]) request.getHeader(HeaderSet.WHO); in onConnect()
375 if (remote != null) { in onConnect()
377 Log.d(TAG, "onConnect(): remote=" + Arrays.toString(remote)); in onConnect()
379 reply.setHeader(HeaderSet.TARGET, remote); in onConnect()
/packages/apps/Dialer/
Dpackages.mk66 com.android.dialer.searchfragment.remote \
/packages/services/Telecomm/proto/
Dtelecom.proto219 // Disconnected because of a remote user-initiated action,
/packages/modules/DnsResolver/
Dstats.proto279 SYS_EREMOTE = 66; // The object is remote
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java408 public void setSurfaceViews(SurfaceView preview, SurfaceView remote) { in setSurfaceViews() argument

12