/external/webrtc/webrtc/base/ |
virtualsocketserver.cc | 771 VirtualSocket* recipient = LookupBinding(remote_addr); local 772 if (!recipient) { 773 // Make a fake recipient for address family checking. 786 if (!CanInteractWith(socket, recipient)) { 811 AddPacketToNetwork(socket, recipient, cur_time, data, data_size, 820 // recipient's recv_buffer_size_. Anything beyond that must be stored in the 825 VirtualSocket* recipient = LookupConnection(socket->local_addr_, local 827 if (!recipient) { 838 size_t available = recv_buffer_capacity_ - recipient->recv_buffer_size_; 845 AddPacketToNetwork(socket, recipient, cur_time, &socket->send_buffer_[0] [all...] |
virtualsocketserver.h | 170 VirtualSocket* recipient,
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
ProcessSentMessageAction.java | 258 for (final String recipient : recipients) { 259 if (PhoneNumberUtils.isEmergencyNumber(recipient)) { 260 BugleNotifications.notifyEmergencySmsFailed(recipient, conversationId);
|
SendMessageAction.java | 74 private static final String KEY_RECIPIENT = "recipient"; 141 final String recipient = recipients.get(0); local 143 actionParameters.putString(KEY_RECIPIENT, recipient); 201 final String recipient = actionParameters.getString(KEY_RECIPIENT); local 206 status = MmsUtils.sendSmsMessage(recipient, messageText, messageUri, subId,
|
/cts/tests/tests/os/src/android/os/cts/ |
MessengerTest.java | 66 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException { 82 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
GetOrCreateConversationActionTest.java | 62 for (final String recipient : recipients) { 63 participants.add(ParticipantData.getFromRawPhoneBySystemLocale(recipient));
|
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
PduComposer.java | 793 boolean recipient = false; 797 recipient = true; 802 recipient = true; 807 recipient = true; 811 if (false == recipient) { [all...] |
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
PduComposer.java | 856 boolean recipient = false; 860 recipient = true; 865 recipient = true; 870 recipient = true; 874 if (false == recipient) { [all...] |
/frameworks/opt/telephony/src/java/android/provider/ |
Telephony.java | [all...] |
/frameworks/base/services/core/java/com/android/server/ |
TextServicesManagerService.java | 552 final InternalDeathRecipient recipient = local 555 if (recipient == null) { 557 Slog.w(TAG, "Didn't create a death recipient."); 572 recipient.mScLocale, recipient.mScListener, bundle); 885 InternalDeathRecipient recipient = null; local [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
BugleDatabaseOperations.java | 73 * Convert list of recipient strings (email/phone number) into list of ConversationParticipants 75 * @param recipients The recipient list 85 for (final String recipient : recipients) { 86 participants.add(ParticipantData.getFromRawPhoneBySimLocale(recipient, refSubId)); 103 final String recipient = participants.get(i).getNormalizedDestination(); local 104 if (!recipients.contains(recipient)) { 105 recipients.add(recipient); 126 final String recipient = participants.get(i).getNormalizedDestination(); local 127 if (selfNumbers.contains(recipient)) { 137 * Convert list of ConversationParticipants into recipient strings (email/phone number [all...] |
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
BluetoothMasClient.java | 532 String recipient = null; field in class:BluetoothMasClient.MessagesFilter 559 recipient = null; 561 recipient = filter; [all...] |
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
ApplicationTest.java | 299 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException { 303 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
DropdownChipLayouter.java | 94 * Layouts and binds recipient information to the view. If convertView is null, inflates a new 99 * @param entry The recipient entry to get information from. 280 protected void bindDrawableToDeleteView(final StateListDrawable drawable, String recipient, 291 res.getString(R.string.dropdown_delete_button_desc, recipient)); 458 * Given a constraint and a recipient entry, tries to find the constraint in the name and 459 * destination in the recipient entry. A foreground font color style will be applied to the 464 * @param entry The recipient entry to style results for.
|
/external/clang/www/demo/ |
index.cgi | 108 my ( $recipient, $body ) = @_; 110 new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
|
/frameworks/native/include/gui/ |
SurfaceComposerClient.h | 67 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
usbprotocoldefs.h | 84 #define USB_MAKE_REQUEST_TYPE(direction, type, recipient) \ 86 ((BYTE)type << 5) | ((BYTE)recipient & 0x07) ) 248 BYTE Recipient:5;
|
/device/google/accessory/arduino/USB_Host_Shield/ |
Usb.h | 79 byte recipient: 5; // Recipient of the request
member in struct:__anon2851::__anon2852::__anon2853
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
crypt.py | 458 raise AppIdentityError('Wrong recipient, %s != %s: %s' %
|
/external/libevent/ |
bufferevent.c | 589 struct bufferevent *recipient) 592 struct bufferevent_private *r = BEV_UPCAST(recipient);
|
/frameworks/native/libs/gui/ |
SurfaceComposerClient.cpp | 542 const sp<IBinder::DeathRecipient>& recipient, 545 return IInterface::asBinder(sm)->linkToDeath(recipient, cookie, flags);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapbMessage.java | 665 if(D) Log.d(TAG,"Decoding recipient vCard level " + level); [all...] |
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/ |
TelephonyBackupAgentTest.java | 792 final String recipient = getRecipient(recipientId); local [all...] |
/packages/apps/Messaging/src/com/android/messaging/sms/ |
MmsUtils.java | [all...] |
/external/boringssl/src/include/openssl/ |
pem.h | 180 PEM_USER **recipient; member in struct:pem_ctx_st
|