Searched refs:messages (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageCache.java27 * to clean up messages come from the device.
54 SparseArray<HdmiCecMessage> messages = mCache.get(address);
55 if (messages == null) {
59 return messages.get(opcode);
91 SparseArray<HdmiCecMessage> messages = mCache.get(source);
92 if (messages == null) {
93 messages = new SparseArray<>();
94 mCache.put(source, messages);
96 messages.put(opcode, message);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java43 List<MailMessage> messages = Lists.newArrayList();
44 messages.add(new MailMessage("hello!", "<p>this is a test "
58 messages.add(new MailMessage("hello2!", longBody.toString(), true));
59 messages.add(new MailMessage("phone number?", "<p>hey man, what's ur "
63 setListAdapter(new MyAdapter(this, R.layout.mail_message, messages));
/frameworks/support/v4/api21/android/support/v4/app/
H A DNotificationCompatApi21.java48 private static final String KEY_MESSAGES = "messages";
159 Parcelable[] messages = new Parcelable[uc.getMessages().length];
160 for (int i = 0; i < messages.length; i++) {
164 messages[i] = m;
166 b.putParcelableArray(KEY_MESSAGES, messages);
185 String[] messages = null;
201 messages = tmp;
219 messages,
/frameworks/support/v4/donut/android/support/v4/app/
H A DNotificationCompatBase.java55 UnreadConversation build(String[] messages, argument
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.h77 virtual void onMessages(const std::list<omx_message> &messages);
H A DOMXHarness.cpp67 void Harness::onMessages(const std::list<omx_message> &messages) { argument
69 for (std::list<omx_message>::const_iterator it = messages.cbegin(); it != messages.cend(); ) {
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScope.java101 HashSet<String> messages = new HashSet<String>();
104 if (!messages.contains(message)) {
106 messages.add(message);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java136 protected void markMessagesAsRead(ArrayList<byte[]> messages) { argument
137 if (messages == null) {
144 //shouldn't really happen, as messages are marked as read, only
152 int count = messages.size();
155 byte[] ba = messages.get(i);
280 * Retrieves all messages currently stored on Icc.
290 "Reading messages from Icc");
574 * @param messages List of message records from EF_SMS.
577 protected ArrayList<SmsRawData> buildValidRawData(ArrayList<byte[]> messages) { argument
578 int count = messages
[all...]
H A DInboundSmsHandler.java85 * This class broadcasts incoming SMS messages to interested apps after storing them in
88 * but before the broadcast completes, the pending messages will be rebroadcast on the next boot.
102 * after all messages are processed. Then the wakelock is released and we wait for the next SMS.
174 /** Special handler for WAP push messages. */
186 /** Idle state. Waiting for messages to process. */
195 /** Helper class to check whether storage is available for incoming messages. */
252 * Tell the state machine to quit after processing all messages.
403 * results. When all messages have been processed, the halting state will release the wakelock.
449 // return to idle after processing all other messages
476 * {@link IdleState} after any deferred {@link #EVENT_BROADCAST_SMS} messages ar
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp90 void dispatch(std::list<omx_message> &messages);
130 void OMX::CallbackDispatcher::dispatch(std::list<omx_message> &messages) { argument
135 mOwner->onMessages(messages);
140 std::list<omx_message> messages; local
152 messages.swap(mQueue);
155 dispatch(messages);
H A DOMXNodeInstance.cpp1621 void OMXNodeInstance::onMessages(std::list<omx_message> &messages) { argument
1622 for (std::list<omx_message>::iterator it = messages.begin(); it != messages.end(); ) {
1624 messages.erase(it++);
1630 if (!messages.empty()) {
1631 mObserver->onMessages(messages);
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java360 * Notification key: the username to be displayed for all messages sent by the user
377 public static final String EXTRA_MESSAGES = "android.messages";
1938 * messages of varying types between any number of people.
1949 * .setContentTitle(&quot;2 new messages wtih &quot; + sender.toString())
1954 * .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender())
1955 * .addMessage(messages[1].getText(), messages[1].getTime(), messages[
2223 getBundleArrayForMessages(List<Message> messages) argument
3746 UnreadConversation(String[] messages, RemoteInput remoteInput, PendingIntent replyPendingIntent, PendingIntent readPendingIntent, String[] participants, long latestTimestamp) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java47 * messages and access to the APN list, including the MMSC to use.
50 * devices. If your app depends on telephony features such as for managing SMS messages, include
72 * <p>This allows your app to directly receive incoming SMS messages.</p></li>
78 * <p>This allows your app to directly receive incoming MMS messages.</p></li>
79 * <li>In your activity that delivers new messages, include an intent filter for
100 * read special incoming messages such as to perform phone number verification.</p>
122 /** Message type: all messages. */
128 /** Message type: sent messages. */
273 * Contains all text-based SMS messages.
490 * Contains all text-based SMS messages i
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java215 * notification, this could be the number of unread messages.
948 * {@link #extras} key: the username to be displayed for all messages sent by the user including
967 public static final String EXTRA_MESSAGES = "android.messages";
4443 * messages of varying types between any number of people.
4454 * .setContentTitle(&quot;2 new messages wtih &quot; + sender.toString())
4459 * .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender())
4460 * .addMessage(messages[1].getText(), messages[
4886 getBundleArrayForMessages(List<Message> messages) argument
6492 UnreadConversation(String[] messages, RemoteInput remoteInput, PendingIntent replyPendingIntent, PendingIntent readPendingIntent, String[] participants, long latestTimestamp) argument
[all...]
/frameworks/av/include/media/
H A DIOMX.h249 // Handle (list of) messages.
250 virtual void onMessages(const std::list<omx_message> &messages) = 0;
/frameworks/av/media/libmedia/
H A DIOMX.cpp1234 virtual void onMessages(const std::list<omx_message> &messages) { argument
1236 std::list<omx_message>::const_iterator it = messages.cbegin();
1238 while (it != messages.cend()) {
1269 std::list<omx_message> messages; local
1273 if (haveFence < 0) { // we use -1 to mark end of messages
1282 messages.push_back(msg);
1286 onMessages(messages);
/frameworks/wilhelm/src/
H A DAndroid.mk54 # select the level of log messages
/frameworks/av/media/libstagefright/include/
H A DOMXNodeInstance.h137 // handles messages and removes them from the list
138 void onMessages(std::list<omx_message> &messages);
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsManager.java52 * Manages SMS operations such as sending data, text, and pdu SMS messages.
83 * Some of the values are used by the system in processing SMS or MMS messages. Others
115 * Whether audio is allowed to be attached for MMS messages (boolean type)
135 * Whether multipart SMS should be sent as separate messages
165 * Limit of recipients of MMS messages (int type)
262 * writes messages sent using this method to the SMS Provider (the default SMS app is always
263 * responsible for writing its sent messages to the SMS Provider). For information about
423 * writes messages sent using this method to the SMS Provider (the default SMS app is always
424 * responsible for writing its sent messages to the SMS Provider). For information about
785 * Retrieves all messages currentl
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java437 * @param countWaiting The number of messages waiting, if known. Use
439 * messages are waiting
457 // byte 1 is the number of voice messages waiting
1387 private void handleSmses(ArrayList<byte[]> messages) { argument
1388 int count = messages.size();
1391 byte[] ba = messages.get(i);
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java191 // Handler messages
527 SmsMessage[] messages = Intents.getMessagesFromIntent(intent);
528 if (messages == null) {
533 for (SmsMessage message : messages) {
2150 Log.d(TAG, "Skipped registration for SMS/WAP-PUSH messages because AGPS Ril in GPS"
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs949 <a href="<?cs var:toroot ?>training/wearables/data-layer/messages.html">Sending and Receiving Messages</a>
1268 "How to display messages called notifications outside of
/frameworks/base/tools/apilint/
H A Dapilint.py18 Enforces common Android public API design patterns. It ignores lint messages from
1115 patterns. It ignores lint messages from a previous API level, if provided.")
/frameworks/av/media/libstagefright/
H A DACodec.cpp133 virtual void onMessages(const std::list<omx_message> &messages) { argument
134 if (messages.empty()) {
141 for (std::list<omx_message>::const_iterator it = messages.cbegin();
142 it != messages.cend(); ++it) {
203 notify->setObject("messages", msgList);
245 // Handles a list of messages. Returns true iff messages were handled.
5449 CHECK(msg->findObject("messages", &obj));

Completed in 7719 milliseconds