• Home
  • Raw
  • Download

Lines Matching refs:pdu

701 smspdu_free( SmsPDU  pdu )  in smspdu_free()  argument
703 if (pdu) { in smspdu_free()
704 free( pdu->base ); in smspdu_free()
705 pdu->base = NULL; in smspdu_free()
706 pdu->end = NULL; in smspdu_free()
707 pdu->tpdu = NULL; in smspdu_free()
712 smspdu_get_type( SmsPDU pdu ) in smspdu_get_type() argument
714 cbytes_t data = pdu->tpdu; in smspdu_get_type()
715 cbytes_t end = pdu->end; in smspdu_get_type()
727 smspdu_get_sender_address( SmsPDU pdu, SmsAddress address ) in smspdu_get_sender_address() argument
729 cbytes_t data = pdu->tpdu; in smspdu_get_sender_address()
730 cbytes_t end = pdu->end; in smspdu_get_sender_address()
742 smspdu_get_sc_timestamp( SmsPDU pdu, SmsTimeStamp ts ) in smspdu_get_sc_timestamp() argument
744 cbytes_t data = pdu->tpdu; in smspdu_get_sc_timestamp()
745 cbytes_t end = pdu->end; in smspdu_get_sc_timestamp()
766 smspdu_get_receiver_address( SmsPDU pdu, SmsAddress address ) in smspdu_get_receiver_address() argument
768 cbytes_t data = pdu->tpdu; in smspdu_get_receiver_address()
769 cbytes_t end = pdu->end; in smspdu_get_receiver_address()
906 smspdu_get_text_message( SmsPDU pdu, unsigned char* utf8, int utf8len ) in smspdu_get_text_message() argument
908 cbytes_t data = pdu->tpdu; in smspdu_get_text_message()
909 cbytes_t end = pdu->end; in smspdu_get_text_message()
985 smspdu_get_user_data_ref( SmsPDU pdu ) in smspdu_get_user_data_ref() argument
987 cbytes_t data = pdu->tpdu; in smspdu_get_user_data_ref()
988 cbytes_t end = pdu->end; in smspdu_get_user_data_ref()
1047 smspdu_get_ref( SmsPDU pdu ) in smspdu_get_ref() argument
1049 cbytes_t user_ref = smspdu_get_user_data_ref( pdu ); in smspdu_get_ref()
1057 cbytes_t data = pdu->tpdu; in smspdu_get_ref()
1058 cbytes_t end = pdu->end; in smspdu_get_ref()
1071 smspdu_get_max_index( SmsPDU pdu ) in smspdu_get_max_index() argument
1073 cbytes_t user_ref = smspdu_get_user_data_ref( pdu ); in smspdu_get_max_index()
1083 smspdu_get_cur_index( SmsPDU pdu ) in smspdu_get_cur_index() argument
1085 cbytes_t user_ref = smspdu_get_user_data_ref( pdu ); in smspdu_get_cur_index()
1361 smspdu_to_hex( SmsPDU pdu, char* hex, int hexlen ) in smspdu_to_hex() argument
1363 int result = (pdu->end - pdu->base)*2; in smspdu_to_hex()
1370 gsm_hex_from_byte( &hex[nn*2], pdu->base[nn] ); in smspdu_to_hex()