Searched refs:Dialog (Results 1 - 25 of 33) sorted by relevance

12

/external/nist-sip/java/javax/sip/
H A DDialogTerminatedEvent.java6 private Dialog mDialog;
8 public DialogTerminatedEvent(Object source, Dialog dialog) {
13 public Dialog getDialog() {
H A DRequestEvent.java7 private Dialog mDialog;
12 Dialog dialog, Request request) {
19 public Dialog getDialog() {
H A DResponseEvent.java7 private Dialog mDialog;
12 Dialog dialog, Response response) {
19 public Dialog getDialog() {
H A DTransaction.java11 Dialog getDialog();
H A DSipProvider.java41 Dialog getNewDialog(Transaction transaction) throws SipException;
H A DDialog.java11 public interface Dialog extends Serializable { interface in inherits:Serializable
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogExt.java3 import javax.sip.Dialog;
14 public interface DialogExt extends Dialog {
17 * Returns the SipProvider that was used for the first transaction in this Dialog
26 * Sets a flag that indicates that this Dialog is part of a BackToBackUserAgent. If this flag
30 * This flag can be set on a stack-wide basis, on a per-provider basis or on a per Dialog basis.
31 * This flag must only be set at the time of Dialog creation. If the flag is set after the first
32 * request or response is seen by the Dialog, the behavior of this flag is undefined.
H A DDialogTimeoutEvent.java20 import javax.sip.Dialog;
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
50 * Gets the Dialog associated with the event. This
57 public Dialog getDialog() {
62 * The reason for the Dialog Timeout Event being delivered to the application.
71 private Dialog m_dialog = null;
H A DSipListenerExt.java18 import javax.sip.Dialog;
35 * Processes an expiration Timeout of an underlying {@link Dialog} handled by this
37 * Dialog's state machine. Such a condition can occur when the application fails to send an
H A DResponseEventExt.java4 import javax.sip.Dialog;
16 Dialog dialog, Response response) {
H A DSipStackExt.java15 import javax.sip.Dialog;
38 * Get the collection of dialogs currently in the Dialog table. This is useful for debugging
42 public Collection<Dialog> getDialogs();
47 * @return Dialog object matching the Replaces header, provided it is in an appropriate state
52 public Dialog getReplacesDialog(ReplacesHeader replacesHeader);
97 * @return Dialog object matching the Join header, provided it is in an appropriate state to
102 public Dialog getJoinDialog(JoinHeader joinHeader);
H A DSipProviderImpl.java58 import javax.sip.Dialog;
176 Dialog dialog = ((RequestEvent) sipEvent).getDialog();
177 if ( sipStack.isLoggingEnabled()) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
179 Dialog dialog = ((ResponseEvent) sipEvent).getDialog();
180 if (sipStack.isLoggingEnabled() ) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
673 Dialog dialog = sipStack.getDialog(((SIPRequest) request)
678 "Dialog exists -- you may want to use Dialog.sendAck() "
822 public Dialog getNewDialog(Transaction transaction) throws SipException {
833 throw new SipException("Dialog canno
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DPixelConverter.java13 import org.eclipse.jface.dialogs.Dialog;
49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
56 return Dialog.convertHorizontalDLUsToPixels(fFontMetrics, dlus);
63 return Dialog.convertVerticalDLUsToPixels(fFontMetrics, dlus);
70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DResizableDialog.java13 import org.eclipse.jface.dialogs.Dialog;
24 * {@link Dialog} that remembers location/size between usage sessions.
29 public abstract class ResizableDialog extends Dialog {
31 * Key for accessing {@link Dialog} from its {@link Shell}.
/external/libvpx/examples/includes/geshi/geshi/
H A Dcaddcl.php10 * CAD DCL (Dialog Control Language) language file for GeSHi.
/external/replicaisland/src/com/replica/replicaisland/
H A DExtrasMenuActivity.java8 import android.app.Dialog;
153 protected Dialog onCreateDialog(int id) {
154 Dialog dialog = null;
H A DMainMenuActivity.java25 import android.app.Dialog;
333 protected Dialog onCreateDialog(int id) {
334 Dialog dialog;
H A DAndouKun.java24 import android.app.Dialog;
741 protected Dialog onCreateDialog(int id) {
742 Dialog dialog = null;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
H A DStringPropertyDialog.java13 import org.eclipse.jface.dialogs.Dialog;
30 * {@link Dialog} for editing value in {@link StringPropertyEditor}.
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java66 import javax.sip.Dialog;
323 // If this is set to true, then To tag checking on the Dialog layer is
454 // Dialog dable.
496 // Dialog dable.
626 * @return the newly created Dialog.
655 * Create a Dialog given a client tx and response.
678 * Create a Dialog given a sip provider and response.
716 // We now deliver DTE even when the dialog is not originally present in the Dialog
1060 for (Dialog dialog: this.dialogTable.values() ) {
2299 public Collection<Dialog> getDialog
[all...]
H A DSIPClientTransaction.java54 import javax.sip.Dialog;
947 // Dialog
950 "Dialog is present and AutomaticDialogSupport is enabled for "
951 + " the provider -- Send the Request using the Dialog.sendRequest(transaction)");
1327 * Response with a tag mismatch should be dropped if a Dialog has been created for the
1376 // JvB: Check all conditions required for creating a new Dialog
1385 * Dialog cannot be found for the response. This must be a forked response. no
1412 * should then get set in Dialog#sendRequest line 1662
1437 // Need to create a new Dialog, this becomes default
1459 public Dialog getDialo
[all...]
H A DSIPTransaction.java52 import javax.sip.Dialog;
843 * @return the Dialog Object of this Transaction object.
844 * @see Dialog
846 public abstract Dialog getDialog();
H A DSIPServerTransaction.java48 import javax.sip.Dialog;
1322 // Dialog checks. These make sure that the response
1344 throw new SipException("Dialog mismatch!");
1395 // Send message after possibly inserting the Dialog
1486 public Dialog getDialog() {
1612 throw new SipException("Dialog associated with tx");
/external/sonivox/jet_tools/JetCreator/
H A DJetDialogs.py6 Dialog boxes used in JetCreator
138 class JetOpen(wx.Dialog):
141 wx.Dialog.__init__(self, None, -1, JetDefs.DLG_JETOPEN)
194 class JetPreferences(wx.Dialog):
197 wx.Dialog.__init__(self, None, -1, JetDefs.DLG_PREFERENCES)
213 class JetAbout(wx.Dialog):
216 wx.Dialog.__init__(self, None, -1, JetDefs.DLG_ABOUT)
235 class JetPropertiesDialog(wx.Dialog):
238 wx.Dialog.__init__(self, None, -1, JetDefs.DLG_PROPERTIES)
254 class JetErrors(wx.Dialog)
[all...]
H A DJetAudition.py57 class Audition(wx.Dialog):
60 wx.Dialog.__init__(self, None, -1, title=JetDefs.DLG_AUDITION)

Completed in 235 milliseconds

12