/packages/modules/Connectivity/framework/src/android/net/ |
D | RouteInfo.java | 73 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 …]
|
D | NattSocketKeepalive.java | 33 @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/ |
D | RtNetlinkNeighborMessage.java | 63 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/ |
D | FileOperation.java | 58 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/ |
D | TestWallpaperPersister.java | 50 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/ |
D | StartJobTask.java | 74 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/ |
D | DownloadInfo.java | 72 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()
|
D | DownloadThread.java | 687 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()
|
D | DownloadProvider.java | 1515 } 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/ |
D | BluetoothOppBatch.java | 68 public final BluetoothDevice mDestination; field in BluetoothOppBatch 108 mDestination = adapter.getRemoteDevice(info.mDestination); in BluetoothOppBatch()
|
D | BluetoothOppShareInfo.java | 55 public String mDestination; field in BluetoothOppShareInfo 80 mDestination = destination; in BluetoothOppShareInfo()
|
D | BluetoothOppTransfer.java | 123 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()
|
D | BluetoothOppService.java | 744 Log.v(TAG, "DESTINAT: " + info.mDestination); in insertShare() 857 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION); in updateShare()
|
D | BluetoothOppObexClientSession.java | 401 applyRemoteDeviceQuirks(request, mInfo.mDestination, fileInfo.mFileName); in sendFile()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperPersister.java | 599 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/ |
D | RenderingRequest.java | 37 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/ |
D | AccessibilityDetailsSettingsFragment.java | 90 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/ |
D | FileOperationServiceTest.java | 414 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/ |
D | hiddenapi-max-target-o-low-priority.txt | 1196 Landroid/net/RouteInfo;->mDestination:Landroid/net/IpPrefix;
|