Searched defs:notify (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java22 public abstract void notify(int id, NotificationWrapper notification); method in class:NotificationMgr
H A DAlertService.java168 public void notify(int id, NotificationWrapper nw) { method in class:AlertService.NotificationMgrWrapper
169 mNm.notify(id, nw.mNotification);
402 nm.notify(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, notification);
889 notificationMgr.notify(notificationId, notification);
/packages/services/NetworkRecommendation/src/com/android/networkrecommendation/notify/
H A DWifiNotificationHelper.java16 package com.android.networkrecommendation.notify;
H A DWifiNotificationController.java16 package com.android.networkrecommendation.notify;
130 "com.android.networkrecommendation.notify.CONNECT_TO_RECOMMENDED_NETWORK_AND_OPEN_SETTINGS";
134 "com.android.networkrecommendation.notify.CONNECT_TO_RECOMMENDED_NETWORK";
138 "com.android.networkrecommendation.notify.ACTION_PICK_WIFI_NETWORK";
142 "com.android.networkrecommendation.notify.ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE";
146 "com.android.networkrecommendation.notify.NOTIFICATION_DELETED";
526 mNotificationManager.notify(NOTIFICATION_TAG, NOTIFICATION_ID, notification);
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
H A DTestNotificationManager.java44 private void notify(String tag, int id, Notification notification) { method in class:TestNotificationManager
71 case "notify":
73 notify(null, (Integer) args[0], (Notification) args[1]);
76 notify((String) args[0], (Integer) args[1], (Notification) args[2]);
/packages/apps/Dialer/java/com/android/incallui/
H A DInCallOrientationEventListener.java29 * when an orientation change occurs. When that happens, we notify InCallUI registrants of the
59 * This is to identify dead zones where we won't notify others of orientation changed. Say for e.g
60 * our threshold is x degrees. We will only notify UI when our current rotation is within x
67 // the above angles, we will notify orientation changed.
129 * Enables the OrientationEventListener and notifies listeners of current orientation if notify
132 * @param notify true or false. Notify device orientation changed if true.
134 public void enable(boolean notify) { argument
142 if (notify) {
147 /** Enables the OrientationEventListener with notify flag defaulting to false. */
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DPolicyServiceProxy.java73 setAccountPolicy2(accountId, policy, securityKey, true /* notify */);
78 final String securityKey, final boolean notify) throws RemoteException {
82 mService.setAccountPolicy2(accountId, policy, securityKey, notify);
153 setAccountPolicy2(context, accountId, policy, securityKey, true /* notify */);
157 String securityKey, boolean notify) {
160 notify);
77 setAccountPolicy2(final long accountId, final Policy policy, final String securityKey, final boolean notify) argument
156 setAccountPolicy2(Context context, long accountId, Policy policy, String securityKey, boolean notify) argument
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
H A DMockedPowerHalService.java128 public void setCurrentPowerState(PowerState state, boolean notify) { argument
134 if (listener != null && notify) {
/packages/apps/Email/provider_src/com/android/email/
H A DSecurityPolicy.java492 * This will kick off the notify-acquire-admin-state process and/or increase the security level.
598 boolean notify) {
634 if (notify) {
644 if (notify) {
649 LogUtils.d(Logging.LOG_TAG, "Policy is active and unchanged; do not notify.");
655 if (notify) {
597 setAccountPolicy(long accountId, Policy policy, String securityKey, boolean notify) argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherSettings.java116 * @param notify True to send a notification is the content changes.
120 static Uri getContentUri(long id, boolean notify) { argument
123 LauncherProvider.PARAMETER_NOTIFY + "=" + notify);
H A DLauncherModel.java405 mLoaderTask.notify();
610 final int screen, final int cellX, final int cellY, final boolean notify) {
641 cr.insert(notify ? LauncherSettings.Favorites.CONTENT_URI :
1057 LoaderTask.this.notify();
1185 this.notify();
1515 // Don't notify content observers
2356 int cellX, int cellY, boolean notify) {
2361 addItemToDatabase(context, info, container, screen, cellX, cellY, notify);
609 addItemToDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY, final boolean notify) argument
2355 addShortcut(Context context, Intent data, long container, int screen, int cellX, int cellY, boolean notify) argument
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMailAppProvider.java295 private void addAccountImpl(Account account, Uri accountsQueryUri, boolean notify) { argument
300 if (notify) {
493 addAccountImpl(account, accountsQueryUri, false /* don't notify */);
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java379 public void notify(int id, NotificationWrapper nw) { method in class:AlertServiceTest.NotificationTestManager
388 // Catch updates of new state, notify time, and received time
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DDraftMessageData.java148 setMessageText(message.getMessageText(), false /* notify */);
149 setMessageSubject(message.getMmsSubject(), false /* notify */);
253 private void setMessageText(final String messageText, final boolean notify) { argument
256 if (notify) {
261 private void setMessageSubject(final String subject, final boolean notify) { argument
263 if (notify) {
424 public void setSelfId(final String selfId, final boolean notify) { argument
428 if (notify) {
526 * Remove the attachments from the draft and notify any listeners.
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DComposeMessageView.java596 private void updateConversationSelfId(final String selfId, final boolean notify) { argument
597 mBinding.getData().setSelfId(selfId, notify);
874 updateConversationSelfId(selfId, true /* notify */);
895 updateConversationSelfId(newSelfId, true /* notify */);
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java268 // notify all cursors backed by data on that volume.
314 // notify on media Uris as well as the files Uri
2037 boolean notify, ArrayList<Long> notifyRowIds) {
2263 if (rowId != -1 && notify) {
3295 // or playlists) we will notify a change on the entire volume to make
2036 insertFile(DatabaseHelper helper, Uri uri, ContentValues initialValues, int mediaType, boolean notify, ArrayList<Long> notifyRowIds) argument

Completed in 431 milliseconds