Home | History | Annotate | Download | only in telephony

Lines Matching defs: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;
1021 * Tell whether the specified tech is valid for the preferred mask.
1023 * @tech: The AModemTech we try to validate
1028 static int matchPreferredMask( int32_t pmask, AModemTech tech )
1033 if (pmask & (1 << (tech + i*8 ))) {