HomeSort by relevance Sort by last modified time
    Searched refs:inReplyTo (Results 1 - 3 of 3) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/parser/
InReplyToParser.java 33 * Parser for InReplyTo header.
46 * @param inReplyTo the header to parse
48 public InReplyToParser(String inReplyTo) {
49 super(inReplyTo);
75 InReplyTo inReplyTo = new InReplyTo();
76 inReplyTo.setHeaderName(SIPHeaderNames.IN_REPLY_TO);
84 inReplyTo.setCallId(
87 inReplyTo.setCallId(token.getTokenValue())
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SocialProvider.java 201 String inReplyTo = values.getAsString(Activities.IN_REPLY_TO);
202 if (inReplyTo != null) {
203 threadPublished = getThreadPublished(db, inReplyTo, published);
228 String inReplyTo = null;
236 inReplyTo = c.getString(0);
243 if (inReplyTo != null) {
246 return getThreadPublished(db, inReplyTo, threadPublished);
256 private void adjustReplyTimestamps(SQLiteDatabase db, String inReplyTo, long threadPublished) {
266 Activities.IN_REPLY_TO + "= ?", new String[] {inReplyTo});
279 Activities.IN_REPLY_TO + " = ?", new String[] {inReplyTo}, null, null, null)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 536 InReplyTo inReplyTo = new InReplyTo();
537 inReplyTo.setCallId(callId);
539 return inReplyTo;
    [all...]

Completed in 1645 milliseconds