HomeSort by relevance Sort by last modified time
    Searched defs:thread_data (Results 1 - 6 of 6) sorted by null

  /external/webrtc/src/modules/audio_processing/test/
unit_test.cc 261 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[i]->error)
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 459 thread_t thread_data = { 0, 0, 0 }; local
461 ASSERT_TRUE(pthread_create(&thread, &attr, ThreadLevelRun, &thread_data) == 0);
464 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
476 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), thread_data.tid));
483 android_atomic_acquire_store(0, &thread_data.state);
504 thread_t thread_data = { 0, 0, 0 }; local
506 ASSERT_TRUE(pthread_create(&thread, &attr, ThreadLevelRun, &thread_data) == 0);
509 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
511 UniquePtr<Backtrace> all(Backtrace::Create(getpid(), thread_data.tid));
515 UniquePtr<Backtrace> ign1(Backtrace::Create(getpid(), thread_data.tid))
542 thread_t thread_data = { 0, 0, 0 }; local
852 thread_t thread_data = { 0, 0, 0 }; local
    [all...]
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 440 ParseFreeBSDPrStatus(ThreadData *thread_data, DataExtractor &data,
457 thread_data->signo = data.GetU32(&offset); // pr_cursig
463 thread_data->gpregset = DataExtractor(data, offset, len);
467 ParseFreeBSDThrMisc(ThreadData *thread_data, DataExtractor &data)
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_data, arch)
    [all...]
  /external/chromium_org/base/
tracked_objects.cc 364 void ThreadData::OnThreadTermination(void* thread_data) {
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/
fio.h 97 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 *td)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
numa.c 43 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 = setup_private_data(g->p.bytes_thread)
    [all...]

Completed in 279 milliseconds