Lines Matching refs:commitId

53     ATOMIC_SYNC_OR_AND_FETCH(&param->commitId, PARAM_FLAGS_WAITED, MEMORY_ORDER_RELEASE);  in SystemCheckMatchParamWait()
140 entry->commitId, entry->keyLength, entry->valueLength, entry->data); in DumpTrieDataNodeTraversal()
174 PARAM_DUMP(" commitId : %" PRId64 "\n", workSpace->area->commitId); in HashNodeTraverseForDump()
434 ATOMIC_SYNC_ADD_AND_FETCH(&workSpace->area->commitId, 1, MEMORY_ORDER_RELEASE); in AddParam()
438 ATOMIC_SYNC_ADD_AND_FETCH(&space->area->commitId, 1, MEMORY_ORDER_RELEASE); in AddParam()
456 uint32_t commitId = ATOMIC_LOAD_EXPLICIT(&entry->commitId, MEMORY_ORDER_RELAXED); in UpdateParam() local
457 ATOMIC_STORE_EXPLICIT(&entry->commitId, commitId | PARAM_FLAGS_MODIFY, MEMORY_ORDER_RELAXED); in UpdateParam()
464 uint32_t flags = commitId & ~PARAM_FLAGS_COMMITID; in UpdateParam()
465 uint32_t commitIdCount = (++commitId) & PARAM_FLAGS_COMMITID; in UpdateParam()
466 ATOMIC_STORE_EXPLICIT(&entry->commitId, flags | commitIdCount, MEMORY_ORDER_RELEASE); in UpdateParam()
467 ATOMIC_SYNC_ADD_AND_FETCH(&workSpace->area->commitId, 1, MEMORY_ORDER_RELEASE); in UpdateParam()
471 ATOMIC_SYNC_ADD_AND_FETCH(&space->area->commitId, 1, MEMORY_ORDER_RELEASE); in UpdateParam()
477 entry->commitId |= PARAM_FLAGS_PERSIST; in UpdateParam()
479 futex_wake(&entry->commitId, INT_MAX); in UpdateParam()
723 uint32_t commitId = ReadCommitId(entry); in ReadParamValue() local
724 return ReadParamValue_(entry, &commitId, value, length); in ReadParamValue()
776 int SystemGetParameterCommitId(ParamHandle handle, uint32_t *commitId) in SystemGetParameterCommitId() argument
780 PARAM_CHECK(handle != 0 && commitId != NULL, return -1, "The handle is null"); in SystemGetParameterCommitId()
785 *commitId = ReadCommitId(entry); in SystemGetParameterCommitId()
796 return ATOMIC_UINT64_LOAD_EXPLICIT(&space->area->commitId, MEMORY_ORDER_ACQUIRE); in GetSystemCommitId()