Home
last modified time | relevance | path

Searched refs:allowedCarriers (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/radio/1.4/vts/functional/
Dradio_hidl_hal_api.cpp701 carrierRestrictions.allowedCarriers.resize(1); in TEST_P()
703 carrierRestrictions.allowedCarriers[0].mcc = hidl_string("123"); in TEST_P()
704 carrierRestrictions.allowedCarriers[0].mnc = hidl_string("456"); in TEST_P()
705 carrierRestrictions.allowedCarriers[0].matchType = CarrierMatchType::ALL; in TEST_P()
706 carrierRestrictions.allowedCarriers[0].matchData = hidl_string(); in TEST_P()
743 EXPECT_EQ(1, radioRsp_v1_4->carrierRestrictionsResp.allowedCarriers.size()); in TEST_P()
746 radioRsp_v1_4->carrierRestrictionsResp.allowedCarriers[0].mcc); in TEST_P()
748 radioRsp_v1_4->carrierRestrictionsResp.allowedCarriers[0].mnc); in TEST_P()
750 radioRsp_v1_4->carrierRestrictionsResp.allowedCarriers[0].matchType); in TEST_P()
762 carrierRestrictions.allowedCarriers.resize(0); in TEST_P()
/hardware/interfaces/radio/1.0/vts/functional/
Dradio_hidl_hal_misc.cpp862 carriers.allowedCarriers.resize(1); in TEST_P()
864 carriers.allowedCarriers[0].mcc = hidl_string(); in TEST_P()
865 carriers.allowedCarriers[0].mnc = hidl_string(); in TEST_P()
866 carriers.allowedCarriers[0].matchType = CarrierMatchType::ALL; in TEST_P()
867 carriers.allowedCarriers[0].matchData = hidl_string(); in TEST_P()
901 carriers.allowedCarriers.resize(0); in TEST_P()
/hardware/ril/libril/
Dril_service.cpp2682 RIL_Carrier *allowedCarriers = NULL; in setAllowedCarriers() local
2685 cr.len_allowed_carriers = carriers.allowedCarriers.size(); in setAllowedCarriers()
2686 allowedCarriers = (RIL_Carrier *)calloc(cr.len_allowed_carriers, sizeof(RIL_Carrier)); in setAllowedCarriers()
2687 if (allowedCarriers == NULL) { in setAllowedCarriers()
2693 cr.allowed_carriers = allowedCarriers; in setAllowedCarriers()
2702 memset(allowedCarriers, 0, cr.len_allowed_carriers * sizeof(RIL_Carrier)); in setAllowedCarriers()
2704 free(allowedCarriers); in setAllowedCarriers()
2710 allowedCarriers[i].mcc = carriers.allowedCarriers[i].mcc.c_str(); in setAllowedCarriers()
2711 allowedCarriers[i].mnc = carriers.allowedCarriers[i].mnc.c_str(); in setAllowedCarriers()
2712allowedCarriers[i].match_type = (RIL_CarrierMatchType) carriers.allowedCarriers[i].matchType; in setAllowedCarriers()
[all …]
/hardware/interfaces/radio/1.4/
Dtypes.hal1783 vec<Carrier> allowedCarriers;
1791 * are permitted. Eg. allowedCarriers match mcc/mnc, excludedCarriers has same mcc/mnc and
/hardware/interfaces/radio/1.0/
Dtypes.hal1897 vec<Carrier> allowedCarriers; // Allowed carriers
1899 // which match allowed_carriers. Eg. allowedCarriers
DIRadioResponse.hal2489 * On success, it must match the length of list Carriers->allowedCarriers.