Lines Matching full: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))
1286 *type = techFromModemType(TECH(sMdmInfo));
1595 tech) {
1599 } else if (RADIO_TECH_3GPP2 == p_args->tech) {
1604 RLOGE("requestImsSendSMS invalid format value =%d", p_args->tech);
2264 int tech = techFromModemType(TECH(sMdmInfo));
2265 if (tech < 0 )
2268 RIL_onRequestComplete(t, RIL_E_SUCCESS, &tech, sizeof(tech));
2292 } // Fall-through if tech is not cdma
2298 } // Fall-through if tech is not cdma
2304 } // Fall-through if tech is not cdma
2310 } // Fall-through if tech is not cdma
2316 } // Fall-through if tech is not cdma
2322 } // Fall-through if tech is not cdma
2328 } // Fall-through if tech is not cdma
2334 } // Fall-through if tech is not cdma
2337 RLOGD("Request not supported. Tech: %d",TECH(sMdmInfo));
2383 int oldtech = TECH(mdm);
2386 RLOGD("Tech change (%d => %d)", oldtech, newtech);
2387 TECH(mdm) = newtech;
2389 int tech = techFromModemType(TECH(sMdmInfo));
2390 if (tech > 0 ) {
2392 &tech, sizeof(tech));
2875 int tech;
2878 if (query_ctec(mdm, &tech, &preferred) == 0) {
2879 mdm->currentTech = tech;
2902 RLOGI("Found Multimode Modem. Supported techs mask: %8.8x. Current tech: %d",
3107 int tech, mask;
3108 switch (parse_technology_response(s, &tech, NULL))
3115 mask = 1 << tech;
3118 RLOGE("Unknown technology %d\n", tech);
3120 setRadioTechnology(sMdmInfo, tech);