Home | History | Annotate | Download | only in reference-ril

Lines Matching refs:TECH

92 // TECH returns the current technology in the format used by the modem.
94 #define TECH(mdminfo) ((mdminfo)->currentTech)
95 // TECH_BIT returns the bitmask equivalent of the current tech
98 #define TECH_SUPPORTED(mdminfo, tech) ((mdminfo)->supportedTechs & (tech))
1278 *type = techFromModemType(TECH(sMdmInfo));
2173 int tech = techFromModemType(TECH(sMdmInfo));
2174 if (tech < 0 )
2177 RIL_onRequestComplete(t, RIL_E_SUCCESS, &tech, sizeof(tech));
2201 } // Fall-through if tech is not cdma
2207 } // Fall-through if tech is not cdma
2213 } // Fall-through if tech is not cdma
2219 } // Fall-through if tech is not cdma
2225 } // Fall-through if tech is not cdma
2231 } // Fall-through if tech is not cdma
2237 } // Fall-through if tech is not cdma
2243 } // Fall-through if tech is not cdma
2246 RLOGD("Request not supported. Tech: %d",TECH(sMdmInfo));
2292 int oldtech = TECH(mdm);
2295 RLOGD("Tech change (%d => %d)", oldtech, newtech);
2296 TECH(mdm) = newtech;
2298 int tech = techFromModemType(TECH(sMdmInfo));
2299 if (tech > 0 ) {
2301 &tech, sizeof(tech));
2784 int tech;
2787 if (query_ctec(mdm, &tech, &preferred) == 0) {
2788 mdm->currentTech = tech;
2811 RLOGI("Found Multimode Modem. Supported techs mask: %8.8x. Current tech: %d",
3004 int tech, mask;
3005 switch (parse_technology_response(s, &tech, NULL))
3012 mask = 1 << tech;
3015 RLOGE("Unknown technology %d\n", tech);
3017 setRadioTechnology(sMdmInfo, tech);