Searched refs:startRoutine (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/commonlibrary/c_utils/base/src/ |
H A D | thread_ex.cpp | 27 ThreadFunc startRoutine; member 39 ThreadFunc f = t->startRoutine; in Proxy() 68 t->startRoutine = para.startRoutine; in CreatePThread() 73 para.startRoutine = reinterpret_cast<ThreadFunc>(&ThreadParam::Proxy); in CreatePThread() 82 …int result = pthread_create(&thread, &attr, reinterpret_cast<PThreadRoutine>(para.startRoutine), p… in CreatePThread() 120 para.startRoutine = ThreadStart; in Start()
|
/ohos5.0/base/hiviewdfx/faultloggerd/test/fuzztest/faultloggerdserver_fuzzer/ |
H A D | faultloggerdserver_fuzzer.cpp | 68 void *(*startRoutine)(void *)) in HandleRequestTestCommon() 75 if (!startRoutine) { in HandleRequestTestCommon() 79 … if (pthread_create(&threadId, nullptr, startRoutine, reinterpret_cast<void*>(socketFd[1])) != 0) { in HandleRequestTestCommon()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/ |
H A D | pan_network.h | 56 pthread_t CreateThread(void* (*startRoutine)(void*), void* arg);
|
H A D | pan_network.cpp | 330 pthread_t PanNetwork::CreateThread(void* (*startRoutine)(void*), void* arg) in CreateThread() 338 if (pthread_create(&threadId, &threadAttr, startRoutine, arg) != 0) { in CreateThread()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hid_host/ |
H A D | hid_host_uhid.h | 58 pthread_t CreateThread(void* (*startRoutine)(void*), void* arg);
|
H A D | hid_host_uhid.cpp | 287 pthread_t HidHostUhid::CreateThread(void* (*startRoutine)(void*), void* arg) in CreateThread() 295 if (pthread_create(&threadId, &threadAttr, startRoutine, arg) != 0) { in CreateThread()
|