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

1 2 3

  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
callback_tracker_unittest.cc 25 bool aborted = false; local
27 base::Closure callback = tracker.Register(base::Bind(&Receiver, &aborted),
30 EXPECT_TRUE(aborted);
34 EXPECT_TRUE(aborted);
41 bool aborted = false; local
43 base::Closure callback = tracker.Register(base::Bind(&Receiver, &aborted),
46 EXPECT_FALSE(aborted);
55 EXPECT_FALSE(aborted);
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThreadAborter.java 37 private boolean aborted; field in class:WaitingThreadAborter
43 aborted = true;
51 * Sets the waiting thread. If this has already been aborted,
58 if (aborted)
WaitingThread.java 63 private boolean aborted; field in class:WaitingThread
149 if (aborted)
162 if (aborted)
192 aborted = true;
  /external/chromium_org/third_party/skia/include/core/
SkDocument.h 68 * Its aborted parameter is true if the cleanup is due to an abort
79 SkWStream*, void (*Done)(SkWStream*,bool aborted) = NULL,
114 SkDocument(SkWStream*, void (*)(SkWStream*, bool aborted));
134 void (*fDoneProc)(SkWStream*, bool aborted);
  /external/skia/include/core/
SkDocument.h 68 * Its aborted parameter is true if the cleanup is due to an abort
79 SkWStream*, void (*Done)(SkWStream*,bool aborted) = NULL,
114 SkDocument(SkWStream*, void (*)(SkWStream*, bool aborted));
134 void (*fDoneProc)(SkWStream*, bool aborted);
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 64 private boolean aborted; field in class:HttpRequestBase
107 if (this.aborted) {
108 throw new IOException("Request already aborted");
122 if (this.aborted) {
123 throw new IOException("Request already aborted");
139 if (this.aborted) {
142 this.aborted = true;
167 return this.aborted;
174 clone.aborted = false;
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractClientConnAdapter.java 99 /** True if the connection has been aborted. */
100 private volatile boolean aborted; field in class:AbstractClientConnAdapter
120 aborted = false;
144 * Asserts that the connection has not been aborted.
146 * @throws InterruptedIOException if the connection has been aborted
149 if (aborted) {
158 * or connection has been aborted
179 if (aborted)
372 if (aborted) {
375 aborted = true
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-death-test_test.cc 568 // On exit, *aborted will be true iff the EXPECT_DEATH() statement
569 // aborted the function.
570 void ExpectDeathTestHelper(bool* aborted) {
571 *aborted = true;
573 *aborted = false;
578 bool aborted = true; local
579 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted),
581 EXPECT_FALSE(aborted);
586 static bool aborted; local
588 aborted = true
695 bool aborted = true; local
709 static bool aborted; local
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 568 // On exit, *aborted will be true iff the EXPECT_DEATH() statement
569 // aborted the function.
570 void ExpectDeathTestHelper(bool* aborted) {
571 *aborted = true;
573 *aborted = false;
578 bool aborted = true; local
579 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted),
581 EXPECT_FALSE(aborted);
586 static bool aborted; local
588 aborted = true
695 bool aborted = true; local
709 static bool aborted; local
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 504 // On exit, *aborted will be true iff the EXPECT_DEATH() statement
505 // aborted the function.
506 void ExpectDeathTestHelper(bool* aborted) {
507 *aborted = true;
509 *aborted = false;
514 bool aborted = true; local
515 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted),
517 EXPECT_FALSE(aborted);
522 static bool aborted; local
524 aborted = true
635 bool aborted = true; local
649 static bool aborted; local
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-death-test_test.cc 569 // On exit, *aborted will be true iff the EXPECT_DEATH() statement
570 // aborted the function.
571 void ExpectDeathTestHelper(bool* aborted) {
572 *aborted = true;
574 *aborted = false;
579 bool aborted = true; local
580 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted),
582 EXPECT_FALSE(aborted);
587 static bool aborted; local
589 aborted = true
696 bool aborted = true; local
710 static bool aborted; local
    [all...]
  /external/chromium_org/sync/internal_api/
http_bridge.cc 81 // Uh oh. We've been aborted before we finished initializing. There's no
176 aborted(false),
262 // Block until network request completes or is aborted. See
267 DCHECK(fetch_state_.request_completed || fetch_state_.aborted);
277 if (fetch_state_.aborted)
324 DCHECK(!fetch_state_.aborted);
325 if (fetch_state_.aborted || fetch_state_.request_completed)
328 fetch_state_.aborted = true;
350 if (fetch_state_.aborted)
  /external/chromium_org/ppapi/shared_impl/
tracked_callback.h 40 // be aborted, any subsequent completion is abortive (even if a non-abortive
59 // be aborted (by looking at |aborted()| before running the callback).
71 // immediately marking the callback as to be aborted).
76 // marked as to be aborted (by |PostAbort()|), |result| will be ignored and
90 // far, e.g. whether the callback has been aborted. If the callback hasn't
91 // been aborted the return value of the task will become the callback result.
103 // Returns true if the callback was completed (possibly aborted).
106 // Returns true if the callback was or should be aborted; this will be the
109 bool aborted() const { return aborted_; function in class:ppapi::TrackedCallback
    [all...]
tracked_callback.cc 91 // where the callback was previously Aborted because its associated Resource
104 if (aborted())
194 if (callback->aborted())
  /external/chromium_org/third_party/skia/src/doc/
SkDocument_PDF.cpp 95 static void delete_wstream(SkWStream* stream, bool aborted) {
  /external/skia/src/doc/
SkDocument_PDF.cpp 95 static void delete_wstream(SkWStream* stream, bool aborted) {
  /external/chromium_org/base/mac/
sdk_forward_declarations.h 169 aborted:(BOOL)aborted;
  /external/chromium_org/content/test/data/indexeddb/
transaction_test.js 24 debug('The transaction was aborted.');
quota_test.js 92 done("Transaction aborted. Data added: " + displaySize(dataAdded));
  /external/qemu-pc-bios/bochs/bios/
notes 26 > drive sets the aborted-command bit in the Error register and
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator_unittest.cc 70 base::WaitableEvent* aborted,
80 aborted->Wait();
83 EXPECT_EQ("datatype error was encountered: Association was aborted.",
415 base::WaitableEvent aborted(false, false);
423 &CreateModelAssociatorAsync, &startup, &aborted, &done, &associator,
431 aborted.Signal();
  /external/chromium_org/ppapi/proxy/
file_mapping_resource.cc 140 if (callback->aborted()) {
  /external/chromium_org/sync/internal_api/public/
http_bridge.h 196 bool aborted; member in struct:syncer::HttpBridge::URLFetchState
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_thread.py 459 aborted = self.env.lock_detect(
461 if verbose and aborted:
462 print "deadlock: Aborted %d deadlocked transaction(s)" \
463 % aborted
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_thread.py 459 aborted = self.env.lock_detect(
461 if verbose and aborted:
462 print "deadlock: Aborted %d deadlocked transaction(s)" \
463 % aborted

Completed in 932 milliseconds

1 2 3