Home | History | Annotate | Download | only in threading

Lines Matching refs:Options

38   const Thread::Options& options;
43 explicit StartupData(const Options& opt)
44 : options(opt),
63 return StartWithOptions(Options());
66 bool Thread::StartWithOptions(const Options& options) {
71 StartupData startup_data(options);
74 if (!PlatformThread::Create(options.stack_size, this, &thread_)) {
146 MessageLoop message_loop(startup_data_->options.message_loop_type);