/frameworks/base/services/java/com/android/server/am/ |
BroadcastRecord.java | 43 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord 44 final boolean initialSticky; // initial broadcast from register to sticky? 78 if (sticky) { 110 if (resultAbort || ordered || sticky || initialSticky) { 112 + " ordered=" + ordered + " sticky=" + sticky 171 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,
|
IntentSender.java | 116 String data, Bundle extras, boolean serialized, boolean sticky) {
|
Context.java | [all...] |
/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? */ 366 sticky = a.getBoolean( 395 * Changes the pressed state of the key. If it is a sticky key, it will also change the 402 if (sticky) { 479 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/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/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
|
/frameworks/base/core/java/android/app/ |
ApplicationThreadNative.java | 324 boolean sticky = data.readInt() != 0; 326 resultCode, dataStr, extras, ordered, sticky); 740 int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) 750 data.writeInt(sticky ? 1 : 0);
|
IApplicationThread.java | 94 int resultCode, String data, Bundle extras, boolean ordered, boolean sticky)
|
/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 */);
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
XmlKeyboardLoader.java | 190 * Attribute tag used to indicate whether this soft keyboard is sticky. A 191 * sticky soft keyboard will keep the current layout unless user makes a 192 * switch explicitly. A none sticky soft keyboard will automatically goes [all...] |
/external/stlport/stlport/stl/ |
_fstream.c | 480 // returns eof. Error mode is sticky; it is cleared only by close or 561 * Don't enter error mode for a failed read. Error mode is sticky, 575 // returns eof. Error mode is sticky; it is cleared only by close or
|