| /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
| ImsPhoneCall.java | 311 boolean changed = false; 315 //and ringback tone mode can be changed during the call setup procedure 333 changed = true; 335 changed = true; 342 return changed;
|
| /libcore/jsr166-tests/src/test/java/jsr166/ |
| PriorityQueueTest.java | 383 * retainAll(c) retains only those elements of c and reports true if changed 389 boolean changed = q.retainAll(p); 391 assertFalse(changed); 393 assertTrue(changed); 402 * removeAll(c) removes only those elements of c and reports true if changed
|
| /libcore/ojluni/src/main/java/java/util/zip/ |
| InflaterInputStream.java | 59 // Android-changed: closed is now protected. 104 // Android-changed: Unconditionally close external inflaters (b/26462400) 113 // Android-changed: Unconditionally close external inflaters (b/26462400) 167 // Android-changed: Eagerly set reachEOF. 236 // Android-changed: Unconditionally close external inflaters (b/26462400)
|
| /libcore/ojluni/src/main/java/sun/nio/fs/ |
| LinuxUserDefinedFileAttributeView.java | 76 // Android-changed: We don't have Unsafe.copyMemory yet, so we use getByte. 191 // Android-changed: We don't have Unsafe.copyMemory yet, so we use getByte. 236 // Android-changed: We don't have Unsafe.copyMemory yet, so we use putByte. 247 // Android-changed: We don't have Unsafe.copyMemory yet, so we use putByte. 336 // Android-changed: We don't have Unsafe.copyMemory yet, so we use getByte.
|
| /packages/apps/Camera2/src/com/android/camera/app/ |
| AppController.java | 52 * Called when the shutter state is changed to pressed. 57 * Called when the shutter state is changed to released. 153 * This gets called when mode is changed. 209 * Gets called from module when preview aspect ratio has changed. 244 * surface has changed
|
| /packages/apps/Settings/src/com/android/settings/core/ |
| BasePreferenceController.java | 80 * The setting cannot be changed by the current user. 83 * changed. 91 * settings. That is, a setting that cannot be changed because of the state of another setting. 100 * changed. 170 * @return {@code true} when the controller can be changed on the device.
|
| /packages/apps/TV/src/com/android/tv/ |
| ChannelTuner.java | 52 // is changed to mCurrentChannel(Id). 188 * @return true, if the channel is changed to the adjacent channel. If there is no browsable 305 /** Called when the browsable channel list is changed. */ 309 /** Called when the current channel is changed. */ 352 // channels are changed.
|
| /packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
| ServiceStateProvider.java | 295 * Notify interested apps that certain fields of the ServiceState have changed. 310 // for every field, if the field has changed values, notify via the provider 347 * Notify interested apps that the ServiceState has changed. 349 * Apps which want to wake when any field in the ServiceState has changed can use 360 // if the voice or data registration or roaming state field has changed values, notify via
|
| /system/bt/service/ |
| adapter.cc | 234 LOG(INFO) << "Adapter state changed: " << BtStateText(state); 256 LOG(INFO) << "Adapter properties changed"; 269 LOG(INFO) << "Adapter address changed: " << address; 276 LOG(INFO) << "Adapter name changed: " << name; 313 LOG(INFO) << "ACL state changed: " << device_address
|
| /system/bt/service/hal/ |
| bluetooth_interface.cc | 73 VLOG(1) << "Adapter state changed: " << BtStateText(state); 81 VLOG(1) << "Adapter properties changed - status: " << BtStatusText(status) 93 VLOG(1) << " Remote device properties changed - status: " 104 VLOG(1) << "Discovery state changed - state: " << BtDiscoveryStateText(state); 146 VLOG(1) << "Remote device ACL state changed - status: "
|
| /external/v8/src/compiler/ |
| js-typed-lowering.cc | 254 return lowering_->Changed(node_); 309 return lowering_->Changed(node_); 428 if (reduction.Changed()) return reduction.replacement(); 596 return Changed(node); 771 return Changed(node); 798 return Changed(node); [all...] |
| /external/wpa_supplicant_8/wpa_supplicant/dbus/ |
| dbus_new_helpers.c | 670 /* Changed properties dict */ 745 "dbus: %s: Timeout - sending changed properties of object %s", 793 * containing properties marked as changed, sends a PropertiesChanged signal 794 * containing names and new values of properties that have changed. 799 * automatically short time after first marking property as changed. All 801 * message, so if you marked a property changed as a result of DBus call 831 * wpa_dbus_mark_property_changed - Mark a property as changed and 833 * @path: path to DBus object which property has changed 834 * @interface: interface containing changed property 835 * @property: property name which has changed [all...] |
| /frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
| WifiConfigurationUtil.java | 139 * IP parameters have changed or not. 143 * @return true if IP parameters have changed, false otherwise. 159 * proxy parameters have changed or not. 163 * @return true if proxy parameters have changed, false if no existing config and proxy settings 179 * credential parameters have changed or not. 184 * @return true if credentials have changed, false otherwise. 223 * credential parameters have changed or not. 227 * @return true if credentials have changed, false otherwise. 277 // This is an update, so the SSID can be null if that is not being changed. 326 // This is an update, so the psk can be null if that is not being changed [all...] |
| /frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
| PlaybackControlsRow.java | 53 * Called when {@link PlaybackControlsRow#getCurrentPosition()} changed. 54 * @param row The PlaybackControlsRow that current time changed. 61 * Called when {@link PlaybackControlsRow#getDuration()} changed. 62 * @param row The PlaybackControlsRow that total time changed. 69 * Called when {@link PlaybackControlsRow#getBufferedPosition()} changed. 70 * @param row The PlaybackControlsRow that buffered progress changed. 804 * this row has changed.</p> 815 * this row has changed.</p> 837 * this row has changed.</p> 846 * this row has changed.</p [all...] |
| /libcore/ojluni/src/main/java/java/net/ |
| AbstractPlainSocketImpl.java | 317 // BEGIN Android-changed: Logic dealing with value type moved to socketGetOption. 370 // END Android-changed: Logic dealing with value type moved to socketGetOption. 558 // Android-changed: 582 // Android-changed(http://b/26470377): Some Android code doesn't expect file 604 // Android-changed: Notified the CloseGuard object as the fd has been released. 617 // Android-changed: b/26470377 Represent closed sockets with invalid fd, not null. 631 // Android-changed: b/26470377 Represent closed sockets with invalid fd, not null. 643 // Android-changed: b/26470377 Represent closed sockets with invalid fd, not null. 734 // Android-changed: b/26470377 Represent closed sockets with invalid fd, not null. 781 // Android-changed: Method signature changed, socket{Get,Set}Option work directly with Objec [all...] |
| /libcore/ojluni/src/main/java/java/text/ |
| RuleBasedCollator.java | 285 // BEGIN Android-changed: Switched to ICU. 301 // BEGIN Android-changed: Switched to ICU. 306 // Android-changed: document that getRules() won't return rules in common case. 318 // Android-changed: Switched to ICU. 330 // Android-changed: Switch to ICU and check for null value. 347 // Android-changed: Switch to ICU and check for null value. 367 // Android-changed: Switched to ICU. 378 // Android-changed: Switched to ICU. 389 // Android-changed: remove special case for cloning. 401 // Android-changed: delegate to super class, as that already compares icuColl [all...] |
| /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/ |
| BluetoothMapIMProvider.java | 94 * This function shall be called when any Account database content have changed 96 * @param accountId the ID of the account that changed. Null is a valid value, 97 * if accountId is unknown or multiple accounts changed. 118 * This function shall be called when any Message database content have changed 122 * @param messageId Null is a valid value, if multiple messages changed or the 150 * This function shall be called when any Message database content have changed 154 * @param contactId Null is a valid value, if multiple contacts changed or the 480 * - the FLAG_READ state can be changed. 555 * changed through this interface. 558 * @return the number of entries changed - 0 if account not found or value cannot be changed [all...] |
| /system/bt/packet/tests/avrcp/ |
| avrcp_test_packets.h | 103 // AVRCP Register Volume Changed Notification 112 // AVRCP Interim Track Changed Notification 117 // AVRCP Changed Playback Position Notification 122 // AVRCP Interim Now Playing Changed Notification 126 // AVRCP Interim Available Players Changed Notification 130 // AVRCP Interim Addressed Player Changed Notification with active 136 // AVRCP Interim UIDs Changed Notification 141 // AVRCP Interim Volume Changed Notification with volume at 55% (0x47) 145 // AVRCP Rejected Volume Changed Notification with volume at 0% 149 // AVRCP Changed Volume Changed Notification with volume at 55% (0x47 [all...] |
| /art/compiler/optimizing/ |
| ssa_liveness_analysis.cc | 255 bool changed; local 257 changed = false; 267 changed = true; 270 } while (changed); 275 bool changed = false; local 279 changed = true; 282 return changed;
|
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| CheckerContext.h | 77 bool Changed; 94 Changed(false), 120 /// \brief Check if the checker changed the state of the execution; ex: added 122 bool isDifferent() { return Changed; } 203 /// will not be changed, but the new node will have the checker's tag. 262 Changed = true; 335 Changed = true;
|
| /external/dnsmasq/src/ |
| lease.c | 113 lease->new = lease->changed = 0; 387 lease->changed = file_dirty = 1; /* run script on change */ 504 lease->changed = 1; /* run script on change */ 513 lease->changed = 1; 521 lease->changed = 1; 579 if (lease->new || lease->changed || 586 lease->new = lease->changed = lease->aux_changed = 0;
|
| /external/doclava/src/com/google/doclava/ |
| FieldInfo.java | 478 + " has changed type from " + mType + " to " + fInfo.mType); 482 + " has changed value from " + mConstantValue + " to " + fInfo.mConstantValue); 488 + " changed scope from " + this.scope() + " to " + fInfo.scope()); 494 + " has changed 'static' qualifier"); 510 + " has changed 'transient' qualifier"); 516 + " has changed 'volatile' qualifier"); 522 + " has changed deprecation state " + isDeprecated() + " --> " + fInfo.isDeprecated());
|
| /external/llvm/lib/Target/Hexagon/ |
| HexagonGenPredicate.cpp | 437 bool Changed = false; 467 Changed = true; 474 return Changed; 489 bool Changed = false; 509 Changed |= Again; 517 Changed |= eliminatePredCopies(MF); 518 return Changed;
|
| /external/llvm/lib/Target/PowerPC/ |
| PPCVSXFMAMutate.cpp | 71 bool Changed = false; 337 Changed = true; 340 return Changed; 358 bool Changed = false; 361 return Changed; 366 Changed = true; 369 return Changed;
|
| /external/skia/site/user/api/ |
| usingBookmaker.md | 11 The bot output describes what changed. 13 To fix this, edit the docs file corresponding to the changed include file. 39 <td>Something changed the examples that output text.</td> </tr> <tr> 44 The bot output describes what changed, and includes the file and line 69 <a href="#Bookmaker">Bookmaker</a> from recompiling. if SkSurface.h was not changed, it is not written, 217 The original include may have changed since you started creating the markdown. 219 This reports if a method no longer exists or its parameters have changed.
|