• Home
  • Raw
  • Download

Lines Matching refs:ESR_SUCCESS

33   ESR_ReturnCode rc = ESR_SUCCESS;  in HashMapCreate_Internal()
41 if ((rc = PHashTableCreate(hashArgs, MTAG, &impl->table)) != ESR_SUCCESS) in HashMapCreate_Internal()
61 return ESR_SUCCESS; in HashMapCreate_Internal()
93 if ((rc = PHashTablePutValue(impl->table, clone, value, NULL)) != ESR_SUCCESS) in HashMap_Put()
112 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_Remove_Internal()
144 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_RemoveAll_Internal()
148 if ((rc = PHashTableEntryGetFirst(impl->table, &entry1)) != ESR_SUCCESS) in HashMap_RemoveAll_Internal()
153 if ((rc = PHashTableEntryGetKeyValue(entry1, (void **)&key, (void **)&value)) != ESR_SUCCESS) in HashMap_RemoveAll_Internal()
158 if ((rc = PHashTableEntryAdvance(&entry1)) != ESR_SUCCESS) in HashMap_RemoveAll_Internal()
160 if ((rc = PHashTableEntryRemove(entry2)) != ESR_SUCCESS) in HashMap_RemoveAll_Internal()
180 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_ContainsKey()
192 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_Get()
196 return ESR_SUCCESS; in HashMap_Get()
204 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_GetEntryAtIndex()
207 if ((rc = PHashTableEntryGetFirst(impl->table, entry)) != ESR_SUCCESS) in HashMap_GetEntryAtIndex()
213 if ((rc = PHashTableEntryAdvance(entry)) != ESR_SUCCESS) in HashMap_GetEntryAtIndex()
229 if ((rc = HashMap_GetEntryAtIndex(impl, index, &entry)) != ESR_SUCCESS) in HashMap_GetKeyAtIndex()
244 if ((rc = HashMap_GetEntryAtIndex(impl, index, &entry)) != ESR_SUCCESS) in HashMap_GetValueAtIndex()
260 if ((rc = HashMap_GetEntryAtIndex(impl, index, &entry)) != ESR_SUCCESS) in HashMap_RemoveAtIndex()
263 if ((rc = PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)NULL)) != ESR_SUCCESS) in HashMap_RemoveAtIndex()
283 ESR_ReturnCode rc = ESR_SUCCESS; in HashMap_Destroy()
285 if ((rc = self->removeAll(self)) != ESR_SUCCESS) in HashMap_Destroy()