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

1 2 3

  /frameworks/av/services/audioflinger/
SchedulingPolicyService.h 24 // The asynchronous parameter should be 'true' to return immediately,
27 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous = false);
ISchedulingPolicyService.h 30 int32_t prio, bool asynchronous) = 0;
SchedulingPolicyService.cpp 31 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous)
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
ISchedulingPolicyService.cpp 40 virtual int requestPriority(int32_t pid, int32_t tid, int32_t prio, bool asynchronous)
47 uint32_t flags = asynchronous ? IBinder::FLAG_ONEWAY : 0;
52 if (asynchronous) {
  /external/guava/guava/src/com/google/common/cache/
RemovalListeners.java 42 public static <K, V> RemovalListener<K, V> asynchronous( method in class:RemovalListeners
  /external/chromium_org/chrome/test/chromedriver/js/
execute_async_script.js 17 * Dictionary key for asynchronous script info.
23 * Return the information of asynchronous script execution.
25 * @return {Object.<string, ?>} Information of asynchronous script execution.
34 * Execute the given script and save its asynchronous result.
39 * @param {string} script The asynchronous script to be executed. The script
42 * function to invoke to report the asynchronous result.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.h 106 void chunkAndMarkAllMisspellingsAndBadGrammar(TextCheckingTypeMask textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous);
107 void markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* checkingRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength = 0);
SpellChecker.cpp 511 bool asynchronous = frame().settings() && frame().settings()->asynchronousSpellCheckingEnabled(); local
512 chunkAndMarkAllMisspellingsAndBadGrammar(textCheckingOptions, fullParagraphToCheck, asynchronous);
521 bool asynchronous = true; local
522 chunkAndMarkAllMisspellingsAndBadGrammar(resolveTextCheckingTypeMask(TextCheckingTypeSpelling | TextCheckingTypeGrammar), textToCheck, asynchronous);
525 void SpellChecker::chunkAndMarkAllMisspellingsAndBadGrammar(TextCheckingTypeMask textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous)
536 const int kNumChunksToCheck = asynchronous ? (end - start + kChunkSize - 1) / (kChunkSize) : 1;
539 if (kNumChunksToCheck == 1 && asynchronous) {
540 markAllMisspellingsAndBadGrammarInRanges(textCheckingOptions, checkRange.get(), checkRange.get(), asynchronous, 0);
550 markAllMisspellingsAndBadGrammarInRanges(textCheckingOptions, checkRange.get(), checkRange.get(), asynchronous, iter, &checkingLength);
555 void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* checkRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength
    [all...]
  /external/lldb/tools/driver/
IOChannel.h 73 OutWrite (const char *buffer, size_t len, bool asynchronous);
76 ErrWrite (const char *buffer, size_t len, bool asynchronous);
IOChannel.cpp 550 IOChannel::OutWrite (const char *buffer, size_t len, bool asynchronous)
566 if (m_driver->EditlineReaderIsTop() && asynchronous)
569 if (asynchronous)
574 IOChannel::ErrWrite (const char *buffer, size_t len, bool asynchronous)
581 if (asynchronous)
584 if (asynchronous)
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/analytics/
popup.js 11 * Below is a modified version of the Google Analytics asynchronous tracking
31 * Track a click on a button using the asynchronous tracking API.
34 * for information on how to use the asynchronous tracking API.
  /frameworks/wilhelm/src/
locks.c 192 unsigned asynchronous = attributes; local
201 asynchronous &= ~(*handler)(thiz);
207 if (asynchronous) {
209 thiz->mAttributesMask = oldAttributesMask | asynchronous;
211 asynchronous = ATTR_NONE;
270 if (ATTR_NONE != asynchronous) {
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store.py 13 interface is asynchronous.
  /external/libunwind/doc/
unw_is_signal_frame.tex 23 asynchronous interruption. For UNIX and UNIX-like platforms, such
28 Signal frames are somewhat unusual because the asynchronous nature of
  /external/chromium_org/ui/file_manager/video_player/js/
test_util.js 28 * Namespace for asynchronous utility functions.
79 // Return true for asynchronous functions and false for synchronous.
  /external/chromium_org/tools/sheriffing/
statuspageinfo.js 16 /** Send and parse an asynchronous request to get a repo status JSON. */
waterfallinfo.js 30 /** Send an asynchronous request to get the main waterfall's JSON. */
  /external/mksh/
Android.mk 46 -fno-asynchronous-unwind-tables \
  /external/chromium_org/chrome/browser/resources/instant/
instant.js 88 * This method is asynchronous; the result is provided by a call to
136 * The method is asynchronous, results being provided via getDebugInfoResult.
  /external/chromium_org/chrome/test/chromedriver/extension/
background.js 6 * Checks for an extension error that occurred during the asynchronous call.
  /external/chromium_org/remoting/webapp/
base.js 165 * Promise is a great tool for writing asynchronous code. However, the construct
176 * Here are the recommended steps to follow when implementing an asynchronous
180 * 2. Call deferred.resolve() when the asynchronous operation finishes.
181 * 3. Call deferred.reject() when the asynchronous operation fails.
third_party_host_permissions.js 50 // is called from an asynchronous plugin callback, so we have to open a
  /external/chromium_org/ui/file_manager/file_manager/common/js/
async_util.js 13 * Asynchronous version of Array.forEach.
16 * The callback can be an asynchronous function, but the execution is
45 * Creates a class for executing several asynchronous closures in a fifo queue.
154 * Creates a class for executing several asynchronous closures in a fifo queue.
169 * Creates a class for executing several asynchronous closures in a group in
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
background.js 87 // asynchronous callbacks will not fire.
  /external/chromium_org/chrome/browser/resources/signin_internals/
signin_internals.js 8 * Organizes all signin event listeners and asynchronous requests.

Completed in 450 milliseconds

1 2 3