Searched refs:thd_body (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc/src/core/lib/gprpp/ |
D | thd_posix.cc | 52 ThreadInternalsPosix(const char* thd_name, void (*thd_body)(void* arg), in ThreadInternalsPosix() 63 info->body = thd_body; in ThreadInternalsPosix() 138 Thread::Thread(const char* thd_name, void (*thd_body)(void* arg), void* arg, in Thread() 142 grpc_core::New<ThreadInternalsPosix>(thd_name, thd_body, arg, &outcome); in Thread()
|
D | thd_windows.cc | 58 ThreadInternalsWindows(void (*thd_body)(void* arg), void* arg, bool* success) in ThreadInternalsWindows() 66 info_->body = thd_body; in ThreadInternalsWindows() 134 Thread::Thread(const char* thd_name, void (*thd_body)(void* arg), void* arg, in Thread() 137 impl_ = grpc_core::New<ThreadInternalsWindows>(thd_body, arg, &outcome); in Thread()
|
D | thd.h | 60 Thread(const char* thd_name, void (*thd_body)(void* arg), void* arg,
|
/external/grpc-grpc/test/core/gpr/ |
D | tls_test.cc | 36 static void thd_body(void* arg) { in thd_body() function 58 th = grpc_core::Thread("grpc_tls_test", thd_body, nullptr); in main()
|