Searched refs:thread_attr (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/osi/src/ |
D | alarm.cc | 671 pthread_attr_t thread_attr; in timer_create_internal() local 672 pthread_attr_init(&thread_attr); in timer_create_internal() 673 pthread_attr_setschedpolicy(&thread_attr, SCHED_FIFO); in timer_create_internal() 676 pthread_attr_setschedparam(&thread_attr, ¶m); in timer_create_internal() 681 sigevent.sigev_notify_attributes = &thread_attr; in timer_create_internal()
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_sock_thread.cc | 99 pthread_attr_t thread_attr; in create_thread() local 100 pthread_attr_init(&thread_attr); in create_thread() 101 pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE); in create_thread() 107 ret = pthread_create(thread_id, &thread_attr, start_routine, arg); in create_thread()
|
/packages/modules/Bluetooth/system/btif/co/ |
D | bta_hh_co.cc | 448 pthread_attr_t thread_attr; in create_thread() local 450 pthread_attr_init(&thread_attr); in create_thread() 451 pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE); in create_thread() 453 if (pthread_create(&thread_id, &thread_attr, start_routine, arg) != 0) { in create_thread()
|