D | ScanResults.java | 38 public class ScanResults { class 44 private ScanResults(ArrayList<ScanDetail> scanDetails, ScanData scanData, in ScanResults() method in ScanResults 55 public static ScanResults merge(int bandScanned, ScanResults... others) { in merge() 59 for (ScanResults other : others) { in merge() 66 return new ScanResults(scanDetails, new ScanData(id, 0, 0, bandScanned, scanDataResults in merge() 156 public static ScanResults create(int id, int bandScanned, int... freqs) { in create() 160 public static ScanResults create(int id, int bandScanned, in create() 162 return new ScanResults(id, bandScanned, -1, nativeResults); in create() 170 public static ScanResults createOverflowing(int id, int bandScanned, int maxResults, in createOverflowing() 172 return new ScanResults(id, bandScanned, maxResults, nativeResults); in createOverflowing() [all …]
|