Home
last modified time | relevance | path

Searched refs:teln (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/drivers/isdn/hisax/
Dl3_1tr6.c76 u_char *teln; in l3_1tr6_setup_req() local
82 teln = pc->para.setup.phone; in l3_1tr6_setup_req()
84 if (!isdigit(*teln)) { in l3_1tr6_setup_req()
85 switch (0x5f & *teln) { in l3_1tr6_setup_req()
94 teln++; in l3_1tr6_setup_req()
95 if (*teln == '1') in l3_1tr6_setup_req()
105 teln++; in l3_1tr6_setup_req()
137 *p++ = strlen(teln) + 1; in l3_1tr6_setup_req()
140 while (*teln) in l3_1tr6_setup_req()
141 *p++ = *teln++ & 0x7f; in l3_1tr6_setup_req()
Dl3dss1.c1230 u_char *teln; in l3dss1_setup_req() local
1238 teln = pc->para.setup.phone; in l3dss1_setup_req()
1240 send_keypad = (strchr(teln, '*') || strchr(teln, '#')) ? 1 : 0; in l3dss1_setup_req()
1271 *p++ = strlen(teln); in l3dss1_setup_req()
1272 while (*teln) in l3dss1_setup_req()
1273 *p++ = (*teln++) & 0x7F; in l3dss1_setup_req()
1279 if ((*teln) && (!send_keypad)) { in l3dss1_setup_req()
1281 if (!isdigit(*teln)) { in l3dss1_setup_req()
1282 switch (0x5f & *teln) { in l3dss1_setup_req()
1288 teln++; in l3dss1_setup_req()
[all …]
Dl3ni1.c1177 u_char *teln; in l3ni1_setup_req() local
1184 teln = pc->para.setup.phone; in l3ni1_setup_req()
1209 sp = teln; in l3ni1_setup_req()
1219 *p++ = strlen(teln); in l3ni1_setup_req()
1220 while (*teln) in l3ni1_setup_req()
1221 *p++ = (*teln++) & 0x7F; in l3ni1_setup_req()
/linux-4.19.296/drivers/isdn/capi/
Dcapidrv.c1698 static int decodeFVteln(char *teln, unsigned long *bmaskp, int *activep) in decodeFVteln() argument
1705 if (strncmp(teln, "FV:", 3) != 0) in decodeFVteln()
1707 s = teln + 3; in decodeFVteln()
1762 static int FVteln2capi20(char *teln, u8 AdditionalInfo[1 + 2 + 2 + 31]) in FVteln2capi20() argument
1768 rc = decodeFVteln(teln, &bmask, &active); in FVteln2capi20()