Home | History | Annotate | Download | only in telephony

Lines Matching defs:pdus

1236 smspdu_free_list( SmsPDU*  pdus )
1238 if (pdus) {
1240 for (nn = 0; pdus[nn] != NULL; nn++)
1241 smspdu_free( pdus[nn] );
1243 free( pdus );
1272 /* count the number of SMS PDUs we'll need */
1378 ** collects one or more SMS-SUBMIT PDUs to generate a single message to deliver
1388 SmsPDU* pdus;
1406 if (frag->pdus[nn] != NULL) {
1407 smspdu_free( frag->pdus[nn] );
1408 frag->pdus[nn] = NULL;
1411 frag->pdus = NULL;
1427 frag->pdus = (SmsPDU*)(frag + 1);
1541 if ( frag->pdus[cur] != NULL ) {
1544 smspdu_free( frag->pdus[cur] );
1547 frag->pdus[cur] = submit_pdu;
1585 partial = smspdu_get_text_message( frag->pdus[nn], utf8, utf8len );
1589 partial = smspdu_get_text_message( frag->pdus[nn], NULL, 0 );
1644 total += smspdu_get_text_message( frag->pdus[nn], utf8 + total, utf8len - total );