Home | History | Annotate | Download | only in parser

Lines Matching defs:messages

53  * Parse SIP message and parts of SIP messages such as URI's etc from memory and
56 * want to generate a parsed structure from it. For SIP messages, the payload
120 * a byte buffer containing the messages to be parsed. This can
121 * consist of multiple SIP Messages concatenated together.
227 * Parse a buffer containing one or more SIP Messages and return an array of
231 * a String containing the messages to be parsed. This can
232 * consist of multiple SIP Messages concatenated together.
625 String messages[] = {
672 String[] messages;
675 this.messages = messagesToParse;
679 for (int i = 0; i < messages.length; i++) {
683 .parseSIPMessage(messages[i]);
699 new Thread(new ParserThread(messages)).start();