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

1 2 3 4 5 6 7 8 9

  /bionic/libc/arch-arm/bionic/
abort_arm.S 32 * Coding the abort function in assembly so that registers are guaranteed to
38 ENTRY(abort) function
42 END(abort)
  /libcore/luni/src/main/java/java/net/
CacheRequest.java 26 * data into the cache. It also allows the user to interrupt and abort the
27 * current store operation by calling the method {@code abort}. If an {@code
46 public abstract void abort(); method in class:CacheRequest
  /external/smack/src/com/kenai/jbosh/
HTTPResponse.java 32 void abort(); method in interface:HTTPResponse
ApacheHTTPResponse.java 164 * Abort the client transmission and response processing.
166 public void abort() { method in class:ApacheHTTPResponse
168 post.abort();
245 abort(); method
249 abort(); method
  /external/apache-http/src/org/apache/http/client/methods/
AbortableHttpRequest.java 58 * used to abort a long-lived request for a connection.
68 * be used to abort an active connection.
76 * return immediately. If the request has not started, it will abort after
88 void abort(); method in interface:AbortableHttpRequest
HttpUriRequest.java 67 * @throws UnsupportedOperationException if the abort operation
70 void abort() throws UnsupportedOperationException; method in interface:HttpUriRequest
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Stream.cpp 66 void Stream::abort() function in class:WebCore::Stream
87 abort();
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionController.h 45 void abort(SpeechRecognition* recognition) { m_client->abort(recognition); } function in class:WebCore::SpeechRecognitionController
  /external/chromium_org/third_party/WebKit/public/web/
WebSpeechRecognizer.h 47 // Abort speech recognition for the specified handle, discarding any recorded audio. Notifications and errors are sent via the client.
48 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebSpeechRecognizer
  /external/chromium_org/third_party/skia/src/doc/
SkDocument.cpp 85 void SkDocument::abort() { function in class:SkDocument
  /external/skia/src/doc/
SkDocument.cpp 85 void SkDocument::abort() { function in class:SkDocument
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThreadAborter.java 42 public void abort() { method in class:WaitingThreadAborter
  /external/chromium_org/chrome/installer/util/
delete_tree_work_item.cc 57 bool abort = false; local
58 for (ptrdiff_t i = 0; !abort && i != num_key_files_; ++i) {
64 abort = true;
69 abort = true;
73 if (!abort) {
82 abort = true;
88 if (!abort) {
92 for (ptrdiff_t i = 0; !abort && i != num_key_files_; ++i) {
97 abort = true;
105 if (abort) {
    [all...]
  /external/chromium_org/content/renderer/media/
websourcebuffer_impl.cc 53 void WebSourceBufferImpl::abort() { function in class:content::WebSourceBufferImpl
54 demuxer_->Abort(id_);
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCache.cpp 84 void ApplicationCache::abort() function in class:WebCore::ApplicationCache
88 cacheHost->abort();
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBuffer.cpp 69 // InvalidStateError exception and abort these steps.
88 // InvalidStateError exception and abort these steps.
100 // and abort these steps.
117 // 2. If data is null then throw an InvalidAccessError exception and abort these steps.
124 // an InvalidStateError exception and abort these steps.
139 void WebKitSourceBuffer::abort(ExceptionState& exceptionState) function in class:WebCore::WebKitSourceBuffer
141 // Section 3.2 abort() method steps.
143 // then throw an InvalidStateError exception and abort these steps.
145 // then throw an InvalidStateError exception and abort these steps.
152 m_webSourceBuffer->abort();
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/spi/
LoginModule.java 35 boolean abort() throws LoginException; method in interface:LoginModule
  /external/chromium_org/third_party/WebKit/Source/web/
SpeechRecognitionClientProxy.cpp 72 void SpeechRecognitionClientProxy::abort(SpeechRecognition* recognition) function in class:blink::SpeechRecognitionClientProxy
74 m_recognizer->abort(WebSpeechRecognitionHandle(recognition), this);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
event.cpp 53 _cl_event::abort(cl_int status) { function in class:_cl_event
58 __chain.back()->abort(status);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
event.cpp 53 _cl_event::abort(cl_int status) { function in class:_cl_event
58 __chain.back()->abort(status);
  /frameworks/base/obex/javax/obex/
Operation.java 121 * Sends an ABORT message to the server. By calling this method, the
123 * object. No headers are sent in the abort request. This will end the
128 void abort() throws IOException; method in interface:Operation
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParser.java 460 * Abort the loading of the document that is currently being loaded by
464 public void abort(); method in interface:LSParser
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.cc 253 void WebIDBDatabaseImpl::abort(long long transaction_id) { function in class:content::WebIDBDatabaseImpl
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 12 'loadstart': { 'progress': 1, 'error': 1, 'abort': 1, 'load': 1 },
13 'progress': { 'progress': 1, 'error': 1, 'abort': 1, 'load': 1 },
15 'abort': { 'loadend': 1 },
28 'abort': 0,
108 body_element.addEventListener('abort', eventListener, true);
160 // Check that the right number of 'abort' events were dispatched.
161 assertEqual(eventMachine.stateHistogram['abort'], abortCount);
181 // If an error or abort was reported, check that lastError is set
184 eventMachine.stateHistogram['abort'] > 0)) {
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.cpp 83 // Make sure we've actually got something to stop, and haven't already called abort().
114 // We must be waiting for an abort to complete, since m_readyState wasn't WRITING.
155 // We must be waiting for an abort to complete, since m_readyState wasn't WRITING.
163 void FileWriter::abort(ExceptionState& exceptionState) function in class:WebCore::FileWriter
196 // We could get an abort in the handler for this event. If we do, it's
299 fireEvent(EventTypeNames::abort);

Completed in 1517 milliseconds

1 2 3 4 5 6 7 8 9