HomeSort by relevance Sort by last modified time
    Searched defs:stations (Results 1 - 2 of 2) sorted by null

  /packages/apps/Car/Radio/src/com/android/car/radio/
RadioDatabase.java 93 * The table that holds all radio stations have have been pre-scanned by a secondary tuner.
124 * Query to return all the pre-scanned stations for a particular radio band.
133 * The WHERE clause for a delete operation that will remove all pre-scanned stations for a
260 * Returns all the pre-scanned stations for the given radio band.
263 * @return A list of pre-scanned stations or an empty array if no stations found.
275 List<RadioStation> stations = new ArrayList<>(); local
298 stations.add(new RadioStation(channel, subChannel, band, rds));
311 return stations;
315 * Inserts the given list of {@link RadioStation}s as the list of pre-scanned stations for th
    [all...]
RadioStorage.java 305 * Stores the list of {@link RadioStation}s as the pre-scanned stations for the given radio
311 public void storePreScannedStations(int radioBand, List<RadioStation> stations) {
312 if (stations == null) {
316 new StorePreScannedAsyncTask(radioBand).execute(stations);
465 List<RadioStation> stations = stationsList[0]; local
467 boolean result = sRadioDatabase.insertPreScannedStations(mRadioBand, stations);
470 Log.d(TAG, "Store pre-scanned stations success: " + result);

Completed in 2584 milliseconds