/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 | 314 Intent sticky = getContext().registerReceiver(null, filter); in testSetSticky() local 315 assertNotNull("Sticky not found", sticky); in testSetSticky() 316 assertEquals(LaunchpadActivity.DATA_1, sticky.getStringExtra("test")); in testSetSticky() 330 Intent sticky = getContext().registerReceiver(null, filter); in testClearSticky() local 331 assertNull("Sticky not found", sticky); in testClearSticky() 344 Intent sticky = getContext().registerReceiver(null, filter); in testReplaceSticky() local 345 assertNotNull("Sticky not found", sticky); in testReplaceSticky() 346 assertEquals(LaunchpadActivity.DATA_2, sticky.getStringExtra("test")); in testReplaceSticky()
|
/frameworks/base/services/java/com/android/server/am/ |
D | BroadcastRecord.java | 47 final boolean sticky; // originated from existing sticky data? field in BroadcastRecord 126 if (resultAbort || ordered || sticky || initialSticky) { in dump() 129 pw.print(" sticky="); pw.print(sticky); in dump() 198 sticky = _sticky; in BroadcastRecord()
|
D | BroadcastQueue.java | 416 boolean ordered, boolean sticky, int sendingUser) throws RemoteException { in performReceiveLocked() argument 422 data, extras, ordered, sticky, sendingUser, app.repProcState); in performReceiveLocked() 425 sticky, sendingUser); in performReceiveLocked()
|
D | ActivityManagerService.java | 5180 boolean sticky, int sendingUser) { in finishBooting() 9250 boolean sticky, int sendingUser) { 9420 Bundle extras, boolean ordered, boolean sticky, int sendingUser) 13064 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null; in registerReceiver() local 13067 + ": " + sticky); in registerReceiver() 13070 return sticky; in registerReceiver() 13084 return sticky; in registerReceiver() 13128 return sticky; in registerReceiver() 13271 boolean ordered, boolean sticky, int callingPid, int callingUid, in broadcastIntentLocked() argument 13279 TAG, (sticky ? "Broadcast sticky: ": "Broadcast: ") + intent in broadcastIntentLocked() [all …]
|
/frameworks/base/core/java/android/content/ |
D | IIntentReceiver.aidl | 31 in Bundle extras, boolean ordered, boolean sticky, int sendingUser); in performReceive() argument
|
D | BroadcastReceiver.java | 250 int type, boolean ordered, boolean sticky, IBinder token, int userId) { in PendingResult() argument 256 mInitialStickyHint = sticky; in PendingResult()
|
D | IntentSender.java | 118 Bundle extras, boolean serialized, boolean sticky, int sendingUser) { 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 | 675 Bundle extras, boolean ordered, boolean sticky, int sendingUser) { in performReceive() argument 684 ordered, sticky, sendingUser); in performReceive() 720 boolean ordered, boolean sticky, int sendingUser) { in Args() argument 723 ordered, sticky, mIIntentReceiver.asBinder(), sendingUser); in Args() 835 Bundle extras, boolean ordered, boolean sticky, int sendingUser) { in performReceive() argument 842 sticky, sendingUser); in performReceive()
|
D | IApplicationThread.java | 113 boolean sticky, int sendingUser, int processState) throws RemoteException; in scheduleRegisteredReceiver() argument
|
D | ApplicationThreadNative.java | 391 boolean sticky = data.readInt() != 0; in onTransact() 395 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState); in onTransact() 1047 boolean sticky, int sendingUser, int processState) throws RemoteException { in scheduleRegisteredReceiver() argument 1056 data.writeInt(sticky ? 1 : 0); in scheduleRegisteredReceiver()
|
D | PendingIntent.java | 179 Bundle extras, boolean serialized, boolean sticky, int sendingUser) { in performReceive() argument
|
D | IActivityManager.java | 93 int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException; in broadcastIntent() argument
|
D | ActivityThread.java | 344 boolean ordered, boolean sticky, IBinder token, int sendingUser) { in ReceiverData() argument 345 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky, in ReceiverData() 814 boolean sticky, int sendingUser, int processState) throws RemoteException { in scheduleRegisteredReceiver() argument 817 sticky, sendingUser); in scheduleRegisteredReceiver()
|
D | ActivityManagerNative.java | 353 boolean sticky = data.readInt() != 0; in onTransact() 357 serialized, sticky, userId); in onTransact() 2355 boolean sticky, int userId) throws RemoteException in broadcastIntent() argument 2370 data.writeInt(sticky ? 1 : 0); in broadcastIntent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BatteryMeterView.java | 153 final Intent sticky = getContext().registerReceiver(mTracker, filter); in onAttachedToWindow() local 154 if (sticky != null) { in onAttachedToWindow() 156 mTracker.onReceive(getContext(), sticky); in onAttachedToWindow() local
|
/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 | 1449 boolean ordered, boolean sticky, int sendingUser) { in performReceive() argument
|
/frameworks/base/docs/html/tools/sdk/ |
D | eclipse-adt.jd | 717 <li>Fixed issue with sticky error markers in Java files.</li>
|
/frameworks/base/services/java/com/android/server/pm/ |
D | PackageManagerService.java | 11294 Bundle extras, boolean ordered, boolean sticky, in unloadMediaPackages()
|
/frameworks/base/api/ |
D | current.txt | 11315 field public boolean sticky;
|