Home
last modified time | relevance | path

Searched refs:thread_options (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium_org/dbus/
Dtest_server.cc17 base::Thread::Options thread_options; in main() local
18 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in main()
19 CHECK(dbus_thread->StartWithOptions(thread_options)); in main()
Dbus_unittest.cc140 base::Thread::Options thread_options; in TEST() local
141 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in TEST()
143 dbus_thread.StartWithOptions(thread_options); in TEST()
220 base::Thread::Options thread_options; in TEST() local
221 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in TEST()
223 dbus_thread.StartWithOptions(thread_options); in TEST()
270 base::Thread::Options thread_options; in TEST() local
271 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in TEST()
273 dbus_thread.StartWithOptions(thread_options); in TEST()
Dproperty_unittest.cc58 base::Thread::Options thread_options; in SetUp() local
59 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in SetUp()
60 ASSERT_TRUE(dbus_thread_->StartWithOptions(thread_options)); in SetUp()
Dsignal_sender_verification_unittest.cc39 base::Thread::Options thread_options; in SetUp() local
40 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in SetUp()
41 ASSERT_TRUE(dbus_thread_->StartWithOptions(thread_options)); in SetUp()
Dobject_manager_unittest.cc68 base::Thread::Options thread_options; in SetUp() local
69 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in SetUp()
70 ASSERT_TRUE(dbus_thread_->StartWithOptions(thread_options)); in SetUp()
Dend_to_end_async_unittest.cc46 base::Thread::Options thread_options; in SetUp() local
47 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in SetUp()
48 ASSERT_TRUE(dbus_thread_->StartWithOptions(thread_options)); in SetUp()
/external/chromium_org/device/bluetooth/
Dbluetooth_socket_thread.cc62 base::Thread::Options thread_options; in EnsureStarted() local
63 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in EnsureStarted()
65 thread_->StartWithOptions(thread_options); in EnsureStarted()
/external/chromium_org/net/test/embedded_test_server/
Dembedded_test_server_unittest.cc53 base::Thread::Options thread_options; in SetUp() local
54 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in SetUp()
55 ASSERT_TRUE(io_thread_.StartWithOptions(thread_options)); in SetUp()
266 base::Thread::Options thread_options; in ThreadMain() local
267 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in ThreadMain()
268 ASSERT_TRUE(io_thread.StartWithOptions(thread_options)); in ThreadMain()
Dembedded_test_server.cc183 base::Thread::Options thread_options; in StartThread() local
184 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in StartThread()
186 CHECK(io_thread_->StartWithOptions(thread_options)); in StartThread()
/external/fio/
Dthread_options.h33 struct thread_options { struct
477 extern void convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top…
478 extern void convert_thread_options_to_net(struct thread_options_pack *top, struct thread_options *);
479 extern int fio_test_cconv(struct thread_options *);
480 extern void options_default_fill(struct thread_options *o);
Dparse.h106 struct thread_options;
107 static inline void *td_var(struct thread_options *to, struct fio_option *o, in td_var()
Diolog.c656 struct thread_options *o = &td->o; in write_iops_log()
663 struct thread_options *o = &td->o; in write_slat_log()
670 struct thread_options *o = &td->o; in write_clat_log()
677 struct thread_options *o = &td->o; in write_lat_log()
684 struct thread_options *o = &td->o; in write_bandw_log()
Doptions.h10 #define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var)
Dclient.h133 extern int fio_client_update_options(struct fio_client *, struct thread_options *, uint64_t *);
Dinit.c323 struct thread_options *o = &td->o; in set_cmd_options()
427 static int fixed_block_size(struct thread_options *o) in fixed_block_size()
462 struct thread_options *o = &td->o; in fixup_options()
881 struct thread_options *o = &td->o; in init_flags()
940 static char *make_filename(char *buf, size_t buf_size,struct thread_options *o, in make_filename()
1040 struct thread_options *o = &td->o; in add_job()
2073 extern int fio_check_options(struct thread_options *);
2144 void options_default_fill(struct thread_options *o) in options_default_fill()
Dfio.h98 struct thread_options o;
548 struct thread_options *o = &td->o; in __should_check_rate()
/external/chromium_org/net/base/
Dnetwork_change_notifier_linux.cc78 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); in NetworkChangeNotifierLinux() local
79 notifier_thread_->StartWithOptions(thread_options); in NetworkChangeNotifierLinux()
Dnetwork_config_watcher_mac.cc126 base::Thread::Options thread_options(base::MessageLoop::TYPE_UI, 0); in NetworkConfigWatcherMac() local
127 notifier_thread_->StartWithOptions(thread_options); in NetworkConfigWatcherMac()
/external/chromium_org/mojo/apps/js/
Djs_app.cc36 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); in Start() local
37 thread_.StartWithOptions(thread_options); in Start()
/external/chromium_org/mojo/common/
Dhandle_watcher.cc308 base::Thread::Options thread_options; in WatcherThreadManager() local
309 thread_options.message_pump_factory = base::Bind(&MessagePumpMojo::Create); in WatcherThreadManager()
310 thread_.StartWithOptions(thread_options); in WatcherThreadManager()
Dhandle_watcher_unittest.cc446 base::Thread::Options thread_options; in TEST() local
447 thread_options.message_pump_factory = in TEST()
449 thread->StartWithOptions(thread_options); in TEST()
/external/fio/engines/
Dcpu.c70 struct thread_options *o = &td->o; in fio_cpuio_init()
/external/chromium_org/chromeos/dbus/
Ddbus_thread_manager.cc64 base::Thread::Options thread_options; in DBusThreadManager() local
65 thread_options.message_loop_type = base::MessageLoop::TYPE_IO; in DBusThreadManager()
67 dbus_thread_->StartWithOptions(thread_options); in DBusThreadManager()
/external/chromium_org/mojo/spy/
Dspy.cc321 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); in Spy() local
322 control_thread_->StartWithOptions(thread_options); in Spy()
/external/chromium_org/content/browser/battery_status/
Dbattery_status_manager_linux.cc311 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); in StartNotifierThreadIfNecessary() local
313 if (!notifier_thread_->StartWithOptions(thread_options)) { in StartNotifierThreadIfNecessary()

12