Searched refs:propType (Results 1 – 2 of 2) sorted by relevance
69 static int LockByProp(PropType propType);70 static void UnlockByProp(PropType propType);106 static string GetPropertyName(PropType propType) in GetPropertyName() argument108 return g_PropResources[static_cast<int>(propType)].name; in GetPropertyName()111 static int LockByProp(PropType propType) in LockByProp() argument113 if (g_PropResources[static_cast<int>(propType)].lock == nullptr) { in LockByProp()116 return pthread_mutex_trylock(g_PropResources[static_cast<int>(propType)].lock); in LockByProp()119 static void UnlockByProp(PropType propType) in UnlockByProp() argument121 if (g_PropResources[static_cast<int>(propType)].lock == nullptr) { in UnlockByProp()124 pthread_mutex_unlock(g_PropResources[static_cast<int>(propType)].lock); in UnlockByProp()[all …]
257 napi_value propType = nullptr; in GetValue() local258 napi_status status = napi_get_named_property(env, in, "type", &propType); in GetValue()261 status = GetValue(env, propType, panelType); in GetValue()