/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | HdmiCecMessageCache.java | 54 SparseArray<HdmiCecMessage> messages = mCache.get(address); in getMessage() local 55 if (messages == null) { in getMessage() 59 return messages.get(opcode); in getMessage() 91 SparseArray<HdmiCecMessage> messages = mCache.get(source); in cacheMessage() local 92 if (messages == null) { in cacheMessage() 93 messages = new SparseArray<>(); in cacheMessage() 94 mCache.put(source, messages); in cacheMessage() 96 messages.put(opcode, message); in cacheMessage()
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
D | ListWithMailMessages.java | 43 List<MailMessage> messages = Lists.newArrayList(); in onCreate() local 44 messages.add(new MailMessage("hello!", "<p>this is a test " in onCreate() 58 messages.add(new MailMessage("hello2!", longBody.toString(), true)); in onCreate() 59 messages.add(new MailMessage("phone number?", "<p>hey man, what's ur " in onCreate() 63 setListAdapter(new MyAdapter(this, R.layout.mail_message, messages)); in onCreate()
|
/frameworks/base/docs/html/training/auto/messaging/ |
D | index.jd | 54 Staying connected through messages is important to many drivers. Chat apps can let users 63 dashboard systems, alerting them to new messages and allowing them to respond. You can configure 71 This lesson assumes that you have built an app that displays messages to the user and receive the 72 user's replies, such as a chat app. It shows you how to extend your app to hand those messages 82 the installed messaging apps can offer services for viewing and responding to messages 110 <p>A <em>conversation</em> is a group of messages that are all grouped together 111 in some way. Auto uses the conversation information to group the messages 113 be all the messages between the user and another person (for example, all 114 the messages back and forth between Darcy and Elizabeth). Every message 118 present the messages; it's up to your app to choose an appropriate conversation [all …]
|
/frameworks/support/compat/api21/android/support/v4/app/ |
D | NotificationCompatApi21.java | 159 Parcelable[] messages = new Parcelable[uc.getMessages().length]; in getBundleForUnreadConversation() local 160 for (int i = 0; i < messages.length; i++) { in getBundleForUnreadConversation() 164 messages[i] = m; in getBundleForUnreadConversation() 166 b.putParcelableArray(KEY_MESSAGES, messages); in getBundleForUnreadConversation() 185 String[] messages = null; in getUnreadConversationFromBundle() local 201 messages = tmp; in getUnreadConversationFromBundle() 219 messages, in getUnreadConversationFromBundle()
|
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
D | NotificationCompat.java | 144 List<MessagingStyle.Message> messages = style.getMessages(); in findLatestIncomingMessage() local 145 for (int i = messages.size() - 1; i >= 0; i--) { in findLatestIncomingMessage() 146 MessagingStyle.Message m = messages.get(i); in findLatestIncomingMessage() 152 if (!messages.isEmpty()) { in findLatestIncomingMessage() 154 return messages.get(messages.size() - 1); in findLatestIncomingMessage() 194 List<MessagingStyle.Message> messages = style.getMessages(); in addMessagingFallBackStyle() local 197 for (int i = messages.size() - 1; i >= 0; i--) { in addMessagingFallBackStyle() 198 MessagingStyle.Message m = messages.get(i); in addMessagingFallBackStyle() 201 if (i != messages.size() - 1) { in addMessagingFallBackStyle() 210 List<MessagingStyle.Message> messages) { in hasMessagesWithoutSender() argument [all …]
|
/frameworks/base/docs/html/guide/webapps/ |
D | debugging.jd | 10 messages</li> 38 {@code console} JavaScript APIs and view the output messages to logcat. If you're familiar with 51 <p>Logcat is a tool that dumps a log of system messages. The messages include a stack trace when 52 the device throws an error, as well as log messages written from your application and 54 <p>To run logcat and view messages, execute 74 using. On Android 2.1 and higher, console messages from the Android Browser 76 messages are tagged with the name "WebCore".</p> 99 onConsoleMessage()} method in order for console messages to appear in logcat.
|
/frameworks/base/docs/html/distribute/engage/ |
D | nearby.jd | 23 Find nearby devices and share messages to enable rich interactions and collaboration 45 Receive messages from beacons using 79 messages, to limit the range of Nearby messages to about five feet when privacy is important. 82 <li>Accelerate the exchange of messages (when appropriate) by making one device the publisher
|
D | gcm.jd | 2 …p your users in sync with your latest content by delivering lightweight messages over Google's inf… 15 Messaging</a> for Android, by sending lightweight messages to your apps 20 Push messages from your backend servers to tell your apps that there's new
|
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/ |
D | Scope.java | 101 HashSet<String> messages = new HashSet<String>(); in assertNoError() local 104 if (!messages.contains(message)) { in assertNoError() 106 messages.add(message); in assertNoError()
|
/frameworks/base/docs/html/topic/performance/power/network/ |
D | action-server-traffic.jd | 43 Google Cloud Messaging (GCM) is a lightweight mechanism used to transmit brief messages from an 71 <strong>Note:</strong> When using GCM, your app can pass messages in normal or high priority. 74 normal priority</a> to deliver messages. Using this priority level prevents devices from being 77 state. Use high priority messages only if absolutely required.
|
/frameworks/base/docs/html/training/wearables/notifications/ |
D | stacks.jd | 24 for received messages, you should not show more than one notification 26 to provide a summary such as "2 new messages."</p> 100 .setContentTitle("2 new messages") 106 .setBigContentTitle("2 new messages") 150 .setContentTitle("2 new messages")
|
/frameworks/base/docs/html/wear/preview/features/ |
D | notifications.jd | 238 which is new in Android 7.0. Wear 2.0 uses the chat messages included in a 263 private (messages received by a user never leave the watch), and reliable (no 264 internet connection needed) way to respond to chat messages. 307 .setContentTitle(messages.length + " new messages with " + sender.toString()) 313 .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender()) 314 .addMessage(messages[1].getText(), messages[1].getTime(), messages[1].getSender()))
|
/frameworks/av/media/libstagefright/omx/ |
D | OMX.cpp | 90 void dispatch(std::list<omx_message> &messages); 130 void OMX::CallbackDispatcher::dispatch(std::list<omx_message> &messages) { in dispatch() argument 135 mOwner->onMessages(messages); in dispatch() 140 std::list<omx_message> messages; in loop() local 152 messages.swap(mQueue); in loop() 155 dispatch(messages); in loop()
|
/frameworks/base/docs/html/training/monitoring-device-state/ |
D | doze-standby.jd | 219 especially if the app relies on real-time messages such as tickles or 221 receive messages, you should use <a href="#using_gcm">Google Cloud Messaging (GCM)</a> 278 high-priority GCM messages</a>. GCM high-priority messages let you reliably wake your app to 286 High-priority GCM messages do not otherwise affect Doze mode, and they don’t 294 high-priority messages for critical messages, since this will reliably 302 jobs, and syncs properly, and using GCM high-priority messages. For a narrow 428 technical reason why your app cannot use GCM high-priority messages.</p> 444 <td rowspan="3">Requires delivery of real-time messages to users while device is in Doze or app 448 … <td rowspan="2">Should use GCM high-priority messages to wake the app and access the network.</td> 452 <td>Yes, but is not using GCM high-priority messages.</td>
|
/frameworks/base/docs/html/training/wearables/data-layer/ |
D | messages.jd | 16 <p>You send messages using the 32 nodes receive the messages. For example, in a voice transcription app that receives voice data on 39 connected nodes feature into consideration. If you don’t implement the changes, your messages may 52 requests, discover the nodes capable of fulfilling a requested need, and send messages to those 232 <p>You can also broadcast messages to all connected nodes. To retrieve all of the 233 connected nodes that you can send messages to, implement the following code:</p> 250 To be notified of received messages, implement the
|
D | index.jd | 31 can send messages and is good for remote procedure calls (RPC), such as controlling a handheld's 50 …binding to the service when it needs to send data items or messages and unbinding the service when… 117 …<dt><a href="{@docRoot}training/wearables/data-layer/messages.html">Sending and Receiving Messages… 118 <dd>Messages are designed for fire-and-forget messages that you can send back and forth
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccSmsInterfaceManager.java | 136 protected void markMessagesAsRead(ArrayList<byte[]> messages) { in markMessagesAsRead() argument 137 if (messages == null) { in markMessagesAsRead() 152 int count = messages.size(); in markMessagesAsRead() 155 byte[] ba = messages.get(i); in markMessagesAsRead() 578 protected ArrayList<SmsRawData> buildValidRawData(ArrayList<byte[]> messages) { in buildValidRawData() argument 579 int count = messages.size(); in buildValidRawData() 585 byte[] ba = messages.get(i); in buildValidRawData() 589 ret.add(new SmsRawData(messages.get(i))); in buildValidRawData()
|
/frameworks/base/proto/src/ |
D | system_messages.proto | 17 option java_package = "com.android.internal.messages"; 22 // Descriptors for system messages: notifications, dialogs, toasts, etc.
|
/frameworks/base/docs/html/training/beam-files/ |
D | index.jd | 39 URIs or other small messages. In addition, Android Beam is only one of the features available 40 in the Android NFC framework, which allows you to read NDEF messages from NFC tags. To learn
|
/frameworks/support/compat/java/android/support/v4/app/ |
D | NotificationCompat.java | 2302 static Bundle[] getBundleArrayForMessages(List<Message> messages) { in getBundleArrayForMessages() argument 2303 Bundle[] bundles = new Bundle[messages.size()]; in getBundleArrayForMessages() 2304 final int N = messages.size(); in getBundleArrayForMessages() 2306 bundles[i] = messages.get(i).toBundle(); in getBundleArrayForMessages() 2312 List<Message> messages = new ArrayList<>(bundles.length); in getMessagesFromBundleArray() local 2317 messages.add(message); in getMessagesFromBundleArray() 2321 return messages; in getMessagesFromBundleArray() 3881 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument 3884 mMessages = messages; in UnreadConversation() 3954 String[] messages, RemoteInputCompatBase.RemoteInput remoteInput, [all …]
|
/frameworks/base/docs/html/training/multiple-threads/ |
D | communicate-ui.jd | 47 {@link android.os.Handler} object receives messages and runs code to handle the messages. 50 When you connect a {@link android.os.Handler} to your UI thread, the code that handles messages 198 // Handle status messages from tasks 251 * Pass along other messages from the UI
|
/frameworks/support/compat/gingerbread/android/support/v4/app/ |
D | NotificationCompatBase.java | 59 UnreadConversation build(String[] messages, in build() argument
|
/frameworks/base/docs/html/training/snackbar/ |
D | index.jd | 51 android.support.design.widget.Snackbar} to show pop-up messages. 71 preferred way to display brief, transient messages to the user.
|
/frameworks/opt/telephony/src/java/android/provider/ |
D | Telephony.java | 1142 Object[] messages; in getMessagesFromIntent() local 1144 messages = (Object[]) intent.getSerializableExtra("pdus"); in getMessagesFromIntent() 1151 if (messages == null) { in getMessagesFromIntent() 1162 int pduCount = messages.length; in getMessagesFromIntent() 1166 byte[] pdu = (byte[]) messages[i]; in getMessagesFromIntent()
|
/frameworks/av/media/libstagefright/omx/tests/ |
D | OMXHarness.h | 77 virtual void onMessages(const std::list<omx_message> &messages);
|