Lines Matching refs:dtmf_digit_map
9371 } dtmf_digit_map[] = variable
9449 #define DTMF_DIGIT_MAP_ENTRIES ARRAY_SIZE(dtmf_digit_map)
9507 && (digit_buffer[i] != dtmf_digit_map[w].character)) in dtmf_send_digits()
9512 dtmf_digit_map[w].code : DTMF_DIGIT_TONE_CODE_STAR; in dtmf_send_digits()
9831 if (dtmf_digit_map[i].listen_mask != 0) in dtmf_request()
9832 result[4 + (dtmf_digit_map[i].character >> 3)] |= (1 << (dtmf_digit_map[i].character & 0x7)); in dtmf_request()
9839 if (dtmf_digit_map[i].send_mask != 0) in dtmf_request()
9840 result[4 + (dtmf_digit_map[i].character >> 3)] |= (1 << (dtmf_digit_map[i].character & 0x7)); in dtmf_request()
9947 && ((dtmf_parms[3].info[i + 1] != dtmf_digit_map[j].character) in dtmf_request()
9948 || ((dtmf_digit_map[j].send_mask & mask) == 0))) in dtmf_request()
10018 && ((msg[i] != dtmf_digit_map[j].code) in dtmf_indication()
10019 || ((dtmf_digit_map[j].listen_mask & plci->dtmf_rec_active) == 0))) in dtmf_indication()
10026 if ((dtmf_digit_map[j].listen_mask & DTMF_TONE_LISTEN_ACTIVE_FLAG) in dtmf_indication()
10028 && (dtmf_digit_map[j].character != DTMF_SIGNAL_UNIDENTIFIED_TONE)) in dtmf_indication()
10039 plci->tone_last_indication_code = dtmf_digit_map[j].character; in dtmf_indication()
10041 msg[++n] = dtmf_digit_map[j].character; in dtmf_indication()