Home
last modified time | relevance | path

Searched refs:dispatchers (Results 1 – 24 of 24) sorted by relevance

/external/libchrome/mojo/core/
Dhandle_table.cc65 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers, in AddDispatchersFromTransit() argument
71 DCHECK_LE(dispatchers.size(), std::numeric_limits<uint32_t>::max()); in AddDispatchersFromTransit()
73 if (next_available_handle_ + dispatchers.size() < next_available_handle_) in AddDispatchersFromTransit()
76 for (size_t i = 0; i < dispatchers.size(); ++i) { in AddDispatchersFromTransit()
78 if (dispatchers[i].dispatcher) { in AddDispatchersFromTransit()
81 std::make_pair(handle, Entry(dispatchers[i].dispatcher))); in AddDispatchersFromTransit()
114 std::vector<Dispatcher::DispatcherInTransit>* dispatchers) { in BeginTransit() argument
115 dispatchers->reserve(dispatchers->size() + num_handles); in BeginTransit()
129 dispatchers->push_back(d); in BeginTransit()
135 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers) { in CompleteTransitAndClose() argument
[all …]
Dhandle_table.h37 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers,
50 std::vector<Dispatcher::DispatcherInTransit>* dispatchers);
53 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers);
55 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers);
Duser_message_impl.cc351 const Dispatcher::DispatcherInTransit* dispatchers, in CreateEventForNewSerializedMessage() argument
360 event.get(), num_bytes, num_bytes, dispatchers, num_dispatchers, in CreateEventForNewSerializedMessage()
456 std::vector<Dispatcher::DispatcherInTransit> dispatchers; in AppendData() local
459 handles, num_handles, &dispatchers); in AppendData()
470 dispatchers.data(), num_handles, &channel_message, &header_, in AppendData()
473 Core::Get()->ReleaseDispatchersForTransit(dispatchers, in AppendData()
488 std::copy(dispatchers.begin(), dispatchers.end(), in AppendData()
575 std::vector<Dispatcher::DispatcherInTransit> dispatchers( in ExtractSerializedHandles() local
623 dispatchers[i].dispatcher = Dispatcher::Deserialize( in ExtractSerializedHandles()
627 if (!dispatchers[i].dispatcher && in ExtractSerializedHandles()
[all …]
Dcore.h127 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers,
137 std::vector<Dispatcher::DispatcherInTransit>* dispatchers);
147 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers,
Dcore.cc234 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers, in AddDispatchersFromTransit() argument
239 if (!handles_->AddDispatchersFromTransit(dispatchers, handles)) in AddDispatchersFromTransit()
243 for (auto d : dispatchers) { in AddDispatchersFromTransit()
255 std::vector<Dispatcher::DispatcherInTransit>* dispatchers) { in AcquireDispatchersForTransit() argument
257 MojoResult rv = handles_->BeginTransit(handles, num_handles, dispatchers); in AcquireDispatchersForTransit()
259 handles_->CancelTransit(*dispatchers); in AcquireDispatchersForTransit()
264 const std::vector<Dispatcher::DispatcherInTransit>& dispatchers, in ReleaseDispatchersForTransit() argument
268 handles_->CompleteTransitAndClose(dispatchers); in ReleaseDispatchersForTransit()
270 handles_->CancelTransit(dispatchers); in ReleaseDispatchersForTransit()
Duser_message_impl.h62 const Dispatcher::DispatcherInTransit* dispatchers,
/external/kotlinx.coroutines/
Dcoroutines-guide.md31 <!--- TOC_REF docs/coroutine-context-and-dispatchers.md -->
32 …context-and-dispatchers'></a>[Coroutine Context and Dispatchers](docs/coroutine-context-and-dispat…
33 …* <a name='dispatchers-and-threads'></a>[Dispatchers and threads](docs/coroutine-context-and-dispa…
34 …er'></a>[Unconfined vs confined dispatcher](docs/coroutine-context-and-dispatchers.md#unconfined-v…
35 …ads'></a>[Debugging coroutines and threads](docs/coroutine-context-and-dispatchers.md#debugging-co…
36 …ugging-with-idea'></a>[Debugging with IDEA](docs/coroutine-context-and-dispatchers.md#debugging-wi…
37 …sing-logging'></a>[Debugging using logging](docs/coroutine-context-and-dispatchers.md#debugging-us…
38 …ween-threads'></a>[Jumping between threads](docs/coroutine-context-and-dispatchers.md#jumping-betw…
39 …* <a name='job-in-the-context'></a>[Job in the context](docs/coroutine-context-and-dispatchers.md#…
40 …-a-coroutine'></a>[Children of a coroutine](docs/coroutine-context-and-dispatchers.md#children-of-…
[all …]
DREADME.md54 * [ui](ui/README.md) &mdash; modules that provide coroutine dispatchers for various single-threaded…
225 …lin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/index.html
226 …lin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-main.html
227 ….github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
237 …tlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-i-o.html
256 …tines/kotlinx-coroutines-test/kotlinx.coroutines.test/kotlinx.coroutines.-dispatchers/set-main.html
DCHANGES.md17 * Complete fairness is maintained for single-threaded dispatchers.
183 * `yield` support in immediate dispatchers (#1474).
330 * Performace of all JS dispatchers is significantly improved (#820).
461 * `yield` support for `Unconfined` and immediate dispatchers (#737).
469 * `Unconfined` dispatcher (and all dispatchers which support immediate invocation) forms event-loop…
487 * Added `Dispatchers.Main` to common dispatchers, which can be used from Android, Swing and JavaFx …
508 * Fixed OOM in thread-pool dispatchers (see #571).
565 * Old dispatchers including `CommonPool` are deprecated.
750 * Fixed `runBlocking` to properly support specified dispatchers (see #209).
874 and the need for coroutine context starts in "Coroutine context and dispatchers" section.
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DFailingCoroutinesMachineryTest.kt98 fun dispatchers(): List<Array<Any>> { in <lambda>() method
100 val dispatchers = listOf<TestDispatcher>( in <lambda>() constant
109 dispatchers.map { dispatcher -> in <lambda>()
/external/arm-trusted-firmware/docs/components/
Dexception-handling.rst53 EL3. These components—referred to as *dispatchers* [#spd]_ in general—may
85 enables multiple exception dispatchers in runtime firmware to co-exist, register
89 In order to arbitrate exception handling among dispatchers, the |EHF| operation
96 dispatchers to one or more priority levels. The dispatchers then register
178 Interrupts are associated to dispatchers by way of grouping and assigning
186 - Depending on the number of dispatchers to support, the platform must choose
188 to individual dispatchers. Choosing *n* bits supports up to 2\ :sup:`n`
189 distinct dispatchers. For example, by choosing 2 additional bits (i.e., bits
291 assign interrupts to fictitious dispatchers:
312 /* Priorities for individual dispatchers */
[all …]
/external/python/cpython2/Lib/
DSimpleXMLRPCServer.py616 self.dispatchers = {}
621 self.dispatchers[path] = dispatcher
625 return self.dispatchers[path]
629 response = self.dispatchers[path]._marshaled_dispatch(
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DReactiveStreamTckTest.kt22 …public fun dispatchers(): Array<Array<Any>> = Dispatcher.values().map { arrayOf<Any>(it) }.toTyped… in <lambda>() method in kotlinx.coroutines.reactive.ReactiveStreamTckTest
/external/kotlinx.coroutines/kotlinx-coroutines-core/
DREADME.md14 Coroutine dispatchers implementing [CoroutineDispatcher]:
40 | [yield] | Yields thread in single-threaded dispatchers
100 ….github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
101 …thub.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-unconfined.html
/external/python/cpython3/Lib/xmlrpc/
Dserver.py622 self.dispatchers = {}
627 self.dispatchers[path] = dispatcher
631 return self.dispatchers[path]
635 response = self.dispatchers[path]._marshaled_dispatch(
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/
DREADME.md14 Coroutine dispatchers implementing [CoroutineDispatcher]:
43 | [yield] | Yields thread in single-threaded dispatchers
106 ….github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
107 …thub.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-unconfined.html
/external/kotlinx.coroutines/docs/
Dcoroutines-guide.md21 * [Coroutine Context and Dispatchers](coroutine-context-and-dispatchers.md)
/external/kotlinx.coroutines/kotlinx-coroutines-test/
DREADME.md369 builder. Tests may need to do this in situations such as introducing multiple dispatchers and libra…
394 Both dispatchers are not designed to interact with `TestCoroutineDispatcher`.
396 Tests should provide a `TestCoroutineDispatcher` to replace these dispatchers if the `withContext` …
434 …lin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-main.html
445 …tines/kotlinx-coroutines-test/kotlinx.coroutines.test/kotlinx.coroutines.-dispatchers/set-main.html
/external/kotlinx.coroutines/ui/
Dcoroutines-guide-ui.md459 ["Children of a coroutine"](../docs/coroutine-context-and-dispatchers.md#children-of-a-coroutine) s…
567 for execution later. All UI dispatchers in `kotlinx.coroutines` are implemented this way. Why so?
617 ….github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
629 …s/kotlinx-coroutines-javafx/kotlinx.coroutines.javafx/kotlinx.coroutines.-dispatchers/-java-fx.html
/external/wayland/patches/
D0001-client-Support-client-protocol-loggers.diff22 just the ones that have listeners or dispatchers.
/external/arm-trusted-firmware/docs/plat/
Dnvidia-tegra.rst88 their dispatchers in the image without changing any makefiles.
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt55335 dispatchers dˌɪspˈæʧərz
Dinternal_raw_IPA.txt46749 dispatchers %39141 dˌɪspˈætʃərz