Searched refs:RadioManager (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/hardware/radio/
H A DRadioModule.java39 RadioModule(int moduleId, RadioManager.BandConfig config, boolean withAudio,
46 RadioManager.BandConfig config, boolean withAudio);
61 public native int setConfiguration(RadioManager.BandConfig config);
63 public native int getConfiguration(RadioManager.BandConfig[] config);
77 public native int getProgramInformation(RadioManager.ProgramInfo[] info);
121 RadioManager.BandConfig config = (RadioManager.BandConfig)msg.obj;
123 case RadioManager.STATUS_OK:
142 RadioManager.ProgramInfo info = (RadioManager
[all...]
H A DRadioTuner.java32 * Obtain a RadioTuner interface by calling {@link RadioManager#openTuner(int,
33 * RadioManager.BandConfig, boolean, RadioTuner.Callback, Handler)}.
59 * <li>{@link RadioManager#STATUS_OK} in case of success, </li>
60 * <li>{@link RadioManager#STATUS_ERROR} in case of unspecified error, </li>
61 * <li>{@link RadioManager#STATUS_NO_INIT} if the native service cannot be reached, </li>
62 * <li>{@link RadioManager#STATUS_BAD_VALUE} if parameters are invalid, </li>
63 * <li>{@link RadioManager#STATUS_INVALID_OPERATION} if the call is out of sequence, </li>
64 * <li>{@link RadioManager#STATUS_DEAD_OBJECT} if the binder transaction to the native
68 public abstract int setConfiguration(RadioManager.BandConfig config);
75 * <li>{@link RadioManager#STATUS_O
[all...]
H A DRadioManager.java28 * The RadioManager class allows to control a broadcast radio tuner present on the device.
35 public class RadioManager { class
96 * Each module has a unique ID used to address it when calling RadioManager APIs.
1093 * {@link RadioTuner#getProgramInformation(RadioManager.ProgramInfo[])} */
1305 public RadioManager(Context context) { method in class:RadioManager
/frameworks/base/core/java/android/app/
H A DSystemServiceRegistry.java53 import android.hardware.radio.RadioManager;
701 registerService(Context.RADIO_SERVICE, RadioManager.class,
702 new CachedServiceFetcher<RadioManager>() {
704 public RadioManager createService(ContextImpl ctx) {
705 return new RadioManager(ctx);

Completed in 73 milliseconds