HomeSort by relevance Sort by last modified time
    Searched full:sticky (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /frameworks/base/services/java/com/android/server/am/
BroadcastRecord.java 44 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
45 final boolean initialSticky; // initial broadcast from register to sticky?
81 if (sticky) {
113 if (resultAbort || ordered || sticky || initialSticky) {
116 pw.print(" sticky="); pw.print(sticky);
177 sticky = _sticky;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
BroadcastTest.java 312 Intent sticky = getContext().registerReceiver(null, filter); local
313 assertNotNull("Sticky not found", sticky);
314 assertEquals(LaunchpadActivity.DATA_1, sticky.getStringExtra("test"));
327 Intent sticky = getContext().registerReceiver(null, filter); local
328 assertNull("Sticky not found", sticky);
341 Intent sticky = getContext().registerReceiver(null, filter); local
342 assertNotNull("Sticky not found", sticky);
    [all...]
  /frameworks/base/core/java/android/content/
IIntentReceiver.aidl 31 String data, in Bundle extras, boolean ordered, boolean sticky);
BroadcastReceiver.java 396 * value of a sticky broadcast -- that is, the value that was last
397 * broadcast and is currently held in the sticky cache, so this is
414 * receiving the initial sticky broadcast value. @hide
443 // Note that we don't assert when receiving the initial sticky value,
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 245 /** Whether this key is sticky, i.e., a toggle key */
246 public boolean sticky; field in class:Keyboard.Key
253 /** If this is a sticky key, is it on? */
370 sticky = a.getBoolean(
399 * Changes the pressed state of the key. If it is a sticky key, it will also change the
406 if (sticky) {
483 if (sticky) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNetworkMonitor.java 43 boolean ordered, boolean sticky) throws RemoteException {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 71 // stopped, so return sticky.
ForegroundService.java 149 // stopped, so return sticky.
  /frameworks/base/core/java/android/os/
ConditionVariable.java 25 * open(), close() and block() are sticky. If open() is called before block(),
  /packages/apps/Camera/src/com/android/camera/
BitmapManager.java 38 * <p>{@code cancelThreadDecoding(Thread,ContentResolver)} is sticky until
  /packages/apps/Contacts/src/com/android/contacts/
StickyTabs.java 26 * Utility class to annotate Intents with extra data required for the Sticky-Tab behavior, which
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 72 // Bluetooth state is not sticky, so set it manually
BluetoothEventRedirector.java 184 // This works only because these broadcast intents are "sticky"
  /frameworks/base/core/java/android/hardware/usb/
UsbManager.java 48 * Broadcast Action: A sticky broadcast for USB state change events when in device mode.
50 * This is a sticky broadcast for clients that includes USB connected/disconnected state,
  /frameworks/base/telephony/java/com/android/internal/telephony/
TelephonyIntents.java 195 * This is a sticky broadcast.
212 * This is a sticky broadcast.
  /dalvik/vm/compiler/
Ralloc.c 58 * Quick & dirty - make FP usage sticky. This is strictly a hint - local
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetProvider.java 81 // This setting is sticky across reboots, but that doesn't matter, because this will
  /external/chromium/net/ftp/
ftp_directory_listing_parser_ls.cc 23 // t or T - "sticky" bit set
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 324 boolean sticky = data.readInt() != 0;
326 resultCode, dataStr, extras, ordered, sticky);
741 int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky)
751 data.writeInt(sticky ? 1 : 0);
IApplicationThread.java 94 int resultCode, String data, Bundle extras, boolean ordered, boolean sticky)
LoadedApk.java 627 String data, Bundle extras, boolean ordered, boolean sticky) {
636 ordered, sticky);
795 String data, Bundle extras, boolean ordered, boolean sticky) {
807 args.mCurSticky = sticky;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 36 * cancelThreadDecoding() is sticky until allowThreadDecoding() is called.
  /packages/apps/Gallery3D/src/com/cooliris/media/
BitmapManager.java 34 * cancelThreadDecoding() is sticky until allowThreadDecoding() is called.
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiEnabler.java 74 // Wi-Fi state is sticky, so just let the receiver update UI
  /external/webkit/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 294 ic->enableResourceTracking(false /* not sticky */, false /* no reload */);
296 ic->disableResourceTracking(false /* not sticky */);

Completed in 501 milliseconds

1 2 3 4