/external/webrtc/webrtc/libjingle/xmpp/ |
D | rostermodule.h | 37 //! These are the valid subscription states in a roster contact. This 95 //! Is the contact available? 140 //! A contact as given by the server 145 //! Create a new roster contact 149 //! The jid for the contact. 153 //! Sets the jid for the roster contact update 156 //! The name (nickname) stored for this contact 162 //! The Presence subscription state stored on the server for this contact 167 //! The number of Groups applied to this contact 170 //! Gets a Group applied to the contact based on index. [all …]
|
D | rostermoduleimpl.h | 35 //! Is the contact available? 92 //! A contact as given by the server 97 //! The jid for the contact. 101 //! Sets the jid for the roster contact update 104 //! The name (nickname) stored for this contact 110 //! The Presence subscription state stored on the server for this contact 115 //! The number of Groups applied to this contact 118 //! Gets a Group applied to the contact based on index. 121 //! Adds a group to this contact. 125 //! Removes a group from the contact. [all …]
|
D | rostermodule_unittest.cc | 129 WriteContact(std::ostream& os, const XmppRosterContact* contact) { in WriteContact() argument 130 if (contact == NULL) { in WriteContact() 135 os<<"[Contact jid:"; in WriteContact() 136 WriteString(os, contact->jid().Str()); in WriteContact() 138 WriteString(os, contact->name()); in WriteContact() 140 WriteSubscriptionState(os, contact->subscription_state()); in WriteContact() 142 for(size_t i=0; i < contact->GetGroupCount(); ++i) { in WriteContact() 144 WriteString(os, contact->GetGroup(i)); in WriteContact() 146 os<<"]]"<<contact->raw_xml()->Str(); in WriteContact() 187 //! A contact has changed [all …]
|
D | rostermoduleimpl.cc | 714 bool operator() (XmppRosterContactImpl *& contact) { in operator ()() argument 715 return contact->jid() == jid_; in operator ()() 737 const XmppRosterContact* contact) { in RequestRosterChange() argument 738 if (!contact) in RequestRosterChange() 741 Jid jid = contact->jid(); in RequestRosterChange() 749 const XmlElement* contact_xml = contact->raw_xml(); in RequestRosterChange() 900 XmppRosterContact* contact = *pos; in DeleteContacts() local 902 delete contact; in DeleteContacts() 938 bool operator() (XmppPresenceImpl *& contact) { in operator ()() argument 939 return contact->jid() == jid_; in operator ()() [all …]
|
/external/compiler-rt/ |
D | README.android | 22 * Recent downstreaming on 2013/2/11: Synced to r197381 (Contact srhines for merge questions.) 23 * Recent downstreaming on 2013/8/8: Synced to r187889 (Contact srhines for merge questions.) 24 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.) 25 * Recent downstreaming on 2013/5/3: Synced to r180792 (Contact srhines for merge questions.) 26 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.) 27 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.) 28 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.) 29 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.) 30 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.) 31 …27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge… [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | ContactParser.java | 28 import gov.nist.javax.sip.header.Contact; 38 * A parser for The SIP contact header. 45 public ContactParser(String contact) { in ContactParser() argument 46 super(contact); in ContactParser() 56 headerName(TokenTypes.CONTACT); in parse() 59 Contact contact = new Contact(); in parse() local 64 contact.setWildCardFlag(true); in parse() 66 super.parse(contact); in parse() 69 super.parse(contact); in parse() 71 retval.add(contact); in parse()
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | EABContactManager.java | 56 * An identifier for a particular EAB contact number, unique across the system. 57 * Clients use this ID to make subsequent calls related to the contact. 105 * This class contains all the information necessary to request a new contact. 140 * @param id the contact id. 169 * Set Volte call service contact address. 170 * @param address contact from NOTIFY 214 * Set Video call service contact address. 215 * @param address contact from NOTIFY. 663 * Update a contact presence status. 665 * @param request the parameters specifying this contact presence [all …]
|
D | EABService.java | 73 // initialisation as anyways it will check for Contact db changes as part of boot-up. 99 * When "clear data" is done for contact storage in system settings, EAB 112 // Contact db. 135 // Set Init done to true as only the contact sync timestamps are cleared and 251 logger.debug("Registering for Contact and Profile Change Listener."); in registerContentObservers() 264 logger.debug("Un-registering for Contact and Profile Change Listener."); in unregisterContentObservers() 385 // contact last updated timestamp. in ensureInitDone() 388 // contact last updated timestamp. in ensureInitDone() 524 // Check if the contact is already available in EAB Provider. in verifyInsertOrUpdateAction() 542 // match the contact number. in verifyInsertOrUpdateAction() [all …]
|
D | Contacts.java | 43 * Intent that a new contact is inserted in EAB Provider. 81 * Key defining the contact number. 90 * Key defining the contact number. 99 * Key defining the contact name. 125 * Key defining the VoLTE call service contact address. 170 * Key defining the Video call service contact address.
|
D | EABDbUtil.java | 60 // Get the last stored contact changed timestamp and sync only delta contacts. in validateAndSyncFromContactsDb() 62 logger.debug("contact last updated time before init :" + contactLastChange); in validateAndSyncFromContactsDb() 93 // Update the latest contact last modified timestamp. in validateAndSyncFromContactsDb() 156 " new contact numbers to EAB db."); in validateAndSyncFromContactsDb() 158 logger.debug("contact last updated time after init :" + contactLastChange); in validateAndSyncFromContactsDb() 162 logger.debug("Exit validateAndSyncFromContactsDb contact numbers synced : " + in validateAndSyncFromContactsDb() 254 logger.debug("Deleting Profile contact."); in deleteContactFromEabDb() 260 logger.debug("Not a Profile contact. Do nothing."); in deleteContactFromEabDb()
|
/external/ims/rcs/rcsservice/src/com/android/service/ims/ |
D | TaskManager.java | 130 public int addAvailabilityTask(String contact, IRcsPresenceListener listener){ in addAvailabilityTask() argument 134 contacts[0] = contact; in addAvailabilityTask() 143 public int addPublishTask(String contact, IRcsPresenceListener listener){ in addPublishTask() argument 147 contacts[0] = contact; in addPublishTask() 193 public void onTerminated(String contact){ // for single number capability polling in onTerminated() argument 194 if(contact == null){ in onTerminated() 214 PhoneNumberUtils.compare(contact, capabilityTask.mContacts[0])){ in onTerminated() 364 public PresenceAvailabilityTask getAvailabilityTaskByContact(String contact){ in getAvailabilityTaskByContact() argument 380 if(PhoneNumberUtils.compare(contact, availabilityTask.mContacts[0])){ in getAvailabilityTaskByContact()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Contact.java | 45 * Contact Item. 55 public final class Contact class 77 public Contact() { in Contact() method in Contact 126 /** get the Contact list. 178 /** set the Contact List 215 "JAIN-SIP Exception, Contact, setQValue(), " in setQValue() 221 Contact retval = (Contact) super.clone(); in clone()
|
D | ContactList.java | 36 * List of contact headers.ContactLists are also maintained in a hashtable 42 public class ContactList extends SIPHeaderList<Contact> { 55 super(Contact.class, ContactHeader.NAME); in ContactList()
|
/external/llvm/docs/ |
D | ReportingGuide.rst | 25 locate one for you. We will also post detailed contact information for specific 46 * Your contact info (so we can get in touch with you if we need to follow up). 75 The working group will try to contact other parties involved or witnessing the 97 Once we've determined our response, we will separately contact the original 111 appealed. To appeal a decision of the working group, contact the LLVM 129 The members serving on the advisory committee are listed here with contact 135 …FIXME: When we form the initial advisory committee, the members names and private contact info nee…
|
/external/ims/rcs/rcsmanager/src/java/com/android/ims/ |
D | RcsPresenceInfo.java | 67 * If the contact got the 404 for single contact fetch. 79 * Volte disabled for 404 response for single contact fetch 151 * The service contact. For example, the phone requests presence information for number 169 * Return the contact number. 172 * @return the contact number which has been passed in. 203 * Return the service contact of the specific serviceType. 207 * @return the service contact which is described in ServiceInfoKey.
|
/external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/ |
D | ContactNumberUtils.java | 69 * Format contact number to the common format 71 * @param phoneNumber read from contact db. 72 * @return formatted contact number. 127 * Contact nubmer error code. 137 * Check if it is a valid contact number for presence 139 * @param phoneNumber read from contact db. 140 * @return contact number error code. 273 * Contact number length.
|
/external/ImageMagick/ImageMagick/script/ |
D | contact.html | 9 <title>ImageMagick: Contact the Development Team</title> 15 …<meta name="keywords" content="contact, the, development, team, ImageMagick, PerlMagick, image pro… 58 <h2 class="magick-header">Contact the Wizards</h2> 62 …<form method="post" name="post" id="post" action="contact.php" enctype="application/x-www-form-url… 119 <p><a href="contact.php#">Back to top</a> • 121 <a href="contact.php">Contact Us</a></p>
|
/external/nist-sip/java/gov/nist/javax/sip/ |
D | ListeningPointImpl.java | 42 import gov.nist.javax.sip.header.Contact; 233 Contact contact = new Contact(); in createContactHeader() local 236 contact.setAddress(address); in createContactHeader() 238 return contact; in createContactHeader()
|
/external/ImageMagick/www/ |
D | contact.html | 8 <title>ImageMagick: Contact the Development Team</title> 17 …<meta name="keywords" content="contact, the, development, team, ImageMagick, PerlMagick, image pro… 62 <h2 class="magick-header">Contact the Wizards</h2> 66 …<form method="post" name="post" id="post" action="http://www.imagemagick.org/script/contact.php" e… 123 <p><a href="http://www.imagemagick.org/script/contact.php#">Back to top</a> • 125 <a href="http://www.imagemagick.org/script/contact.php">Contact Us</a></p>
|
/external/ltp/pan/cgi/ |
D | reconsile.cgi | 79 ($tag, $tcid, $tc, $status, $contact) = split(/\s+/, $line); 90 $rec->{CONTACT} = $contact; 133 print "<th>Contact</tr>\n"; 233 print "<td>$LCR->{CONTACT}</tr>\n"; 247 $copy->{CONTACT} = $rec->{CONTACT};
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | SIPRequest.java | 55 * Bystrom. Szabo Barna noticed a contact in a cancel request - this is a pointless header for 95 * A target refresh request and its response MUST have a Contact 212 * the contact headers. (2) Request must have cseq, to and from and via headers. (3) Method in 266 * RFC 3261 8.1.1.8 The Contact header field MUST be present and contain exactly one SIP in checkHeaders() 269 * requests, the scope of the Contact is global. That is, the Contact header field value in checkHeaders() 273 * If the Request-URI or top Route header field value contains a SIPS URI, the Contact in checkHeaders() 281 // refresh its ok not to have a contact header. Otherwise in checkHeaders() 282 // contact header is mandatory. in checkHeaders() 292 throw new ParseException("Scheme for contact should be sips:" + sipUri, 0); in checkHeaders() 299 * Contact header is mandatory for a SIP INVITE request. in checkHeaders() [all …]
|
/external/libvncserver/libvncserver/tightvnc-filetransfer/ |
D | handlefiletransferrequest.h | 15 * along with this program; if not, contact Novell, Inc. 17 * To contact Novell about this file by physical or electronic mail, 18 * you may find current contact information at www.novell.com
|
D | filetransfermsg.h | 15 * along with this program; if not, contact Novell, Inc. 17 * To contact Novell about this file by physical or electronic mail, 18 * you may find current contact information at www.novell.com
|
D | filelistinfo.h | 15 * along with this program; if not, contact Novell, Inc. 17 * To contact Novell about this file by physical or electronic mail, 18 * you may find current contact information at www.novell.com
|
/external/ltp/pan/ |
D | ltp-scanner.c | 23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, 79 * tag tcid testcase status contact 98 * the "contact" field does not expand multiple comma-separated contacts 101 * tag, tcid, testcase, status, contact,
|