HomeSort by relevance Sort by last modified time
    Searched refs:station (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /packages/apps/Car/Radio/src/com/android/car/radio/
PrescannedRadioStationAdapter.java 48 * Sets the the station within the list passed to {@link #setStations(List)} that should be
49 * the first station displayed. A station is identified by the channel number and band.
52 * starting station can be found at.
60 * Returns the station that is currently the first station to be displayed. This value can be
69 * Returns the previous station in the list based off the value returned by
87 * Returns the next station in the list based off the value returned by
120 RadioStation station = mStations.get(i); local
122 if (channelNumber >= station.getChannelNumber())
163 RadioStation station = mStations.get(position); local
    [all...]
RadioBackgroundScanner.java 109 * Replaces the given station in {@link #mScannedStations} or adds it to the end of the list if
112 private void addOrReplaceInScannedStations(RadioStation station) {
113 int index = mScannedStations.indexOf(station);
116 Log.v(TAG, "Storing pre-scanned station: " + station);
120 mScannedStations.add(station);
122 mScannedStations.set(index, station);
146 // Stop scanning if we have looped back to the starting station.
154 for (RadioStation station : mScannedStations) {
155 Log.v(TAG, station.toString())
176 RadioStation station = new RadioStation(mCurrentChannel, 0 \/* subChannelNumber *\/, local
194 RadioStation station = new RadioStation(mCurrentChannel, 0 \/* subChannelNumber *\/, local
    [all...]
PresetsAdapter.java 73 * Indicates which radio station is the active one inside the list of presets that are set on
74 * this adapter. This will cause that station to be highlighted in the list. If the station
77 public void setActiveRadioStation(RadioStation station) {
78 mActiveRadioStation = station;
92 RadioStation station = mPresets.get(position); local
93 boolean isActiveStation = station.equals(mActiveRadioStation);
95 holder.bindPreset(station, isActiveStation, getItemCount());
ManualTunerFragment.java 28 * A fragment that allows the user to manuall input a radio station to tune to.
44 * Called when the user has finished selected a radio station on the manual tuner. If the
45 * user exits the manual tuner without a station being selected, then {@code null} will
48 * @param station The {@link RadioStation} that was selected or {@code null} if the user
51 void onStationSelected(@Nullable RadioStation station);
82 public void onDone(RadioStation station) {
84 mListener.onStationSelected(station);
RadioController.java 49 * A controller that handles the display of metadata on the current radio station.
123 * Interface for a class that will be notified when the current radio station has been changed.
127 * Called when the current radio station has changed in the radio.
129 * @param station The current radio station.
131 void onRadioStationChanged(RadioStation station);
186 * Sets the listener that will be notified whenever the radio station changes.
210 * Retrieves information about the current radio station from {@link #mRadioManager} and updates
219 RadioStation station = mRadioManager.getCurrentRadioStation(); local
222 Log.d(TAG, "updateRadioDisplay(); current station: " + station)
353 RadioStation station = new RadioStation(mCurrentChannelNumber, 0 \/* subchannel *\/, local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
if_ec.h 10 unsigned char station; /* Station number. */ member in struct:ec_addr
if_frad.h 85 short station; member in struct:frad_conf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/neteconet/
ec.h 28 unsigned char station; /* Station number. */ member in struct:ec_addr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
if_ec.h 9 unsigned char station; /* Station number. */ member in struct:ec_addr
if_frad.h 85 short station; member in struct:frad_conf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/neteconet/
ec.h 28 unsigned char station; /* Station number. */ member in struct:ec_addr
  /packages/apps/Car/libs/car-radio-service/src/com/android/car/radio/service/
IRadioCallback.aidl 28 * @param station A {@link RadioStation} object that contains the data for the now current radio
29 * station.
31 void onRadioStationChanged(in RadioStation station);
34 * Called when only the metadata for the current station has changed.
RadioStation.java 26 * A representation of a radio station.
104 RadioStation station = (RadioStation) object; local
105 return station.getChannelNumber() == mChannelNumber
106 && station.getSubChannelNumber() == mSubChannelNumber;
IRadioManager.aidl 28 void tune(in RadioStation station);
81 * station the radio is tuned to.
  /packages/apps/Car/Radio/src/com/android/car/radio/demo/
RadioDemo.java 83 public void tune(RadioStation station) throws RemoteException {
84 if (station == null || !requestAudioFocus()) {
88 if (station.getRadioBand() != mCurrentRadioBand) {
89 switchRadioBand(station.getRadioBand());
97 if (storedStation.equals(station)) {
111 if (station.getChannelNumber() >= storedStation.getChannelNumber()) {
117 RadioStation stationToInsert = new RadioStation(station.getChannelNumber(),
118 0 /* subChannel */, station.getRadioBand(), null /* rds */);
124 notifyCallbacks(station);
374 * Notifies any {@link IRadioCallback}s that the radio station has been changed to the give
    [all...]
  /packages/apps/Car/Stream/src/com/android/car/stream/radio/
RadioConverter.java 83 public StreamCard convert(RadioStation station, boolean isPlaying) {
89 String title = createTitleText(station);
93 if (station.getRds() != null) {
94 subtitle = station.getRds().getProgramService();
115 private String createTitleText(RadioStation station) {
116 int radioBand = station.getRadioBand();
118 station.getChannelNumber());
RadioStreamProducer.java 38 * corresponding to the currently playing radio station.
189 * A {@link IRadioCallback} that will be notified of various state changes in the radio station.
195 public void onRadioStationChanged(RadioStation station) {
197 Log.d(TAG, "onRadioStationChanged: " + station);
200 mCurrentBand = station.getRadioBand();
201 mCurrentChannelNumber = station.getChannelNumber();
209 postCard(mConverter.convert(station, isPlaying));
211 Log.e(TAG, "Post radio station changed error: " + e.getMessage());
236 RadioStation station = new RadioStation(mCurrentChannelNumber,
240 postCard(mConverter.convert(station, isPlaying))
    [all...]
  /bionic/libc/kernel/uapi/linux/
if_frad.h 57 short station; member in struct:frad_conf
  /development/ndk/platforms/android-21/include/linux/
if_frad.h 60 short station; member in struct:frad_conf
  /external/kernel-headers/original/uapi/linux/
if_frad.h 85 short station; member in struct:frad_conf
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
if_frad.h 60 short station; member in struct:frad_conf
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
if_frad.h 60 short station; member in struct:frad_conf
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
if_frad.h 60 short station; member in struct:frad_conf
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
if_frad.h 60 short station; member in struct:frad_conf
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/linux/
if_frad.h 60 short station; member in struct:frad_conf

Completed in 1974 milliseconds

1 2 3 4 5 6 7