HomeSort by relevance Sort by last modified time
    Searched defs:Abort (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
abort.cc 5 #include "base/abort.h"
11 // Try not to inline so we can find Abort() call from stack trace.
12 ATTRIBUTE_NOINLINE void Abort() {
13 // Make a segmentation fault to force abort. Writing to a specific address
  /external/libpcap/msdos/
bin2c.c 6 static void Abort (char *fmt,...)
23 Abort ("Usage: %s bin-file [> result]", argv[0]);
26 Abort ("Cannot open %s\n", argv[1]);
  /external/chromium_org/chrome/browser/sync/test/
test_http_bridge_factory.cc 27 void TestHttpBridge::Abort() {
  /external/chromium_org/content/browser/service_worker/
service_worker_unregister_job.cc 37 void ServiceWorkerUnregisterJob::Abort() {
service_worker_register_job.cc 42 phase_ == INITIAL || phase_ == COMPLETE || phase_ == ABORT)
68 void ServiceWorkerRegisterJob::Abort() {
69 SetPhase(ABORT);
142 case ABORT:
155 // On unexpected error, abort this registration job.
163 // registration and abort.
206 // Abort this registration job.
223 // Abort this registration job.
251 // error and abort.
290 // is rejected, abort
    [all...]
  /external/chromium_org/media/filters/
blocking_url_protocol.cc 26 void BlockingUrlProtocol::Abort() {
decoder_selector.cc 115 void DecoderSelector<StreamType>::Abort() {
  /external/chromium_org/webkit/browser/quota/
quota_task.cc 45 void QuotaTask::Abort() {
64 std::mem_fun(&QuotaTask::Abort));
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 35 Abort,
  /system/keymaster/
dsa_operation.h 39 virtual keymaster_error_t Abort() { return KM_ERROR_OK; }
ecdsa_operation.h 39 virtual keymaster_error_t Abort() { return KM_ERROR_OK; }
rsa_operation.h 37 virtual keymaster_error_t Abort() { return KM_ERROR_OK; }
  /external/chromium_org/ppapi/shared_impl/
tracked_callback.cc 85 void TrackedCallback::Abort() { Run(PP_ERROR_ABORTED); }
100 // Note that this call of Run() may have been scheduled prior to Abort() or
101 // PostAbort() being called. If we have been told to Abort, that always
159 // We might abort when there's already a scheduled callback, but callers
  /external/chromium_org/sync/internal_api/
syncapi_server_connection_manager.cc 78 void SyncAPIBridgedConnection::Abort() {
80 post_provider_->Abort();
  /external/chromium_org/chrome/browser/extensions/api/web_request/
upload_data_presenter.cc 120 Abort();
133 Abort();
156 void ParsedDataPresenter::Abort() {
  /external/chromium_org/content/browser/streams/
stream.cc 73 void Stream::Abort() {
89 Abort();
  /external/chromium_org/sync/test/fake_server/
fake_server_http_post_provider.cc 106 void FakeServerHttpPostProvider::Abort() {
  /external/chromium_org/third_party/libjingle/source/talk/base/
task.cc 120 Abort(true); // no need to wake because we're awake
153 void Task::Abort(bool nowake) {
158 // Abort() was previously called).
240 // No need to wake because we're either awake or in abort
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 89 unsigned int Abort;
101 * after the Abort flag is set.*/
  /external/chromium_org/third_party/webrtc/base/
task.cc 103 Abort(true); // no need to wake because we're awake
136 void Task::Abort(bool nowake) {
141 // Abort() was previously called).
223 // No need to wake because we're either awake or in abort
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix_libcdep.cc 79 void Abort() {
80 abort();
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 89 unsigned int Abort;
101 * after the Abort flag is set.*/
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation.cc 51 void Operation::Abort() {
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.cc 128 void IndexedDBTransaction::Abort() {
129 Abort(IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionUnknownError,
133 void IndexedDBTransaction::Abort(const IndexedDBDatabaseError& error) {
134 IDB_TRACE1("IndexedDBTransaction::Abort", "txn.id", id());
139 // abort steps below. We therefore take a self reference to keep ourselves
151 // Run the abort tasks, if any.
234 Abort(IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionDataError,
242 // an abort has already been initiated asynchronously by the
267 Abort(IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionDataError,
273 // Abort may have been called just as the blob write completed
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
unicode_test.py 72 def Abort():
73 raise AbortError("Abort")
116 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 4, Abort)
117 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 2, Abort)
118 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE1, 3, Abort)
119 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE2, 3, Abort)
120 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE3, 3, Abort)

Completed in 585 milliseconds

1 2 3 4