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

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
TestConferenceEventPackageParser.java 38 * <participant>
43 * </participant>
63 private static final String PARTICIPANT_TAG = "participant";
98 Log.v(LOG_TAG, "Found participant.");
99 Bundle participant = parseParticipant(parser); local
100 conferenceState.mParticipants.put(participant.getString(
101 ImsConferenceState.ENDPOINT), participant); local
120 * Parses a participant record from a conference event package XML file.
123 * @return {@link Bundle} containing the participant information.
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
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 163 * @return the contact id of the participant if it is a 1:1 conversation, -1 for group.
194 // Participant count excludes self
481 for (final ParticipantData participant : participants) {
482 if (ContactUtil.isEnterpriseContactId(participant.getContactId())) {
531 for (final ParticipantData participant : participants) {
533 participantNames.add(participant.getDisplayName(false));
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Chat.java 101 public void addParticipant(Profile participant) {
102 participants.put(participant.getId(), participant); local
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Chat.java 101 public void addParticipant(Profile participant) {
102 participants.put(participant.getId(), participant); local
  /packages/services/Telephony/src/com/android/services/telephony/
ImsConference.java 59 * in Telecom/InCall as a call. The conference participant information is received via the host
60 * connection via a conference event package. Conference participant connections do not represent
62 * participant, keyed by a unique endpoint {@link android.net.Uri}.
65 * connection and is responsible for managing the conference participant connections which represent
72 * are most concerned with handling destruction of a conference participant.
76 * Participant has been destroyed. Remove it from the conference.
78 * @param connection The participant which was destroyed.
82 ConferenceParticipantConnection participant =
84 removeConferenceParticipant(participant);
134 * Handles changes to conference participant data as reported by the conference hos
719 ConferenceParticipantConnection participant = entry.getValue(); local
    [all...]
ConferenceParticipantConnection.java 33 * Represents a participant in a conference call.
43 * The user entity URI For the conference participant.
48 * The endpoint URI For the conference participant.
53 * The connection which owns this participant.
60 * @param participant The conference participant to create the instance for.
64 ConferenceParticipant participant) {
68 int presentation = getParticipantPresentation(participant);
74 address = getParticipantAddress(participant.getHandle(), countryIso);
77 setCallerDisplayName(participant.getDisplayName(), presentation)
    [all...]
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
MockIncomingMessageReceiver.java 170 for (Profile participant : chat.getParticipants().values()) {
171 notificationCompatBuilder.addPerson(participant.getName());
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
MockIncomingMessageReceiver.java 170 for (Profile participant : chat.getParticipants().values()) {
171 notificationCompatBuilder.addPerson(participant.getName());
  /libcore/ojluni/src/main/java/java/util/concurrent/
Exchanger.java 106 * and a participant (caller) with an item:
175 * participant notices that bound has been updated (in either
321 static final class Participant extends ThreadLocal<Node> {
328 private final Participant participant; field in class:Exchanger
360 Node p = participant.get();
452 Node p = participant.get();
521 participant = new Participant();
  /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);
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
audio_conference_mixer_impl.cc 23 MixerParticipant* participant; member in struct:webrtc::__anon44119::ParticipantFramePair
373 MixerParticipant* participant, bool mixable) {
376 // participant is in the _participantList if it is being mixed.
377 SetAnonymousMixabilityStatus(participant, false);
383 IsParticipantInList(*participant, _participantList);
393 success = AddParticipantToList(participant, &_participantList);
395 success = RemoveParticipantFromList(participant, &_participantList);
399 "failed to %s participant",
421 const MixerParticipant& participant) const {
423 return IsParticipantInList(participant, _participantList)
    [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/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)
948 ParticipantData participant = null; local
1715 ParticipantData participant = null; local
    [all...]
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...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay_i.h 87 /* used for active and potential participant */
94 Boolean participant; member in struct:ieee802_1x_mka_participant
100 /* used for active participant */
178 * @macsec_desired: the participant wants MACsec to be used to protect frames
180 * @key_server: the participant has not decided that another participant is or
ieee802_1x_kay.c 250 struct ieee802_1x_mka_participant *participant; local
252 dl_list_for_each(participant, &kay->participant_list,
254 if (os_memcmp(participant->ckn.name, ckn,
255 participant->ckn.len) == 0)
256 return participant;
259 wpa_printf(MSG_DEBUG, "KaY: participant is not found");
271 struct ieee802_1x_mka_participant *participant; local
273 dl_list_for_each(participant, &kay->participant_list,
275 if (participant->principal)
276 return participant;
748 struct ieee802_1x_mka_participant *participant; local
2330 struct ieee802_1x_mka_participant *participant; local
2857 struct ieee802_1x_mka_participant *participant; local
2949 struct ieee802_1x_mka_participant *participant; local
3206 struct ieee802_1x_mka_participant *participant; local
3241 struct ieee802_1x_mka_participant *participant; local
3395 struct ieee802_1x_mka_participant *participant; local
3460 struct ieee802_1x_mka_participant *participant; local
3479 struct ieee802_1x_mka_participant *participant; local
3502 struct ieee802_1x_mka_participant *participant; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
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...]
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.6/
dagger-compiler-2.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/
dagger-compiler-2.7.jar 
  /prebuilts/tools/common/m2/repository/org/jboss/forge/roaster/roaster-jdt/2.18.7.Final/
roaster-jdt-2.18.7.Final.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 

Completed in 452 milliseconds

1 2