Searched defs:thread_data (Results 1 - 5 of 5) sorted by relevance

/external/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp440 ParseFreeBSDPrStatus(ThreadData *thread_data, DataExtractor &data, argument
457 thread_data->signo = data.GetU32(&offset); // pr_cursig
463 thread_data->gpregset = DataExtractor(data, offset, len);
467 ParseFreeBSDThrMisc(ThreadData *thread_data, DataExtractor &data) argument
470 thread_data->name = data.GetCStr(&offset, 20);
498 ThreadData *thread_data = new ThreadData(); local
518 assert(thread_data->gpregset.GetByteSize() > 0);
520 m_thread_data.push_back(*thread_data);
521 thread_data = new ThreadData();
538 ParseFreeBSDPrStatus(thread_data, note_dat
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc261 ThreadData* thread_data = static_cast<ThreadData*>(thread_object); local
262 AudioProcessing* ap = thread_data->ap;
281 if (thread_data->thread_num % 2 == 0) {
285 thread_data->error = true;
290 if (thread_data->thread_num % 2 == 1) {
300 thread_data->error = true;
317 std::vector<ThreadData*> thread_data(num_threads);
324 thread_data[i] = new ThreadData(i, apm_);
326 thread_data[i],
342 ASSERT_FALSE(thread_data[
[all...]
/external/chromium_org/base/
H A Dtracked_objects.cc364 void ThreadData::OnThreadTermination(void* thread_data) { argument
365 DCHECK(thread_data); // TLS should *never* call us with a NULL.
370 reinterpret_cast<ThreadData*>(thread_data)->OnThreadTerminationCleanup();
595 for (ThreadData* thread_data = my_list;
596 thread_data;
597 thread_data = thread_data->next()) {
598 thread_data->SnapshotExecutedTasks(reset_max, process_data, birth_counts);
661 for (ThreadData* thread_data = my_list;
662 thread_data;
833 ThreadData* thread_data = thread_data_list; local
[all...]
/external/fio/
H A Dfio.h97 struct thread_data { struct
399 extern struct thread_data *threads;
401 static inline void fio_ro_check(struct thread_data *td, struct io_u *io_u)
408 static inline int should_fsync(struct thread_data *td)
427 extern void clear_io_state(struct thread_data *);
428 extern int fio_options_parse(struct thread_data *, char **, int, int);
430 extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
431 extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
432 extern void fio_fill_default_options(struct thread_data *);
434 extern void fio_options_set_ioengine_opts(struct option *long_options, struct thread_data *t
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dnuma.c43 struct thread_data { struct
135 struct thread_data *threads;
434 struct thread_data *td;
566 struct thread_data *td;
813 struct thread_data *td;
846 struct thread_data *td;
913 struct thread_data *td = g->threads + t;
1010 struct thread_data *td = __tdata;
1023 u8 *thread_data; local
1035 thread_data
[all...]

Completed in 3847 milliseconds