Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/support/posix/src/
H A Dosal_thread.c30 void *entryPara; member
62 int32_t OsalThreadCreate(struct OsalThread *thread, OsalThreadEntry threadEntry, void *entryPara) in OsalThreadCreate() argument
78 para->entryPara = entryPara; in OsalThreadCreate()
96 …t resultCode = pthread_create(threadId, attribute, (PosixEntry)para->threadEntry, para->entryPara); in OsalCreatePthread()
/ohos5.0/drivers/hdf_core/adapter/khdf/liteos/osal/src/
H A Dosal_thread.c48 void *entryPara; member
59 int32_t OsalThreadCreate(struct OsalThread *thread, OsalThreadEntry threadEntry, void *entryPara) in OsalThreadCreate() argument
75 para->entryPara = entryPara; in OsalThreadCreate()
138 stTskInitParam.auwArgs[0] = (uintptr_t)para->entryPara; in OsalThreadStart()
/ohos5.0/drivers/hdf_core/adapter/khdf/liteos_m/osal/src/
H A Dosal_thread.c48 void *entryPara; member
59 int32_t OsalThreadCreate(struct OsalThread *thread, OsalThreadEntry threadEntry, void *entryPara) in OsalThreadCreate() argument
75 para->entryPara = entryPara; in OsalThreadCreate()
131 stTskInitParam.uwArg = (uintptr_t)para->entryPara; in OsalThreadStart()
/ohos5.0/drivers/hdf_core/adapter/khdf/uniproton/osal/src/
H A Dosal_thread.c48 void *entryPara; member
59 int32_t OsalThreadCreate(struct OsalThread *thread, OsalThreadEntry threadEntry, void *entryPara) in OsalThreadCreate() argument
75 para->entryPara = entryPara; in OsalThreadCreate()
131 stTskInitParam.args[0] = (uintptr_t)para->entryPara; in OsalThreadStart()
/ohos5.0/drivers/hdf_core/interfaces/inner_api/osal/shared/
H A Dosal_thread.h112 int32_t OsalThreadCreate(struct OsalThread *thread, OsalThreadEntry threadEntry, void *entryPara);
/ohos5.0/drivers/hdf_core/framework/model/network/wifi/platform/src/qos/
H A Dflow_control_task.c127 struct OsalThreadParam *para, void *entryPara) in CreateTask() argument
129 int32_t status = OsalThreadCreate(thread, threadEntry, entryPara); in CreateTask()