Searched refs:addAction (Results 1 - 25 of 115) sorted by relevance

12345

/frameworks/base/core/java/com/android/internal/app/
H A DExternalMediaFormatActivity.java76 filter.addAction(Intent.ACTION_MEDIA_REMOVED);
77 filter.addAction(Intent.ACTION_MEDIA_CHECKING);
78 filter.addAction(Intent.ACTION_MEDIA_MOUNTED);
79 filter.addAction(Intent.ACTION_MEDIA_SHARED);
/frameworks/base/core/java/com/android/internal/content/
H A DPackageMonitor.java45 sPackageFilt.addAction(Intent.ACTION_PACKAGE_ADDED);
46 sPackageFilt.addAction(Intent.ACTION_PACKAGE_REMOVED);
47 sPackageFilt.addAction(Intent.ACTION_PACKAGE_CHANGED);
48 sPackageFilt.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
49 sPackageFilt.addAction(Intent.ACTION_PACKAGE_RESTARTED);
50 sPackageFilt.addAction(Intent.ACTION_UID_REMOVED);
52 sNonDataFilt.addAction(Intent.ACTION_UID_REMOVED);
53 sNonDataFilt.addAction(Intent.ACTION_USER_STOPPED);
54 sExternalFilt.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
55 sExternalFilt.addAction(Inten
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDateView.java116 filter.addAction(Intent.ACTION_TIME_TICK);
117 filter.addAction(Intent.ACTION_TIME_CHANGED);
118 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
H A DClock.java83 filter.addAction(Intent.ACTION_TIME_TICK);
84 filter.addAction(Intent.ACTION_TIME_CHANGED);
85 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
86 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
H A DBluetoothController.java54 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
55 filter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
56 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
H A DLocationController.java62 filter.addAction(LocationManager.GPS_ENABLED_CHANGE_ACTION);
63 filter.addAction(LocationManager.GPS_FIX_CHANGE_ACTION);
H A DAirplaneModeController.java49 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
H A DBatteryWaster.java62 mFilter.addAction(Intent.ACTION_BATTERY_CHANGED);
63 mFilter.addAction(Intent.ACTION_BATTERY_LOW);
64 mFilter.addAction(Intent.ACTION_BATTERY_OKAY);
65 mFilter.addAction(Intent.ACTION_POWER_CONNECTED);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicy.java144 filter.addAction(Intent.ACTION_ALARM_CHANGED);
145 filter.addAction(Intent.ACTION_SYNC_STATE_CHANGED);
146 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
147 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
148 filter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
149 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
150 filter.addAction(TtyIntent.TTY_ENABLED_CHANGE_ACTION);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneStateIntentReceiver.java129 mFilter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
139 mFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
149 mFilter.addAction(TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED);
H A DSmsStorageMonitor.java82 filter.addAction(Intent.ACTION_DEVICE_STORAGE_FULL);
83 filter.addAction(Intent.ACTION_DEVICE_STORAGE_NOT_FULL);
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java61 public void addAction(int icon, CharSequence title, PendingIntent intent) { method in class:NotificationCompatJellybean
62 b.addAction(icon, title, intent);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardUpdateMonitor.java305 filter.addAction(Intent.ACTION_TIME_TICK);
306 filter.addAction(Intent.ACTION_TIME_CHANGED);
307 filter.addAction(Intent.ACTION_BATTERY_CHANGED);
308 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
309 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
310 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
311 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
312 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
313 filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
314 filter.addAction(Inten
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1672 private void addAction(Action a) { method in class:RemoteViews
1698 addAction(new ViewGroupAction(viewId, nestedView));
1708 addAction(new ViewGroupAction(viewId, null));
1717 addAction(new ReflectionActionWithoutParams(viewId, "showNext"));
1726 addAction(new ReflectionActionWithoutParams(viewId, "showPrevious"));
1767 addAction(new TextViewSizeAction(viewId, units, size));
1781 addAction(new TextViewDrawableAction(viewId, false, left, top, right, bottom));
1796 addAction(new TextViewDrawableAction(viewId, true, start, top, end, bottom));
1836 addAction(new SetEmptyView(viewId, emptyViewId));
1895 addAction(ne
[all...]
H A DDateTimeView.java222 filter.addAction(Intent.ACTION_TIME_TICK);
223 filter.addAction(Intent.ACTION_TIME_CHANGED);
224 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
225 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
H A DAdapterViewFlipper.java97 filter.addAction(Intent.ACTION_SCREEN_OFF);
98 filter.addAction(Intent.ACTION_USER_PRESENT);
H A DViewFlipper.java91 filter.addAction(Intent.ACTION_SCREEN_OFF);
92 filter.addAction(Intent.ACTION_USER_PRESENT);
H A DAnalogClock.java107 filter.addAction(Intent.ACTION_TIME_TICK);
108 filter.addAction(Intent.ACTION_TIME_CHANGED);
109 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
H A DTextClock.java457 filter.addAction(Intent.ACTION_TIME_TICK);
458 filter.addAction(Intent.ACTION_TIME_CHANGED);
459 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java101 mIntentFilter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION);
102 mIntentFilter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION);
103 mIntentFilter.addAction(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION);
104 mIntentFilter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java86 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
87 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
88 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
94 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
95 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
100 userFilter.addAction(Intent.ACTION_USER_REMOVED);
101 userFilter.addAction(Intent.ACTION_USER_STOPPING);
H A DNetworkTimeUpdateService.java120 intentFilter.addAction(TelephonyIntents.ACTION_NETWORK_SET_TIME);
121 intentFilter.addAction(TelephonyIntents.ACTION_NETWORK_SET_TIMEZONE);
137 intentFilter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java88 filter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
89 filter.addAction(WifiManager.LINK_CONFIGURATION_CHANGED_ACTION);
/frameworks/base/core/java/com/android/internal/widget/
H A DDigitalClock.java192 filter.addAction(Intent.ACTION_TIME_TICK);
193 filter.addAction(Intent.ACTION_TIME_CHANGED);
194 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DClockView.java173 filter.addAction(Intent.ACTION_TIME_TICK);
174 filter.addAction(Intent.ACTION_TIME_CHANGED);
175 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);

Completed in 1775 milliseconds

12345