OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mNotifications
(Results
1 - 6
of
6
) sorted by null
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java
119
ArrayList<Notification>
mNotifications
= new ArrayList<Notification>();
123
int bigtextId =
mNotifications
.size();
124
mNotifications
.add(makeBigTextNotification(this, 0, bigtextId, System.currentTimeMillis()));
126
int uploadId =
mNotifications
.size();
128
mNotifications
.add(makeUploadNotification(this, 10, uploadWhen));
145
mNotifications
.add(phoneCall);
147
mNotifications
.add(new NotificationCompat.Builder(this)
155
mNotifications
.add(new NotificationCompat.Builder(this)
173
mNotifications
.add(new NotificationCompat.BigPictureStyle(
199
mNotifications
.add(new NotificationCompat.InboxStyle
[
all
...]
/frameworks/base/services/java/com/android/server/
StatusBarManagerService.java
63
HashMap<IBinder,StatusBarNotification>
mNotifications
439
synchronized (
mNotifications
) {
440
for (Map.Entry<IBinder,StatusBarNotification> e:
mNotifications
.entrySet()) {
498
synchronized (
mNotifications
) {
500
mNotifications
.put(key, notification);
512
synchronized (
mNotifications
) {
513
if (!
mNotifications
.containsKey(key)) {
516
mNotifications
.put(key, notification);
527
synchronized (
mNotifications
) {
528
final StatusBarNotification n =
mNotifications
.remove(key)
[
all
...]
/hardware/libhardware/tests/camera2/
camera2_utils.cpp
260
if (
mNotifications
.size() == 0) return BAD_VALUE;
269
while (
mNotifications
.size() == 0) {
277
return
mNotifications
.size();
284
*msg_type =
mNotifications
.begin()->msg_type;
285
*ext1 =
mNotifications
.begin()->ext1;
286
*ext2 =
mNotifications
.begin()->ext2;
287
*ext3 =
mNotifications
.begin()->ext3;
288
mNotifications
.erase(
mNotifications
.begin());
297
mNotifications
.push_back(Notification(msg_type, ext1, ext2, ext3))
[
all
...]
camera2_utils.h
145
List<Notification>
mNotifications
;