Lines Matching refs:VkAllocationCallbacks
64 VkAllocationCallbacks *pAllocator;
69 cJSON *cJSON_Parse(const VkAllocationCallbacks *pAllocator, const char *value);
83 void cJSON_Free(const VkAllocationCallbacks *pAllocator, void *p);
99 cJSON *cJSON_CreateNull(const VkAllocationCallbacks *pAllocator);
100 cJSON *cJSON_CreateTrue(const VkAllocationCallbacks *pAllocator);
101 cJSON *cJSON_CreateFalse(const VkAllocationCallbacks *pAllocator);
102 cJSON *cJSON_CreateBool(const VkAllocationCallbacks *pAllocator, int b);
103 cJSON *cJSON_CreateNumber(const VkAllocationCallbacks *pAllocator, double num);
104 cJSON *cJSON_CreateString(const VkAllocationCallbacks *pAllocator, const char *string);
105 cJSON *cJSON_CreateArray(const VkAllocationCallbacks *pAllocator);
106 cJSON *cJSON_CreateObject(const VkAllocationCallbacks *pAllocator);
109 cJSON *cJSON_CreateIntArray(const VkAllocationCallbacks *pAllocator, const int *numbers, int count);
110 cJSON *cJSON_CreateFloatArray(const VkAllocationCallbacks *pAllocator, const float *numbers, int co…
111 cJSON *cJSON_CreateDoubleArray(const VkAllocationCallbacks *pAllocator, const double *numbers, int …
112 cJSON *cJSON_CreateStringArray(const VkAllocationCallbacks *pAllocator, const char **strings, int c…
147 cJSON *cJSON_ParseWithOpts(const VkAllocationCallbacks *pAllocator, const char *value, const char *…