Lines Matching defs:UserStruct
74 @param[in] UserStruct Pointer to the user structure with the embedded
77 @retval <0 If StandaloneKey compares less than UserStruct's key.
79 @retval 0 If StandaloneKey compares equal to UserStruct's key.
81 @retval >0 If StandaloneKey compares greater than UserStruct's key.
88 IN CONST VOID *UserStruct
95 CmpStruct = UserStruct;
150 USER_STRUCT *UserStruct;
155 UserStruct = Ptr;
156 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
157 free (UserStruct);
183 USER_STRUCT *UserStruct;
188 UserStruct = Ptr;
189 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
190 free (UserStruct);
211 USER_STRUCT *UserStruct;
213 UserStruct = OrderedCollectionUserStruct (Entry);
214 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
233 USER_STRUCT *UserStruct;
235 UserStruct = OrderedCollectionUserStruct (Entry);
236 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
255 USER_STRUCT *UserStruct, *UserStruct2;
259 UserStruct = calloc (1, sizeof *UserStruct);
260 if (UserStruct == NULL) {
265 UserStruct->Key.Value = Value;
266 Status = OrderedCollectionInsert (Collection, &Entry, UserStruct);
276 assert (UserStruct != UserStruct2);
287 assert (OrderedCollectionUserStruct (Entry) == UserStruct);
292 free (UserStruct);
312 USER_STRUCT *UserStruct;
322 UserStruct = OrderedCollectionUserStruct (Entry);
323 assert (UserStruct->Key.Value == StandaloneKey.Value);
324 fprintf (Output, "%s: %d: found\n", __FUNCTION__, UserStruct->Key.Value);
345 USER_STRUCT *UserStruct;
357 UserStruct = Ptr;
358 assert (UserStruct->Key.Value == StandaloneKey.Value);
359 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
360 free (UserStruct);