Home
last modified time | relevance | path

Searched refs:startRoutine (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/commonlibrary/c_utils/base/src/
H A Dthread_ex.cpp27 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 Dfaultloggerdserver_fuzzer.cpp68 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 Dpan_network.h56 pthread_t CreateThread(void* (*startRoutine)(void*), void* arg);
H A Dpan_network.cpp330 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 Dhid_host_uhid.h58 pthread_t CreateThread(void* (*startRoutine)(void*), void* arg);
H A Dhid_host_uhid.cpp287 pthread_t HidHostUhid::CreateThread(void* (*startRoutine)(void*), void* arg) in CreateThread()
295 if (pthread_create(&threadId, &threadAttr, startRoutine, arg) != 0) { in CreateThread()