Home
last modified time | relevance | path

Searched refs:mDestination (Results 1 – 19 of 19) sorted by relevance

/packages/modules/Connectivity/framework/src/android/net/
DRouteInfo.java73 private final IpPrefix mDestination; field in RouteInfo
213 mDestination = destination; // IpPrefix objects are immutable. in RouteInfo()
344 return (mDestination.getAddress() instanceof Inet4Address && in isHost()
345 mDestination.getPrefixLength() == 32) || in isHost()
346 (mDestination.getAddress() instanceof Inet6Address && in isHost()
347 mDestination.getPrefixLength() == 128); in isHost()
357 return mDestination; in getDestination()
366 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength()); in getDestinationLinkAddress()
420 return mType == RTN_UNICAST && mDestination.getPrefixLength() == 0; in isDefaultRoute()
430 return mType == RTN_UNREACHABLE && mDestination.getPrefixLength() == 0; in isUnreachableDefaultRoute()
[all …]
DNattSocketKeepalive.java33 @NonNull private final InetAddress mDestination; field in NattSocketKeepalive
46 mDestination = destination; in NattSocketKeepalive()
56 mSource.getHostAddress(), mDestination.getHostAddress()); in startImpl()
/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
DRtNetlinkNeighborMessage.java63 neighMsg.mDestination = nlAttr.getValueAsInetAddress(); in parse()
135 msg.mDestination = ip; in newNewNeighborMessage()
147 private InetAddress mDestination; field in RtNetlinkNeighborMessage
155 mDestination = null; in RtNetlinkNeighborMessage()
166 return mDestination; in getDestination()
183 if (mDestination != null) { in getRequiredSpace()
185 StructNlAttr.NLA_HEADERLEN + mDestination.getAddress().length); in getRequiredSpace()
208 if (mDestination != null) { in pack()
209 packNlAttr(NDA_DST, mDestination.getAddress(), byteBuffer); in pack()
218 final String ipLiteral = (mDestination == null) ? "" : mDestination.getHostAddress(); in toString()
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperation.java58 private DocumentStack mDestination; field in FileOperation
69 mDestination = destination; in FileOperation()
86 return mDestination; in getDestination()
94 mDestination = destination; in setDestination()
106 builder.append(", destination=").append(mDestination.toString()); in appendInfoTo()
113 out.writeParcelable(mDestination, flag); in writeToParcel()
120 mDestination = in.readParcelable(FileOperation.class.getClassLoader()); in FileOperation()
316 private DocumentStack mDestination; field in FileOperation.Builder
334 mDestination = destination; in withDestination()
341 return new CopyOperation(mSrcs, mDestination); in build()
[all …]
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/
DTestWallpaperPersister.java50 private int mDestination; field in TestWallpaperPersister
90 mDestination = destination; in setIndividualWallpaper()
115 mDestination = WallpaperPersister.DEST_BOTH; in setIndividualWallpaperWithPosition()
175 return mDestination; in getLastDestination()
193 if (mDestination == DEST_HOME_SCREEN || mDestination == DEST_BOTH) { in finishSettingWallpaper()
197 if (mDestination == DEST_LOCK_SCREEN || mDestination == DEST_BOTH) { in finishSettingWallpaper()
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
DStartJobTask.java74 private final Uri mDestination; field in StartJobTask
87 mDestination = destination; in StartJobTask()
145 String address = mDestination.getHost() + mDestination.getPath(); in doInBackground()
173 + " port=" + mDestination.getPort() + " mime=" + MIME_TYPE_PDF in doInBackground()
177 result = mBackend.nativeStartJob(Backend.getIp(address), mDestination.getPort(), in doInBackground()
179 mDestination.getScheme()); in doInBackground()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadInfo.java72 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION); in updateFromDatabase()
161 public int mDestination; field in DownloadInfo
384 return mDestination != Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING; in isRoamingAllowed()
423 pw.printPair("mDestination", mDestination); in dump()
451 && (mDestination == Downloads.Impl.DESTINATION_EXTERNAL || in shouldScanFile()
452 mDestination == Downloads.Impl.DESTINATION_FILE_URI || in shouldScanFile()
453 mDestination == Downloads.Impl.DESTINATION_NON_DOWNLOADMANAGER_DOWNLOAD) in shouldScanFile()
DDownloadThread.java687 if (mInfo.mDestination != Downloads.Impl.DESTINATION_FILE_URI) { in finalizeDestination()
692 mContext, mInfo.mDestination); in finalizeDestination()
694 mContext, mInfo.mDestination); in finalizeDestination()
783 mInfo.mDestination); in parseOkHeaders()
DDownloadProvider.java1515 } else if ((info.mDestination == Downloads.Impl.DESTINATION_EXTERNAL in update()
1516 || info.mDestination == Downloads.Impl.DESTINATION_FILE_URI in update()
1517 || info.mDestination == Downloads.Impl in update()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppBatch.java68 public final BluetoothDevice mDestination; field in BluetoothOppBatch
108 mDestination = adapter.getRemoteDevice(info.mDestination); in BluetoothOppBatch()
DBluetoothOppShareInfo.java55 public String mDestination; field in BluetoothOppShareInfo
80 mDestination = destination; in BluetoothOppShareInfo()
DBluetoothOppTransfer.java123 Log.v(TAG, "Device :" + device + "- OPP device: " + mBatch.mDestination in onReceive()
126 if ((device.equals(mBatch.mDestination)) && (mCurrentShare.mConfirm in onReceive()
644 mDevice = mBatch.mDestination; in startConnectSession()
645 if (!mBatch.mDestination.sdpSearch(BluetoothUuid.OBEX_OBJECT_PUSH)) { in startConnectSession()
652 mConnectThread = new SocketConnectThread(mBatch.mDestination, false, false, -1); in startConnectSession()
DBluetoothOppService.java744 Log.v(TAG, "DESTINAT: " + info.mDestination); in insertShare()
857 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION); in updateShare()
DBluetoothOppObexClientSession.java401 applyRemoteDeviceQuirks(request, mInfo.mDestination, fileInfo.mFileName); in sendFile()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultWallpaperPersister.java599 private final int mDestination; field in DefaultWallpaperPersister.SetWallpaperTask
618 mDestination = destination; in SetWallpaperTask()
630 mDestination = destination; in SetWallpaperTask()
655 if (mDestination == DEST_HOME_SCREEN) { in doInBackground()
657 } else if (mDestination == DEST_LOCK_SCREEN) { in doInBackground()
694 if (mDestination == DEST_HOME_SCREEN in doInBackground()
701 setImageWallpaperMetadata(mDestination, wallpaperId); in doInBackground()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DRenderingRequest.java37 private Rect mDestination = null; field in RenderingRequest
183 return mDestination; in getDestination()
187 mDestination = destination; in setDestination()
/packages/apps/Settings/src/com/android/settings/accessibility/
DAccessibilityDetailsSettingsFragment.java90 openSubSettings(launchArguments.mDestination, launchArguments.mArguments); in openSystemAccessibilitySettingsAndFinish()
226 final String mDestination; field in AccessibilityDetailsSettingsFragment.LaunchFragmentArguments
229 mDestination = Objects.requireNonNull(destination); in LaunchFragmentArguments()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/services/
DFileOperationServiceTest.java414 private final DocumentStack mDestination; field in FileOperationServiceTest.TestFileOperation
421 mDestination = destination; in TestFileOperation()
427 service, listener, id, mOpType, mDestination, mSrcs, mJobRunnable, features); in createJob()
/packages/modules/Connectivity/Tethering/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt1196 Landroid/net/RouteInfo;->mDestination:Landroid/net/IpPrefix;