Home
last modified time | relevance | path

Searched refs:PHONE_PREFIX (Results 1 – 3 of 3) sorted by relevance

/external/qemu/telephony/
Dremote_call.c88 if (len == 11 && !memcmp(number, PHONE_PREFIX, 7)) in remote_number_string_to_port()
179 p = bufprint(p, end, "gsm call " PHONE_PREFIX "%d\n", from_num ); in remote_call_alloc()
183 p = bufprint(p, end, "gsm busy " PHONE_PREFIX "%d\n", from_num); in remote_call_alloc()
187 p = bufprint(p, end, "gsm hold " PHONE_PREFIX "%d\n", from_num); in remote_call_alloc()
191 p = bufprint(p, end, "gsm accept " PHONE_PREFIX "%d\n", from_num); in remote_call_alloc()
195 p = bufprint(p, end, "gsm cancel " PHONE_PREFIX "%d\n", from_num ); in remote_call_alloc()
Dandroid_modem.c1683 if (numlen == 10 && !strncmp(temp, PHONE_PREFIX+1, 6)) { in handleSendSMSText()
1684 memcpy( number, PHONE_PREFIX, 1 ); in handleSendSMSText()
1687 } else if (numlen == 7 && !strncmp(temp, PHONE_PREFIX+4, 3)) { in handleSendSMSText()
1688 memcpy( number, PHONE_PREFIX, 4 ); in handleSendSMSText()
1692 memcpy( number, PHONE_PREFIX, 7 ); in handleSendSMSText()
1725 snprintf( temp, sizeof(temp), PHONE_PREFIX "%d", modem->base_port ); in handleSendSMSText()
2144 if (len == 10 && !strncmp(cmd, PHONE_PREFIX+1, 6)) { in handleDial()
2145 memcpy( call->number, PHONE_PREFIX, 1 ); in handleDial()
2148 } else if (len == 7 && !strncmp(cmd, PHONE_PREFIX+4, 3)) { in handleDial()
2149 memcpy( call->number, PHONE_PREFIX, 4 ); in handleDial()
[all …]
Dgsm.h196 #define PHONE_PREFIX "1555521" macro