Searched refs:unschedFunction (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/util/ |
| D | threadpool_imp.cc | 118 std::function<void()> unschedFunction; member 375 item.unschedFunction = std::move(unschedule); in Submit() 401 if (it->unschedFunction) { in UnSchedule() 402 candidates.push_back(std::move(it->unschedFunction)); in UnSchedule() 474 void* tag, void(*unschedFunction)(void* arg)) { in Schedule() 475 if (unschedFunction == nullptr) { in Schedule() 478 impl_->Submit(std::bind(function, arg), std::bind(unschedFunction, arg), in Schedule()
|
| D | threadpool_imp.h | 72 void (*unschedFunction)(void* arg));
|
| /rocksdb-6.9/env/ |
| D | env_posix.cc | 217 void (*unschedFunction)(void* arg) = nullptr) override; 433 void* tag, void (*unschedFunction)(void* arg)) { in Schedule() 435 thread_pools_[pri].Schedule(function, arg, tag, unschedFunction); in Schedule()
|
| /rocksdb-6.9/port/win/ |
| D | env_win.h | 50 void* tag, void(*unschedFunction)(void* arg)); 304 void* tag, void(*unschedFunction)(void* arg)) override;
|
| D | env_win.cc | 1216 void(*unschedFunction)(void* arg)) { in Schedule() 1218 thread_pools_[pri].Schedule(function, arg, tag, unschedFunction); in Schedule() 1459 void(*unschedFunction)(void* arg)) { in Schedule() 1460 return winenv_threads_.Schedule(function, arg, pri, tag, unschedFunction); in Schedule()
|
| /rocksdb-6.9/hdfs/ |
| D | env_hdfs.h | 106 void (*unschedFunction)(void* arg) = 0) override { 107 posixEnv->Schedule(function, arg, pri, tag, unschedFunction);
|
| /rocksdb-6.9/include/rocksdb/ |
| D | env.h | 398 void (*unschedFunction)(void* arg) = nullptr) = 0;
|