OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:smspdu
(Results
1 - 11
of
11
) sorted by null
/external/qemu/telephony/
sms.h
62
typedef struct SmsPDURec*
SmsPDU
;
64
extern
SmsPDU
* smspdu_create_deliver_utf8( const unsigned char* utf8,
69
extern void smspdu_free_list(
SmsPDU
* pdus );
71
extern
SmsPDU
smspdu_create_from_hex( const char* hex, int hexlen );
73
extern int smspdu_to_hex(
SmsPDU
pdu, char* hex, int hexsize );
76
extern void smspdu_free(
SmsPDU
pdu );
85
extern SmsPduType smspdu_get_type(
SmsPDU
pdu );
88
extern int smspdu_get_sender_address(
SmsPDU
pdu, SmsAddress address );
91
extern int smspdu_get_sc_timestamp(
SmsPDU
pdu, SmsTimeStamp timestamp );
94
extern int smspdu_get_receiver_address(
SmsPDU
pdu, SmsAddress address )
[
all
...]
sms.c
701
smspdu_free(
SmsPDU
pdu )
712
smspdu_get_type(
SmsPDU
pdu )
727
smspdu_get_sender_address(
SmsPDU
pdu, SmsAddress address )
742
smspdu_get_sc_timestamp(
SmsPDU
pdu, SmsTimeStamp ts )
766
smspdu_get_receiver_address(
SmsPDU
pdu, SmsAddress address )
906
smspdu_get_text_message(
SmsPDU
pdu, unsigned char* utf8, int utf8len )
985
smspdu_get_user_data_ref(
SmsPDU
pdu )
1047
smspdu_get_ref(
SmsPDU
pdu )
1071
smspdu_get_max_index(
SmsPDU
pdu )
1083
smspdu_get_cur_index(
SmsPDU
pdu
[
all
...]
remote_call.h
48
extern int remote_call_sms( const char* number, int from_port,
SmsPDU
pdu );
android_modem.h
33
extern void amodem_receive_sms( AModem modem,
SmsPDU
pdu );
remote_call.c
224
SmsPDU
pdu )
418
SmsPDU
pdu )
android_modem.c
318
amodem_receive_sms( AModem modem,
SmsPDU
sms )
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageSms.java
22
import com.android.bluetooth.map.BluetoothMapSmsPdu.
SmsPdu
;
27
private ArrayList<
SmsPdu
> smsBodyPdus = null;
30
public void setSmsBodyPdus(ArrayList<
SmsPdu
> smsBodyPdus) {
82
for (
SmsPdu
pdu : smsBodyPdus) {
BluetoothMapSmsPdu.java
66
public static class
SmsPdu
{
79
SmsPdu
(byte[] data, int type){
95
SmsPdu
(byte[]data, int encoding, int type, int languageTable){
466
public static ArrayList<
SmsPdu
> getSubmitPdus(String messageText, String address){
477
SmsPdu
newPdu;
485
ArrayList<
SmsPdu
> pdus = new ArrayList<
SmsPdu
>(msgCount);
500
newPdu = new
SmsPdu
(data, encoding, phoneType, languageTable);
549
newPdu = new
SmsPdu
(data, encoding, phoneType, languageTable);
565
public static ArrayList<
SmsPdu
> getDeliverPdus(String messageText, String address, long date)
[
all
...]
/cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java
249
SmsMessage.SubmitPdu
smsPdu
=
251
assertNotNull(
smsPdu
);
253
smsPdu
= SmsMessage.getSubmitPdu(scAddress, destinationAddress, (short)80,
255
assertNotNull(
smsPdu
);
/hardware/ril/reference-ril/
atchannel.c
722
const char *responsePrefix, const char *
smspdu
,
743
s_smsPDU =
smspdu
;
797
const char *responsePrefix, const char *
smspdu
,
810
responsePrefix,
smspdu
,
/external/qemu/android/
console.c
[
all
...]
Completed in 87 milliseconds