HomeSort by relevance Sort by last modified time
    Searched refs:needsInput (Results 1 - 25 of 38) sorted by null

1 2

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
ViewMediatorCallback.java 45 * @param needsInput
47 void setNeedsInput(boolean needsInput);
KeyguardSecurityView.java 60 boolean needsInput();
KeyguardViewBase.java 190 public void onSecurityModeChanged(SecurityMode securityMode, boolean needsInput) {
192 mViewMediatorCallback.setNeedsInput(needsInput);
420 mViewMediatorCallback.setNeedsInput(mSecurityContainer.needsInput());
KeyguardSecurityContainer.java 51 public void onSecurityModeChanged(SecurityMode securityMode, boolean needsInput);
407 securityMode != SecurityMode.None && newView.needsInput());
531 public boolean needsInput() {
532 return mSecurityViewFlipper.needsInput();
KeyguardAbsKeyInputView.java 157 public boolean needsInput() {
KeyguardSecurityViewFlipper.java 118 public boolean needsInput() {
120 return (ksv != null) ? ksv.needsInput() : false;
KeyguardAccountView.java 132 public boolean needsInput() {
KeyguardFaceUnlockView.java 169 public boolean needsInput() {
KeyguardPasswordView.java 81 public boolean needsInput() {
  /external/smack/src/org/jivesoftware/smack/compression/
Java7ZlibInputOutputStream.java 85 if (inf.needsInput()) {
102 if (!def.needsInput()) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterTest.java 209 // needsInput should never return true after finish() is called
211 assertFalse("needsInput() should return false after finish() is called", defl
212 .needsInput());
345 * java.util.zip.Deflater#needsInput()
350 "needsInput give the wrong boolean value as a result of no input buffer",
351 defl.needsInput());
355 "needsInput give wrong boolean value as a result of a full input buffer",
356 defl.needsInput());
358 while (!defl.needsInput()) {
364 "needsInput give wrong boolean value as a result of an empty input buffer"
    [all...]
InflaterTest.java 72 if (inflate.needsInput()) {
140 while (!(deflate.needsInput())) {
151 if (inflate.needsInput()) {
170 if (inflate2.needsInput()) {
197 while (!(deflate.needsInput())) {
209 if (inflate.needsInput()) {
233 if (inflate.needsInput()) {
262 if (inflate.needsInput()) {
283 while (!(defEmpty.needsInput())) {
299 if (infEmpty.needsInput()) {
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 122 * stream. If deflated bytes remain and {@link #needsInput} returns {@code
231 if (needsInput()) {
260 public synchronized boolean needsInput() {
301 * called if {@link #needsInput} returns {@code true}.
309 * called if {@link #needsInput} returns {@code true}.
DeflaterInputStream.java 127 if (def.needsInput()) {
DeflaterOutputStream.java 175 if (!def.needsInput()) {
InflaterInputStream.java 152 if (inf.needsInput()) {
Deflater.java 341 public synchronized boolean needsInput() {
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 139 if (deflater.needsInput() && inCount != 0) {
178 if (inflater.needsInput() && inCount != 0) {
DeflaterTest.java 62 assertTrue(inflater.needsInput());
InflaterTest.java 65 if (inflater.needsInput()) {
  /external/okhttp/okio/src/main/java/okio/
InflaterSource.java 90 if (!inflater.needsInput()) return false;
DeflaterSink.java 88 } else if (deflater.needsInput()) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarKeyguardViewManager.java 184 public void setNeedsInput(boolean needsInput) {
185 mStatusBarWindowManager.setKeyguardNeedsInput(needsInput);
StatusBarWindowManager.java 181 public void setKeyguardNeedsInput(boolean needsInput) {
182 mCurrentState.keyguardNeedsInput = needsInput;
  /external/okhttp/okio/src/test/java/okio/
DeflaterSinkTest.java 122 while (!inflater.needsInput() || deflated.size() > 0 || deflatedIn.available() > 0) {

Completed in 5028 milliseconds

1 2