HomeSort by relevance Sort by last modified time
    Searched refs:mDestination (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/net/
RouteInfo.java 49 private final LinkAddress mDestination;
103 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
138 return (mDestination.getAddress() instanceof Inet4Address &&
139 mDestination.getNetworkPrefixLength() == 32) ||
140 (mDestination.getAddress() instanceof Inet6Address &&
141 mDestination.getNetworkPrefixLength() == 128);
148 val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0);
150 val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0)
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
PartRequest.java 29 public final String mDestination;
37 mDestination = _destination;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 55 public String mDestination;
80 mDestination = destination;
BluetoothOppBatch.java 71 public final BluetoothDevice mDestination;
111 mDestination = adapter.getRemoteDevice(info.mDestination);
BluetoothOppService.java 580 Log.v(TAG, "DESTINAT: " + info.mDestination);
689 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION);
    [all...]
BluetoothOppObexClientSession.java 348 applyRemoteDeviceQuirks(request, mInfo.mDestination, fileInfo.mFileName);
BluetoothOppTransfer.java 493 mConnectThread = new SocketConnectThread(mBatch.mDestination,false);
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEntry.java 54 private final String mDestination;
83 mDestination = destination;
188 return mDestination;
235 return mDisplayName + " <" + mDestination + ">, isValid=" + mIsValid;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 75 private Text mDestination;
106 mDestination = new Text(composite, SWT.BORDER);
107 mDestination.setLayoutData(gd = new GridData(GridData.FILL_HORIZONTAL));
108 mDestination.addModifyListener(new ModifyListener() {
129 mDestination.setText(saveLocation);
163 mDestination.setText(destination);
297 String path = mDestination.getText().trim();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
RenderingRequest.java 36 private Rect mDestination = null;
156 return mDestination;
160 mDestination = destination;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 79 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION);
213 public int mDestination;
386 return mDestination != Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING;
495 return (mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION
496 || mDestination == Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION
497 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING
498 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE);
529 pw.printPair("mDestination", mDestination);
577 && (mDestination == Downloads.Impl.DESTINATION_EXTERNAL |
    [all...]
DownloadThread.java 570 mInfo.mDestination, state.mFilename, bytesRead);
581 mStorageManager.verifySpace(mInfo.mDestination, state.mFilename, bytesRead);
667 mInfo.mDestination,
    [all...]
DownloadNotifier.java 184 if (info.mDestination != Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION) {
DownloadService.java 409 if (info.mDestination != Downloads.Impl.DESTINATION_EXTERNAL && info.mFileName != null) {

Completed in 4194 milliseconds