/frameworks/base/docs/html/intl/ja/training/monitoring-device-state/ |
D | docking-monitoring.jd | 36 <p>ホルダー装着状態も sticky {@link android.content.Intent} としてブロードキャストされるので、端末がホルダーに装着されているかどうかと、装着されている場合の… 41 …@link android.content.Intent#ACTION_DOCK_EVENT} アクションの sticky ブロードキャストにエクストラとして含まれています。これは sticky …
|
D | battery-monitoring.jd | 39 <p>初めに、現在の充電状態を特定します。{@link android.os.BatteryManager} によって電池と充電状態に関するすべての詳細情報が sticky {@link andro… 41 <p>これは sticky インテントであるため、{@link android.content.BroadcastReceiver} を登録する必要はありません。{@code registerRec…
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | BroadcastTest.java | 313 Intent sticky = getContext().registerReceiver(null, filter); in testSetSticky() local 314 assertNotNull("Sticky not found", sticky); in testSetSticky() 315 assertEquals(LaunchpadActivity.DATA_1, sticky.getStringExtra("test")); in testSetSticky() 329 Intent sticky = getContext().registerReceiver(null, filter); in testClearSticky() local 330 assertNull("Sticky not found", sticky); in testClearSticky() 343 Intent sticky = getContext().registerReceiver(null, filter); in testReplaceSticky() local 344 assertNotNull("Sticky not found", sticky); in testReplaceSticky() 345 assertEquals(LaunchpadActivity.DATA_2, sticky.getStringExtra("test")); in testReplaceSticky()
|
/frameworks/base/services/java/com/android/server/am/ |
D | BroadcastRecord.java | 45 final boolean sticky; // originated from existing sticky data? field in BroadcastRecord 84 if (sticky) { in dump() 118 if (resultAbort || ordered || sticky || initialSticky) { in dump() 121 pw.print(" sticky="); pw.print(sticky); in dump() 184 sticky = _sticky; in BroadcastRecord()
|
D | BroadcastQueue.java | 357 boolean ordered, boolean sticky) throws RemoteException { in performReceiveLocked() argument 363 data, extras, ordered, sticky); in performReceiveLocked() 365 receiver.performReceive(intent, resultCode, data, extras, ordered, sticky); in performReceiveLocked()
|
D | ActivityManagerService.java | 7506 boolean sticky) { in systemReady() 12700 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null; in registerReceiver() local 12703 + ": " + sticky); in registerReceiver() 12706 return sticky; in registerReceiver() 12721 return sticky; in registerReceiver() 12752 return sticky; in registerReceiver() 12825 boolean ordered, boolean sticky, int callingPid, int callingUid, in broadcastIntentLocked() argument 12833 TAG, (sticky ? "Broadcast sticky: ": "Broadcast: ") + intent in broadcastIntentLocked() 12953 if (sticky) { in broadcastIntentLocked() 13039 ordered, sticky, false); in broadcastIntentLocked() [all …]
|
/frameworks/compile/libbcc/runtime/lib/i386/ |
D | floatundisf.S | 62 sticky: .quad 0x0000000000000000 label 67 #define STICKY sticky-0b(%ecx,%eax,8)
|
/frameworks/base/core/java/android/content/ |
D | IIntentReceiver.aidl | 31 String data, in Bundle extras, boolean ordered, boolean sticky); in performReceive() argument
|
D | BroadcastReceiver.java | 249 int type, boolean ordered, boolean sticky, IBinder token) { in PendingResult() argument 255 mInitialStickyHint = sticky; in PendingResult()
|
D | IntentSender.java | 117 String data, Bundle extras, boolean serialized, boolean sticky) { in performReceive() argument
|
/frameworks/base/docs/html/training/monitoring-device-state/ |
D | docking-monitoring.jd | 41 <p>The dock state is also broadcast as a sticky {@link android.content.Intent}, allowing you to 47 <p>The dock-state details are included as an extra in a sticky broadcast of the {@link 48 android.content.Intent#ACTION_DOCK_EVENT} action. Because it's sticky, you don't need to register a
|
D | battery-monitoring.jd | 47 broadcasts all battery and charging details in a sticky {@link android.content.Intent} that includes 50 <p>Because it's a sticky intent, you don't need to register a {@link
|
/frameworks/base/core/java/android/app/ |
D | LoadedApk.java | 671 String data, Bundle extras, boolean ordered, boolean sticky) { in performReceive() argument 680 ordered, sticky); in performReceive() 716 boolean ordered, boolean sticky) { in Args() argument 719 ordered, sticky, mIIntentReceiver.asBinder()); in Args() 831 String data, Bundle extras, boolean ordered, boolean sticky) { in performReceive() argument 837 Args args = new Args(intent, resultCode, data, extras, ordered, sticky); in performReceive()
|
D | ApplicationThreadNative.java | 380 boolean sticky = data.readInt() != 0; in onTransact() 382 resultCode, dataStr, extras, ordered, sticky); in onTransact() 993 int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) in scheduleRegisteredReceiver() argument 1003 data.writeInt(sticky ? 1 : 0); in scheduleRegisteredReceiver()
|
D | IApplicationThread.java | 108 int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) in scheduleRegisteredReceiver() argument
|
D | PendingIntent.java | 150 String data, Bundle extras, boolean serialized, boolean sticky) { in performReceive() argument
|
D | IActivityManager.java | 84 boolean serialized, boolean sticky, int userId) throws RemoteException; in broadcastIntent() argument
|
D | ActivityThread.java | 316 boolean ordered, boolean sticky, IBinder token) { in ReceiverData() argument 317 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky, token); in ReceiverData() 770 boolean sticky) throws RemoteException { in scheduleRegisteredReceiver() argument 771 receiver.performReceive(intent, resultCode, dataStr, extras, ordered, sticky); in scheduleRegisteredReceiver()
|
D | ActivityManagerNative.java | 316 boolean sticky = data.readInt() != 0; in onTransact() 320 serialized, sticky, userId); in onTransact() 1978 boolean sticky, int userId) throws RemoteException in broadcastIntent() argument 1992 data.writeInt(sticky ? 1 : 0); in broadcastIntent()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | Keyboard.java | 251 public boolean sticky; field in Keyboard.Key 375 sticky = a.getBoolean( in Key() 411 if (sticky) { in onReleased() 488 if (sticky) { in getCurrentDrawableState()
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
D | Am.java | 1138 boolean sticky) { in performReceive() argument
|
/frameworks/base/services/java/com/android/server/pm/ |
D | PackageManagerService.java | 9134 Bundle extras, boolean ordered, boolean sticky) throws RemoteException { in unloadMediaPackages()
|
/frameworks/base/api/ |
D | 14.txt | 9950 field public boolean sticky;
|
D | 15.txt | 9986 field public boolean sticky;
|
D | current.txt | 10290 field public boolean sticky;
|