HomeSort by relevance Sort by last modified time
    Searched defs:aborted (Results 1 - 25 of 32) 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 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/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...]
  /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/sync/internal_api/public/
http_bridge.h 196 bool aborted; member in struct:syncer::HttpBridge::URLFetchState
  /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...]
gtest_unittest.cc 1235 bool aborted = true; local
4542 bool aborted = true; local
    [all...]
  /external/chromium_org/ui/compositor/
layer_unittest.cc 325 bool aborted() const { return aborted_; } function in class:ui::__anon20576::TestCompositorObserver
978 // A change resulting in an aborted swap buffer should alert the observer
985 EXPECT_TRUE(observer.aborted());
    [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/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...]
gtest_unittest.cc 1629 bool aborted = true; local
4610 bool aborted = true; 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...]
gtest_unittest.cc 1244 bool aborted = true; local
4551 bool aborted = true; local
    [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/svox/pico/lib/
picotok.c 244 picoos_bool aborted; /* to be moved ??? */ member in struct:tok_subobj
    [all...]
picoos.c 1426 picoos_bool aborted; member in struct:picoos_sd_file
    [all...]
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 2675 bool aborted() { return aborted_; } function in class:v8::internal::OutputStreamWriter
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver.h 3894 int aborted; member in struct:wpa_event_data::scan_info
    [all...]
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpclient-4.1.1.jar 
  /external/smack/asmack-master/lib/
httpclient-4.1.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 

Completed in 861 milliseconds

1 2