Searched refs:thread_attributes (Results 1 – 4 of 4) sorted by relevance
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | linux_dumper_unittest_helper.cc | 87 pthread_attr_t thread_attributes; in main() local 88 pthread_attr_init(&thread_attributes); in main() 89 pthread_attr_setdetachstate(&thread_attributes, PTHREAD_CREATE_DETACHED); in main() 91 pthread_create(&threads[i], &thread_attributes, &thread_function, &pipefd); in main()
|
D | minidump_writer_unittest.cc | 268 pthread_attr_t thread_attributes; in TEST() local 269 pthread_attr_init(&thread_attributes); in TEST() 270 pthread_attr_setdetachstate(&thread_attributes, PTHREAD_CREATE_DETACHED); in TEST() 273 pthread_create(&thread, &thread_attributes, in TEST()
|
/external/google-breakpad/src/common/linux/tests/ |
D | crash_generator.cc | 294 pthread_attr_t thread_attributes; in CreateThreadsInChildProcess() local 295 if (pthread_attr_init(&thread_attributes) != 0 || in CreateThreadsInChildProcess() 296 pthread_attr_setdetachstate(&thread_attributes, in CreateThreadsInChildProcess() 311 if (pthread_create(&thread_data[i].thread, &thread_attributes, in CreateThreadsInChildProcess() 325 pthread_attr_destroy(&thread_attributes); in CreateThreadsInChildProcess()
|
/external/python/cpython2/PC/ |
D | _subprocess.c | 439 PyObject* thread_attributes; /* ignored */ in sp_CreateProcess() local 450 &thread_attributes, in sp_CreateProcess()
|