Home | History | Annotate | Download | only in nfc

Lines Matching refs:uris

10  * Allows bundling NdefMessage, Uris and flags in a single
17 public final Uri[] uris;
21 public BeamShareData(NdefMessage msg, Uri[] uris, UserHandle userHandle, int flags) {
23 this.uris = uris;
35 int urisLength = (uris != null) ? uris.length : 0;
39 dest.writeTypedArray(uris, 0);
49 Uri[] uris = null;
53 uris = new Uri[numUris];
54 source.readTypedArray(uris, Uri.CREATOR);
59 return new BeamShareData(msg, uris, userHandle, flags);