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

  /frameworks/base/core/java/android/net/
RouteInfo.java 53 private final IpPrefix mDestination;
153 mDestination = destination; // IpPrefix objects are immutable.
262 return (mDestination.getAddress() instanceof Inet4Address &&
263 mDestination.getPrefixLength() == 32) ||
264 (mDestination.getAddress() instanceof Inet6Address &&
265 mDestination.getPrefixLength() == 128);
274 return mDestination;
282 return new LinkAddress(mDestination.getAddress(), mDestination.getPrefixLength());
321 return mType == RTN_UNICAST && mDestination.getPrefixLength() == 0
    [all...]
  /frameworks/base/core/java/android/net/netlink/
RtNetlinkNeighborMessage.java 86 neighMsg.mDestination = nlAttr.getValueAsInetAddress();
158 msg.mDestination = ip;
170 private InetAddress mDestination;
178 mDestination = null;
189 return mDestination;
206 if (mDestination != null) {
208 StructNlAttr.NLA_HEADERLEN + mDestination.getAddress().length);
231 if (mDestination != null) {
232 packNlAttr(NDA_DST, mDestination.getAddress(), byteBuffer);
241 final String ipLiteral = (mDestination == null) ? "" : mDestination.getHostAddress()
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessage.java 32 private final int mDestination;
42 mDestination = destination;
64 return mDestination;
92 opcodeToString(mOpcode), mSource, mDestination));
  /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 595 Log.v(TAG, "DESTINAT: " + info.mDestination);
704 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION);
    [all...]
BluetoothOppObexClientSession.java 349 applyRemoteDeviceQuirks(request, mInfo.mDestination, fileInfo.mFileName);
BluetoothOppTransfer.java 495 mConnectThread = new SocketConnectThread(mBatch.mDestination,false);
  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.java 96 private final ParcelFileDescriptor mDestination;
104 mDestination = destination;
118 OutputStream out = new FileOutputStream(mDestination.getFileDescriptor());
  /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/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 84 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION);
219 public int mDestination;
405 return mDestination != Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING;
516 return (mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION
517 || mDestination == Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION
518 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING
519 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE);
557 pw.printPair("mDestination", mDestination);
605 && (mDestination == Downloads.Impl.DESTINATION_EXTERNAL |
    [all...]
DownloadThread.java 633 if (mInfo.mDestination != Downloads.Impl.DESTINATION_FILE_URI) {
638 mContext, mInfo.mDestination);
640 mContext, mInfo.mDestination);
750 mInfo.mDestination);
    [all...]
DownloadNotifier.java 187 if (info.mDestination != Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION) {
DownloadService.java 468 if (info.mDestination != Downloads.Impl.DESTINATION_EXTERNAL && info.mFileName != null) {
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEntry.java 54 private final String mDestination;
89 mDestination = destination;
199 return mDestination;
254 return mDisplayName + " <" + mDestination + ">, isValid=" + mIsValid;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
RenderingRequest.java 37 private Rect mDestination = null;
183 return mDestination;
187 mDestination = destination;

Completed in 244 milliseconds