Lines Matching full:tech
123 android_parse_modem_tech( const char * tech )
125 const struct { const char* name; AModemTech tech; } techs[] = {
136 if (!strcmp(tech, techs[nn].name))
137 return techs[nn].tech;
1017 * Tell whether the specified tech is valid for the preferred mask.
1019 * @tech: The AModemTech we try to validate
1024 static int matchPreferredMask( int32_t pmask, AModemTech tech )
1029 if (pmask & (1 << (tech + i*8 ))) {