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

1 2

  /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 43 private boolean aborted; field in class:WaitingThreadAborter
49 aborted = true;
57 * Sets the waiting thread. If this has already been aborted,
64 if (aborted)
WaitingThread.java 68 private boolean aborted; field in class:WaitingThread
154 if (aborted)
167 if (aborted)
197 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/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 69 private boolean aborted; field in class:HttpRequestBase
112 if (this.aborted) {
113 throw new IOException("Request already aborted");
127 if (this.aborted) {
128 throw new IOException("Request already aborted");
144 if (this.aborted) {
147 this.aborted = true;
172 return this.aborted;
179 clone.aborted = false;
  /external/chromium_org/testing/gtest/test/
gtest-death-test_test.cc 563 // On exit, *aborted will be true iff the EXPECT_DEATH() statement
564 // aborted the function.
565 void ExpectDeathTestHelper(bool* aborted) {
566 *aborted = true;
568 *aborted = false;
573 bool aborted = true; local
574 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted),
576 EXPECT_FALSE(aborted);
581 static bool aborted; local
583 aborted = true
690 bool aborted = true; local
707 static bool aborted; local
714 static bool aborted; local
721 static bool aborted; local
728 static bool aborted; local
735 static bool aborted; local
742 static bool aborted; local
749 static bool aborted; local
756 static bool aborted; local
763 static bool aborted; local
770 static bool aborted; local
    [all...]
gtest_unittest.cc 1228 bool aborted = true; local
4626 bool aborted = true; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractClientConnAdapter.java 104 /** True if the connection has been aborted. */
105 private volatile boolean aborted; field in class:AbstractClientConnAdapter
125 aborted = false;
149 * Asserts that the connection has not been aborted.
151 * @throws InterruptedIOException if the connection has been aborted
154 if (aborted) {
163 * or connection has been aborted
184 if (aborted)
377 if (aborted) {
380 aborted = true
    [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...]
gtest_unittest.cc 1235 bool aborted = true; local
4542 bool aborted = true; local
    [all...]
  /external/chromium_org/sync/internal_api/
http_bridge.cc 80 // Uh oh. We've been aborted before we finished initializing. There's no
175 aborted(false),
261 // Block until network request completes or is aborted. See
266 DCHECK(fetch_state_.request_completed || fetch_state_.aborted);
276 if (fetch_state_.aborted)
323 DCHECK(!fetch_state_.aborted);
324 if (fetch_state_.aborted || fetch_state_.request_completed)
327 fetch_state_.aborted = true;
349 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/chromium_org/base/mac/
sdk_forward_declarations.h 193 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/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator_unittest.cc 70 base::WaitableEvent* aborted,
80 aborted->Wait();
83 EXPECT_EQ("Association was aborted.", error.message());
414 base::WaitableEvent aborted(false, false);
422 &CreateModelAssociatorAsync, &startup, &aborted, &done, &associator,
430 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
  /external/chromium_org/third_party/webrtc/tools/rtcbot/
test.js 33 var error = new Error(error || "Test aborted");
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.js 58 // Handler that gets called if the NaCl module load is aborted.
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 2641 bool aborted() { return aborted_; } function in class:v8::internal::OutputStreamWriter
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 269 final AtomicBoolean aborted = new AtomicBoolean(); local
274 aborted.set(true);
290 assertFalse(aborted.get()); // The best behavior is ambiguous, but RI 6 doesn't abort here
    [all...]
  /external/chromium_org/extensions/renderer/resources/
web_view_events.js 296 'The load has aborted with reason "%1".';

Completed in 687 milliseconds

1 2