Home | History | Annotate | Download | only in nfc

Lines Matching defs:uris

9  * Allows bundling NdefMessage, Uris and flags in a single
16 public final Uri[] uris;
19 public BeamShareData(NdefMessage msg, Uri[] uris, int flags) {
21 this.uris = uris;
32 int urisLength = (uris != null) ? uris.length : 0;
36 dest.writeTypedArray(uris, 0);
45 Uri[] uris = null;
49 uris = new Uri[numUris];
50 source.readTypedArray(uris, Uri.CREATOR);
54 return new BeamShareData(msg, uris, flags);