Lines Matching refs:UserStruct

88   IN CONST VOID *UserStruct  in KeyCompare()  argument
95 CmpStruct = UserStruct; in KeyCompare()
150 USER_STRUCT *UserStruct; in CmdForwardEmpty() local
155 UserStruct = Ptr; in CmdForwardEmpty()
156 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value); in CmdForwardEmpty()
157 free (UserStruct); in CmdForwardEmpty()
183 USER_STRUCT *UserStruct; in CmdBackwardEmpty() local
188 UserStruct = Ptr; in CmdBackwardEmpty()
189 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value); in CmdBackwardEmpty()
190 free (UserStruct); in CmdBackwardEmpty()
211 USER_STRUCT *UserStruct; in CmdForwardList() local
213 UserStruct = OrderedCollectionUserStruct (Entry); in CmdForwardList()
214 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value); in CmdForwardList()
233 USER_STRUCT *UserStruct; in CmdBackwardList() local
235 UserStruct = OrderedCollectionUserStruct (Entry); in CmdBackwardList()
236 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value); in CmdBackwardList()
255 USER_STRUCT *UserStruct, *UserStruct2; in CmdInsert() local
259 UserStruct = calloc (1, sizeof *UserStruct); in CmdInsert()
260 if (UserStruct == NULL) { in CmdInsert()
265 UserStruct->Key.Value = Value; in CmdInsert()
266 Status = OrderedCollectionInsert (Collection, &Entry, UserStruct); in CmdInsert()
276 assert (UserStruct != UserStruct2); in CmdInsert()
287 assert (OrderedCollectionUserStruct (Entry) == UserStruct); in CmdInsert()
292 free (UserStruct); in CmdInsert()
312 USER_STRUCT *UserStruct; in CmdFind() local
322 UserStruct = OrderedCollectionUserStruct (Entry); in CmdFind()
323 assert (UserStruct->Key.Value == StandaloneKey.Value); in CmdFind()
324 fprintf (Output, "%s: %d: found\n", __FUNCTION__, UserStruct->Key.Value); in CmdFind()
345 USER_STRUCT *UserStruct; in CmdDelete() local
357 UserStruct = Ptr; in CmdDelete()
358 assert (UserStruct->Key.Value == StandaloneKey.Value); in CmdDelete()
359 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value); in CmdDelete()
360 free (UserStruct); in CmdDelete()