Home
last modified time | relevance | path

Searched refs:IndicationFilter (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DDeviceStateMonitorTest.java39 import android.hardware.radio.V1_5.IndicationFilter;
68 IndicationFilter.SIGNAL_STRENGTH
69 | IndicationFilter.FULL_NETWORK_STATE
70 | IndicationFilter.DATA_CALL_DORMANCY_CHANGED
71 | IndicationFilter.LINK_CAPACITY_ESTIMATE
72 | IndicationFilter.PHYSICAL_CHANNEL_CONFIG
73 | IndicationFilter.REGISTRATION_FAILURE
74 | IndicationFilter.BARRING_INFO;
123 IndicationFilter.SIGNAL_STRENGTH, new int[] {
125 IndicationFilter.FULL_NETWORK_STATE, new int[] {
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDeviceStateMonitor.java30 import android.hardware.radio.V1_5.IndicationFilter;
199 private int mUnsolicitedResponseFilter = IndicationFilter.ALL;
536 int newFilter = IndicationFilter.REGISTRATION_FAILURE; in onUpdateDeviceState()
539 newFilter |= IndicationFilter.SIGNAL_STRENGTH; in onUpdateDeviceState()
543 newFilter |= IndicationFilter.FULL_NETWORK_STATE; in onUpdateDeviceState()
547 newFilter |= IndicationFilter.DATA_CALL_DORMANCY_CHANGED; in onUpdateDeviceState()
551 newFilter |= IndicationFilter.LINK_CAPACITY_ESTIMATE; in onUpdateDeviceState()
555 newFilter |= IndicationFilter.PHYSICAL_CHANNEL_CONFIG; in onUpdateDeviceState()
560 newFilter |= IndicationFilter.BARRING_INFO; in onUpdateDeviceState()
564 if ((newFilter & IndicationFilter.PHYSICAL_CHANNEL_CONFIG) in onUpdateDeviceState()
[all …]
H A DRIL.java56 import android.hardware.radio.V1_5.IndicationFilter;
214 IndicationFilter.SIGNAL_STRENGTH
215 | IndicationFilter.FULL_NETWORK_STATE
216 | IndicationFilter.DATA_CALL_DORMANCY_CHANGED;
219 | IndicationFilter.LINK_CAPACITY_ESTIMATE
220 | IndicationFilter.PHYSICAL_CHANNEL_CONFIG;
223 | IndicationFilter.REGISTRATION_FAILURE
224 | IndicationFilter.BARRING_INFO;
/aosp12/hardware/interfaces/radio/1.2/
H A DIRadio.hal52 * @1.2::IndicationFilter:ALL.
55 * @param indicationFilter 32-bit bitmap of IndicationFilter. Bits set to 1 indicate the
56 * indications are enabled. See @1.2::IndicationFilter for the definition of each bit.
60 oneway setIndicationFilter_1_2(int32_t serial, bitfield<IndicationFilter> indicationFilter);
H A Dtypes.hal88 * Overwritten from @1.0::IndicationFilter in order to redefine ALL. In the future, this should
91 enum IndicationFilter : int32_t {
/aosp12/hardware/interfaces/radio/1.5/
H A DIRadio.hal24 import @1.5::IndicationFilter;
261 * @1.5::IndicationFilter:ALL.
264 * @param indicationFilter 32-bit bitmap of IndicationFilter. Bits set to 1 indicate the
265 * indications are enabled. See @1.5::IndicationFilter for the definition of each bit.
269 oneway setIndicationFilter_1_5(int32_t serial, bitfield<IndicationFilter> indicationFilter);
H A Dtypes.hal42 import @1.2::IndicationFilter;
842 enum IndicationFilter : @1.2::IndicationFilter {
/aosp12/hardware/interfaces/radio/1.2/default/
H A DRadio.cpp806 hidl_bitfield<IndicationFilter> /* indicationFilter */) { in setIndicationFilter() argument
868 int32_t /* serial */, hidl_bitfield<IndicationFilter> /* indicationFilter */) { in setIndicationFilter_1_2() argument
H A DRadio.h240 hidl_bitfield<IndicationFilter> indicationFilter) override;
264 hidl_bitfield<IndicationFilter> indicationFilter) override;
/aosp12/hardware/interfaces/radio/1.0/
H A DIRadio.hal1561 * @param indicationFilter 32-bit bitmap of IndicationFilter. Bits set to 1 indicate the
1562 * indications are enabled. See IndicationFilter for the definition of each bit.
1569 oneway setIndicationFilter(int32_t serial, bitfield<IndicationFilter> indicationFilter);
H A Dtypes.hal1121 enum IndicationFilter : int32_t {
/aosp12/hardware/interfaces/radio/1.2/vts/functional/
H A Dradio_hidl_hal_api.cpp412 serial, static_cast<int>(::android::hardware::radio::V1_2::IndicationFilter::ALL)); in TEST_P()