Home | History | Annotate | Download | only in src

Lines Matching refs:LCHAR

79 ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value)
90 LCHAR *clone = (LCHAR *) MALLOC(sizeof(LCHAR) * (LSTRLEN(key) + 1), MTAG);
109 static ESR_ReturnCode HashMap_Remove_Internal(HashMapImpl* impl, const LCHAR* key, ESR_BOOL freeValue)
113 LCHAR *clonedKey = NULL;
129 ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key)
134 ESR_ReturnCode HashMap_RemoveAndFree(HashMap* self, const LCHAR* key)
145 LCHAR *key = NULL;
177 ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists)
188 ESR_ReturnCode HashMap_Get(HashMap* self, const LCHAR* key, void** value)
223 ESR_ReturnCode HashMap_GetKeyAtIndex(HashMap* self, const size_t index, LCHAR** key)