HomeSort by relevance Sort by last modified time
    Searched refs:ThreadEntry (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
platform-cygwin.cc 397 static void* ThreadEntry(void* arg) {
423 pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
platform-macos.cc 520 static void* ThreadEntry(void* arg) {
547 pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
platform-solaris.cc 483 static void* ThreadEntry(void* arg) {
509 pthread_create(&data_->thread_, NULL, ThreadEntry, this);
platform-freebsd.cc 491 static void* ThreadEntry(void* arg) {
517 pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
platform-linux.cc 750 static void* ThreadEntry(void* arg) {
781 int result = pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
    [all...]
platform-openbsd.cc 539 static void* ThreadEntry(void* arg) {
570 pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
platform-win32.cc     [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 130 typedef struct ThreadEntry {
133 } ThreadEntry;
187 ThreadEntry* threads;
735 pKeys->threads = (ThreadEntry*) malloc(sizeof(ThreadEntry) * count);
900 return ((const ThreadEntry*) thread1)->threadId -
901 ((const ThreadEntry*) thread2)->threadId;
    [all...]

Completed in 102 milliseconds