Home | History | Annotate | Download | only in telephony

Lines Matching full:pdus

1235 smspdu_free_list( SmsPDU*  pdus )
1237 if (pdus) {
1239 for (nn = 0; pdus[nn] != NULL; nn++)
1240 smspdu_free( pdus[nn] );
1242 free( pdus );
1271 /* count the number of SMS PDUs we'll need */
1377 ** collects one or more SMS-SUBMIT PDUs to generate a single message to deliver
1387 SmsPDU* pdus;
1405 if (frag->pdus[nn] != NULL) {
1406 smspdu_free( frag->pdus[nn] );
1407 frag->pdus[nn] = NULL;
1410 frag->pdus = NULL;
1426 frag->pdus = (SmsPDU*)(frag + 1);
1540 if ( frag->pdus[cur] != NULL ) {
1543 smspdu_free( frag->pdus[cur] );
1546 frag->pdus[cur] = submit_pdu;
1584 partial = smspdu_get_text_message( frag->pdus[nn], utf8, utf8len );
1588 partial = smspdu_get_text_message( frag->pdus[nn], NULL, 0 );
1643 total += smspdu_get_text_message( frag->pdus[nn], utf8 + total, utf8len - total );