Lines Matching full:events
7 Get list of events, sorted by given criteria.
27 The _tep_list_events()_ function returns an array of pointers to the events,
46 The _tep_list_events()_ function returns an array of pointers to events.
50 The _tep_list_events_copy()_ function returns an array of pointers to events.
63 struct tep_event_format **events;
66 events = tep_list_events(tep, TEP_EVENT_SORT_ID);
67 if (events == NULL) {
68 /* Failed to get the events, sorted by ID */
70 while(events[i]) {
71 /* walk through the list of the events, sorted by ID */
77 events = tep_list_events_copy(tep, TEP_EVENT_SORT_NAME);
78 if (events == NULL) {
79 /* Failed to get the events, sorted by name */
81 while(events[i]) {
82 /* walk through the list of the events, sorted by name */
85 free(events);