Searched refs:thread_attr (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/osi/src/ |
D | alarm.cc | 659 pthread_attr_t thread_attr; in timer_create_internal() local 660 pthread_attr_init(&thread_attr); in timer_create_internal() 661 pthread_attr_setschedpolicy(&thread_attr, SCHED_FIFO); in timer_create_internal() 664 pthread_attr_setschedparam(&thread_attr, ¶m); in timer_create_internal() 669 sigevent.sigev_notify_attributes = &thread_attr; in timer_create_internal()
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_sock_thread.cc | 101 pthread_attr_t thread_attr; in create_thread() local 102 pthread_attr_init(&thread_attr); in create_thread() 103 pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE); in create_thread() 109 ret = pthread_create(thread_id, &thread_attr, start_routine, arg); in create_thread()
|
/packages/modules/Bluetooth/system/btif/co/ |
D | bta_hh_co.cc | 254 pthread_attr_t thread_attr; in create_thread() local 256 pthread_attr_init(&thread_attr); in create_thread() 257 pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE); in create_thread() 259 if (pthread_create(&thread_id, &thread_attr, start_routine, arg) != 0) { in create_thread()
|