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

Lines Matching defs:tech

99 // TECH returns the current technology in the format used by the modem.
101 #define TECH(mdminfo) ((mdminfo)->currentTech)
102 // TECH_BIT returns the bitmask equivalent of the current tech
105 #define TECH_SUPPORTED(mdminfo, tech) ((mdminfo)->supportedTechs & (tech))
1313 *type = techFromModemType(TECH(sMdmInfo));
1622 if (RADIO_TECH_3GPP == p_args->tech) {
1626 } else if (RADIO_TECH_3GPP2 == p_args->tech) {
1631 RLOGE("requestImsSendSMS invalid format value =%d", p_args->tech);
2307 int tech = techFromModemType(TECH(sMdmInfo));
2308 if (tech < 0 )
2311 RIL_onRequestComplete(t, RIL_E_SUCCESS, &tech, sizeof(tech));
2343 } // Fall-through if tech is not cdma
2349 } // Fall-through if tech is not cdma
2355 } // Fall-through if tech is not cdma
2361 } // Fall-through if tech is not cdma
2367 } // Fall-through if tech is not cdma
2373 } // Fall-through if tech is not cdma
2379 } // Fall-through if tech is not cdma
2385 } // Fall-through if tech is not cdma
2388 RLOGD("Request not supported. Tech: %d",TECH(sMdmInfo));
2434 int oldtech = TECH(mdm);
2437 RLOGD("Tech change (%d => %d)", oldtech, newtech);
2438 TECH(mdm) = newtech;
2440 int tech = techFromModemType(TECH(sMdmInfo));
2441 if (tech > 0 ) {
2443 &tech, sizeof(tech));
2929 int tech;
2932 if (query_ctec(mdm, &tech, &preferred) == 0) {
2933 mdm->currentTech = tech;
2956 RLOGI("Found Multimode Modem. Supported techs mask: %8.8x. Current tech: %d",
3161 int tech, mask;
3162 switch (parse_technology_response(s, &tech, NULL))
3169 mask = 1 << tech;
3172 RLOGE("Unknown technology %d\n", tech);
3174 setRadioTechnology(sMdmInfo, tech);