Home
last modified time | relevance | path

Searched refs:tranIdStateList (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/
H A Dnstackx_file_manager.c2003 if (session == NULL || ListIsEmpty(&session->tranIdStateList.head)) in ClearTransStateList()
2006 if (PthreadMutexLock(&session->tranIdStateList.lock) != 0) { in ClearTransStateList()
2011 LIST_FOR_EACH_SAFE(pos, tmp, &session->tranIdStateList.head) { in ClearTransStateList()
2015 session->tranIdStateList.size--; in ClearTransStateList()
2018 if (PthreadMutexUnlock(&session->tranIdStateList.lock) != 0) { in ClearTransStateList()
2047 if (MutexListAddNode(&session->tranIdStateList, &node->list, 0) != NSTACKX_EOK) { in SetTransIdState()
2051 if (session->tranIdStateList.size == session->tranIdStateList.maxSize) { in SetTransIdState()
2079 if (session == NULL || ListIsEmpty(&session->tranIdStateList.head)) in GetTransIdState()
2082 if (PthreadMutexLock(&session->tranIdStateList.lock) != 0) { in GetTransIdState()
2086 LIST_FOR_EACH(pos, &session->tranIdStateList.head) { in GetTransIdState()
[all …]
H A Dnstackx_dfile.c880 if (MutexListInit(&session->tranIdStateList, MAX_TRANSTATELISTSIZE) != NSTACKX_EOK) { in DFileSessionMutexInit()
1007 MutexListDestory(&session->tranIdStateList); in DFileSessionClean()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/include/
H A Dnstackx_dfile_session.h144 MutexList tranIdStateList; member