HomeSort by relevance Sort by last modified time
    Searched refs:finished (Results 51 - 75 of 228) sorted by null

1 23 4 5 6 7 8 910

  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texi2dvi 589 finished=t
597 finished=
607 test "x$orig_xref_files" != "x$new_xref_files" && finished=
611 if test -n "$finished"; then
619 finished=
627 # If finished, exit the loop, else rerun the loop.
628 test -n "$finished" && break
  /external/openssl/crypto/pkcs7/
bio_ber.c 97 int finished; /* No more read data */ member in struct:bio_ber_struct
238 if (ctx->finished) return(0);
261 ctx->finished=1;
341 ctx->finished=0;
375 if (!ctx->finished)
377 ctx->finished=1;
  /frameworks/base/test-runner/src/android/test/
TestPrinter.java 54 public void finished(String className) { method in class:TestPrinter
56 Log.i(mTag, "finished: " + className);
102 finished(test.toString());
TestRunner.java 111 finished(test.toString());
153 void finished(String className); method in interface:TestRunner.Listener
188 private void finished(String className) { method in class:TestRunner
191 mListeners.get(i).finished(className);
272 finished(className);
322 finished(className);
359 finished(test.toString());
512 finished(test.toString());
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 157 if (!def.finished()) {
176 while (!def.finished()) {
DeflaterInputStream.java 126 while (count < byteCount && !def.finished()) {
  /external/chromium/chrome/browser/ui/cocoa/
status_bubble_mac.h 57 void AnimationDidStop(CAAnimation* animation, bool finished);
  /external/ppp/pppd/
fsm.h 108 void (*finished) /* Called when we don't want the lower layer */ member in struct:fsm_callbacks
  /external/webkit/Source/WebCore/storage/
IDBTransaction.h 58 bool finished() const;
104 bool m_finished; // Is it possible that we'll fire any more events or allow any new transactions? If not, we're finished.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
mce.h 40 __u8 finished; /* entry is valid */ member in struct:mce
47 * debugging tools. Each entry is only valid when its finished flag
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
mce.h 40 __u8 finished; /* entry is valid */ member in struct:mce
47 * debugging tools. Each entry is only valid when its finished flag
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
mce.h 40 __u8 finished; /* entry is valid */ member in struct:mce
47 * debugging tools. Each entry is only valid when its finished flag
  /external/openssl/crypto/evp/
bio_enc.c 80 int cont; /* <= 0 when finished */
81 int finished; member in struct:enc_struct
119 ctx->finished=0;
300 ctx->finished=0;
331 if (!ctx->finished)
333 ctx->finished=1;
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 64 * @tests java.util.zip.Inflater#finished()
67 // test method of java.util.zip.inflater.finished()
72 while (!(inflate.finished())) {
80 "the method finished() returned false when no more data needs to be decompressed",
81 inflate.finished());
90 assertEquals("final decompressed data contained more bytes than original - finished()",
145 while (!(deflate.finished())) {
151 while (!(inflate.finished())) {
202 while (!(deflate.finished())) {
209 while (!(inflate.finished())) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.cpp 602 void MediaPlayerPrivateAVFoundation::seekCompleted(bool finished)
604 LOG(Media, "MediaPlayerPrivateAVFoundation::seekCompleted(%p) - finished = %d", this, finished);
606 if (finished)
676 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification::Type type, bool finished)
678 scheduleMainThreadNotification(Notification(type, finished));
769 seekCompleted(notification.finished());
  /external/arduino/hardware/arduino/cores/arduino/
WInterrupts.c 96 #error attachInterrupt not finished for this CPU (case 0)
159 #error detachInterrupt not finished for this cpu
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 86 static jfieldID finished = env->GetFieldID(JniConstants::deflaterClass, "finished", "Z"); local
87 env->SetBooleanField(recv, finished, JNI_TRUE);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 135 while (!deflater.finished()) {
174 while (!inflater.finished()) {
  /external/junit/src/org/junit/experimental/
ParallelComputer.java 52 public void finished() {
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 124 void finished();
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.h 61 void (*finished)(void *ctx, void *sta_ctx, int success, int preauth); member in struct:eapol_auth_cb
  /external/smack/src/org/jivesoftware/smackx/
PrivateDataManager.java 297 boolean finished = false;
298 while (!finished) {
317 finished = true;
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 93 // internal status indicates encode(CharBuffer) operation is finished
94 private boolean finished; field in class:CharsetEncoder
314 finished = true;
405 if (status == READY && finished && !endOfInput) {
  /libcore/luni/src/main/java/java/util/
Timer.java 175 private boolean finished; field in class:Timer.TimerImpl
209 if (finished) {
333 impl.finished = true;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageMeasurement.java 227 Message finished, int remaining) {
231 mFinished = finished;
400 final Message finished = obtainMessage(MSG_COMPLETED, details); local
448 mIsInternal, details, currentUser, finished, count);
457 finished.sendToTarget();

Completed in 481 milliseconds

1 23 4 5 6 7 8 910