HomeSort by relevance Sort by last modified time
    Searched refs:finished (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 163 boolean finished = false;
168 finished = IoBridge.connect(fd, normalAddr, port);
169 isBound = finished;
176 finished = true;
182 end(finished);
195 status = (finished ? SOCKET_STATUS_CONNECTED : SOCKET_STATUS_UNCONNECTED);
200 return finished;
232 boolean finished = false;
237 finished = IoBridge.isConnected(fd, inetAddress, port, 0, 0); // Return immediately.
238 isBound = finished;
    [all...]
  /external/valgrind/main/drd/tests/
atomic_var.stderr.exp 10 Test finished.
pth_cancel_locked.stderr.exp 9 Test finished.
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.mm 67 - (id)initWithManager:(WebKit::WebFullScreenManager*)manager began:(AnimationBeganFunction)began finished:(AnimationFinishedFunction)finished;
69 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag;
74 - (id)initWithManager:(WebKit::WebFullScreenManager*)manager began:(AnimationBeganFunction)began finished:(AnimationFinishedFunction)finished
82 _finished = finished;
92 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
121 m_enterFullScreenListener.adoptNS([[WebFullScreenManagerAnimationListener alloc] initWithManager:this began:&WebFullScreenManagerMac::beganEnterFullScreenAnimation finished:&WebFullScreenManagerMac::finishedEnterFullScreenAnimation]);
122 m_exitFullScreenListener.adoptNS([[WebFullScreenManagerAnimationListener alloc] initWithManager:this began:&WebFullScreenManagerMac::beganExitFullScreenAnimation finished:&WebFullScreenManagerMac::finishedExitFullScreenAnimation]);
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 98 assertFalse(inflater.finished());
100 assertTrue(inflater.finished());
112 while (!deflater.finished()) {
OldAndroidDeflateTest.java 135 while (!deflater.finished()) {
174 while (!inflater.finished()) {
  /libcore/luni/src/main/java/java/util/zip/
Deflater.java 40 * while (!deflater.finished()) {
136 private boolean finished; field in class:Deflater
289 * @see #finished
300 public synchronized boolean finished() { method in class:Deflater
301 return finished;
351 * operation <i>must</i> be called after {@link #finished} returns
357 finished = false;
DeflaterOutputStream.java 155 if (!def.finished()) {
174 while (!def.finished()) {
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model_unittest.cc 70 int finished() const { return finished_;} function in class:UTObserver
105 EXPECT_EQ(kDiagnosticsTestCount, observer.finished());
  /external/ppp/pppd/
fsm.c 232 if( f->callbacks->finished )
233 (*f->callbacks->finished)(f);
294 if( f->callbacks->finished )
295 (*f->callbacks->finished)(f);
311 if( (f->flags & OPT_PASSIVE) == 0 && f->callbacks->finished )
312 (*f->callbacks->finished)(f);
651 if( f->callbacks->finished )
652 (*f->callbacks->finished)(f);
657 if( f->callbacks->finished )
658 (*f->callbacks->finished)(f)
    [all...]
fsm.h 108 void (*finished) /* Called when we don't want the lower layer */ member in struct:fsm_callbacks
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 88 Notification(Type type, bool finished)
91 , m_finished(finished)
98 bool finished() { return m_finished; } function in class:WebCore::MediaPlayerPrivateAVFoundation::Notification
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());
  /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());
  /external/chromium/chrome/browser/ui/cocoa/
status_bubble_mac.h 57 void AnimationDidStop(CAAnimation* animation, bool finished);
  /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.
  /prebuilt/linux-x86/toolchain/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
  /external/dbus/dbus/
dbus-signature.c 38 unsigned int finished : 1; /**< true if we are at the end iter */ member in struct:__anon5483
73 real_iter->finished = FALSE;
168 if (real_iter->finished)
176 real_iter->finished = TRUE;
187 real_iter->finished = TRUE;
  /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...]
  /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);
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 124 void finished();

Completed in 759 milliseconds

12 3 4 5 6 7