Searched refs:callback (Results 1 – 7 of 7) sorted by relevance
| /oneTBB/python/tbb/ |
| H A D | pool.py | 141 def apply_async(self, func, args=(), kwds=dict(), callback=None): argument 151 apply_result = ApplyResult(callback=callback) 156 def map_async(self, func, iterable, chunksize=None, callback=None): argument 165 apply_result = ApplyResult(callback=callback) 171 def imap_async(self, func, iterable, chunksize=None, callback=None): argument 181 apply_result = ApplyResult(callback=callback) 188 callback=None): argument 198 apply_result = ApplyResult(callback=callback) 318 def __init__(self, collector=None, callback=None): argument 331 self._callback = callback
|
| H A D | test.py | 147 result = pool.map_async(timeout_work, range(10), callback=cb) 153 result = pool.imap_async(timeout_work, range(3, 10), callback=cb) 163 result = pool.imap_unordered_async(timeout_work, range(10, 3, -1), callback=cb) 182 result = pool.imap_unordered_async(work, range(2, -10, -1), callback=cb) 191 result = pool.imap_async(work, range(2, -10, -1), callback=cb)
|
| /oneTBB/test/common/ |
| H A D | concurrent_lru_cache_common.h | 169 preset_default(callback_type callback, std::size_t history_items) : in preset_default() 171 cache(callback, number_of_lru_history_items) {}; in preset_default() 181 static std::string callback(std::string key) { return key; } in callback() function 185 cache(&callback, number_of_lru_history_items) {}; in preset1()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_lru_cache.cpp | 38 auto callback = [](int key) -> int { return key; }; in __anon425d1b900102() variable 41 preset preset_object{callback, number_of_lru_history_items};
|
| /oneTBB/src/tbb/ |
| H A D | tcm.h | 142 __TCM_EXPORT tcm_result_t tcmConnect(tcm_callback_t callback,
|
| H A D | tcm_adaptor.cpp | 48 tcm_result_t(*tcm_connect)(tcm_callback_t callback, tcm_client_id_t* client_id){nullptr};
|
| /oneTBB/doc/main/tbb_userguide/Migration_Guide/ |
| H A D | Task_API.rst | 420 // i.e. after the callback is called 445 // i.e. after the callback is called
|