Home | History | Annotate | Download | only in stack

Lines Matching refs:dialogs

117     // Table of early dialogs ( to keep identity mapping )
120 // Table of dialogs.
324 // disabled in a few places - resulting in possible breakage of forked dialogs.
413 // Standard set of methods that create dialogs.
1058 * Check the server transactions that have resulted in dialogs.
2126 * Audits SIP dialogs for leaks - Compares the dialogs in the dialogTable with a list of Call
2127 * IDs passed by the application. - Dialogs that are not known by the application are leak
2128 * suspects. - Kill the dialogs that are still around after the timer specified.
2133 String auditReport = " Leaked dialogs:\n";
2138 // This copy will remain intact as leaked dialogs are removed by the
2140 LinkedList dialogs;
2142 dialogs = new LinkedList(dialogTable.values());
2150 Iterator it = dialogs.iterator();
2191 + " leaked dialogs detected and removed.\n";
2297 * @return -- the collection of dialogs that is being managed by the stack.
2300 HashSet<Dialog> dialogs = new HashSet<Dialog>();
2301 dialogs.addAll(this.dialogTable.values());
2302 dialogs.addAll(this.earlyDialogTable.values());
2303 return dialogs;
2308 * @return -- the collection of dialogs matching the state that is being managed by the stack.
2315 Collection<SIPDialog> dialogs = dialogTable.values();
2316 for (SIPDialog dialog : dialogs) {