HomeSort by relevance Sort by last modified time
    Searched refs:participant (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ParticipantListItemData.java 41 public ParticipantListItemData(final ParticipantData participant) {
42 mAvatarUri = AvatarUriUtil.createAvatarUri(participant);
43 mContactId = participant.getContactId();
44 mLookupKey = participant.getLookupKey();
45 mNormalizedDestination = participant.getNormalizedDestination();
46 if (TextUtils.isEmpty(participant.getFullName())) {
47 mDisplayName = participant.getSendDestination();
50 mDisplayName = participant.getFullName();
51 mDetails = (participant.isUnknownSender()) ? null : participant.getSendDestination()
    [all...]
ConversationParticipantsData.java 32 * Includes both the participant records for each participant referenced in conversation
37 // A map from a participant id to a participant
68 final ParticipantData participant = mConversationParticipantsMap.valueAt(i); local
69 if (!participant.isSelf()) {
70 retList.add(participant);
77 * For a 1:1 conversation return the other (not self) participant
82 final ParticipantData participant = mConversationParticipantsMap.valueAt(i); local
83 if (!participant.isSelf())
    [all...]
ConversationData.java 365 LogUtil.w(TAG, "Creating participant loader after unbinding mConversationId = " +
380 LogUtil.w(TAG, "Participant loader finished after unbinding mConversationId = " +
393 LogUtil.w(TAG, "Participant loader reset after unbinding mConversationId = " +
560 * Gets the default self participant in the participant table (NOT the conversation's self).
561 * This is available as soon as self participant data is loaded.
580 * For a 1:1 conversation return the other (not self) participant (else null)
619 for (final ParticipantData participant : mParticipantData) {
620 if (!participant.isSelf()) {
621 if (participant.isEmail())
700 final ParticipantData participant = this.getOtherParticipant(); local
    [all...]
ConversationListItemData.java 179 // Participant count excludes self
501 for (final ParticipantData participant : participants) {
503 participantNames.add(participant.getDisplayName(false));
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay.c 77 int (*body_tx)(struct ieee802_1x_mka_participant *participant,
79 int (*body_rx)(struct ieee802_1x_mka_participant *participant,
81 int (*body_length)(struct ieee802_1x_mka_participant *participant);
82 Boolean (*body_present)(struct ieee802_1x_mka_participant *participant);
254 struct ieee802_1x_mka_participant *participant; local
256 dl_list_for_each(participant, &kay->participant_list,
258 if (os_memcmp(participant->ckn.name, ckn,
259 participant->ckn.len) == 0)
260 return participant;
263 wpa_printf(MSG_DEBUG, "KaY: participant is not found")
275 struct ieee802_1x_mka_participant *participant; local
708 struct ieee802_1x_mka_participant *participant; local
2352 struct ieee802_1x_mka_participant *participant; local
2883 struct ieee802_1x_mka_participant *participant; local
2977 struct ieee802_1x_mka_participant *participant; local
3225 struct ieee802_1x_mka_participant *participant; local
3260 struct ieee802_1x_mka_participant *participant; local
3407 struct ieee802_1x_mka_participant *participant; local
3474 struct ieee802_1x_mka_participant *participant; local
3493 struct ieee802_1x_mka_participant *participant; local
3515 struct ieee802_1x_mka_participant *participant; local
    [all...]
ieee802_1x_kay_i.h 179 /* used for active and potential participant */
186 Boolean participant; member in struct:ieee802_1x_mka_participant
191 /* used for active participant */
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 27 * Represents a participant in a conference call.
32 * The user entity URI For the conference participant.
37 * The endpoint URI For the conference participant.
42 * The connection which owns this participant.
49 * @param participant The conference participant to create the instance for.
53 ConferenceParticipant participant) {
56 setAddress(participant.getHandle(), PhoneConstants.PRESENTATION_ALLOWED);
57 setCallerDisplayName(participant.getDisplayName(), PhoneConstants.PRESENTATION_ALLOWED);
59 mUserEntity = participant.getHandle()
    [all...]
ImsConference.java 52 * in Telecom/InCall as a call. The conference participant information is received via the host
53 * connection via a conference event package. Conference participant connections do not represent
55 * participant, keyed by a unique endpoint {@link android.net.Uri}.
58 * connection and is responsible for managing the conference participant connections which represent
65 * are most concerned with handling destruction of a conference participant.
69 * Participant has been destroyed. Remove it from the conference.
71 * @param connection The participant which was destroyed.
75 ConferenceParticipantConnection participant =
77 removeConferenceParticipant(participant);
128 * destroyed, cleans up the conference participant connection
550 ConferenceParticipantConnection participant = entry.getValue(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
TestConferenceEventPackageParser.java 39 * <participant>
44 * </participant>
64 private static final String PARTICIPANT_TAG = "participant";
99 Log.v(LOG_TAG, "Found participant.");
100 Bundle participant = parseParticipant(parser); local
101 conferenceState.mParticipants.put(participant.getString(
102 ImsConferenceState.ENDPOINT), participant); local
121 * Parses a participant record from a conference event package XML file.
124 * @return {@link Bundle} containing the participant information.
  /packages/apps/Messaging/src/com/android/messaging/util/
ContactRecipientEntryUtils.java 110 * Returns true if the given participant is a special send to number item.
112 public static boolean isSendToDestinationContact(final ParticipantData participant) {
113 return participant.getContactId() == CONTACT_ID_SENDTO_DESTINATION;
AvatarUriUtil.java 45 * participant. This can be any local resource.
47 * 3) Letter Tile - A letter tile is used when a participant has a name but no profile photo. A
48 * letter tile will contain the first code point of the participant's name and a background color
49 * based on the hash of the participant's full name. Letter tiles will be in the following format.
52 * 4) Default Avatars - These are avatars are used when the participant has no profile photo or
148 public static Uri createAvatarUri(@NonNull final ParticipantData participant) {
149 Assert.notNull(participant);
150 final String photoUriString = participant.getProfilePhotoUri();
152 final String name = participant.getFullName();
153 final String destination = participant.getNormalizedDestination()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewModel.java 254 String participant = ""; local
262 participant = TextUtils.isEmpty(lastParticipant) ?
273 participant = TextUtils.isEmpty(firstUnread.name) ?
277 if (TextUtils.isEmpty(participant)) {
279 participant = lastParticipant;
284 if (showToHeader && !TextUtils.isEmpty(participant)) {
300 mContentDescription = context.getString(res, toHeader, participant,
345 * Removes the name and email address of the participant of this avatar.
353 * @param name the name of the participant of this avatar
354 * @param emailAddress the email address of the participant of this avatar; may not be nul
    [all...]
SendersView.java 399 // if the corresponding message from this participant is unread and no sender avatar
420 final ParticipantInfo participant = conversationInfo.participantInfos.get(i); local
422 if (!TextUtils.isEmpty(participant.name)) {
423 // use the participant name in place of unusable email addresses
424 final String senderEmail = TextUtils.isEmpty(participant.email) ?
425 participant.name : participant.email;
426 senderAvatarModel.populate(participant.name, senderEmail);
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
GetOrCreateConversationActionTest.java 114 assertEquals("Participant count mismatch", recipients.size(),
116 for(final ParticipantData participant : conversationParticipants) {
117 assertTrue(recipients.contains(participant.getSendDestination()));
127 final ParticipantData participant = ParticipantData.getFromCursor(cursor); local
128 if (participant.isSelf()) {
131 assertTrue(recipients.contains(participant.getSendDestination()));
135 assertEquals("Expect one self participant in conversations", 1, countSelf);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 68 // Global cache of phone numbers -> participant id mapping since this call is expensive.
146 for (final ParticipantData participant : participants) {
147 recipients.add(participant.getSendDestination());
222 // Create the conversation with the default self participant which always maps to
369 // We want conversation and participant creation to be atomic
372 for (final ParticipantData participant : participants) {
373 Assert.isTrue(!participant.isSelf());
374 if (participant.isEmail()) {
416 for (final ParticipantData participant : participants) {
418 addParticipantToConversation(dbWrapper, participant, conversationId)
943 ParticipantData participant = null; local
1710 ParticipantData participant = null; local
    [all...]
DataModelImpl.java 148 final ParticipantData participant) {
149 return new ParticipantListItemData(participant);
209 // Trigger a participant refresh if needed, we should only need to refresh if there is
DataModel.java 102 final ParticipantData participant);
MessageNotificationState.java 191 // Self participant id.
637 final ParticipantData participant = iter.next(); local
638 // Make sure we only add the self participant once
639 if (participant.isSelf()) {
647 final String firstName = participant.getFirstName();
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 77 * and a participant (caller) with an item:
145 * participant notices that bound has been updated (in either
294 static final class Participant extends ThreadLocal<Node> {
301 private final Participant participant; field in class:Exchanger
333 Node p = participant.get();
425 Node p = participant.get();
494 participant = new Participant();
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageDetailsDialog.java 315 for (final ParticipantData participant : participants) {
316 if (TextUtils.equals(participant.getId(), senderId)) {
320 if (participant.isSelf() &&
321 (!participant.getId().equals(selfId) || !addSelf)) {
326 final String phoneNumber = participant.getNormalizedDestination();
ConversationFragment.java 447 // Delay showing the message list until the participant list is loaded.
748 final ParticipantData participant = data.getOtherParticipant(); local
804 final ParticipantData participant = mBinding.getData().getOtherParticipant(); local
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
FakeDataModel.java 198 final ParticipantData participant) {
199 return new ParticipantListItemData(participant);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar 
org.eclipse.help.base_3.5.2.v201011171123.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 

Completed in 2555 milliseconds

1 2