Lines Matching refs:text_t

61 } text_t;  typedef
67 static text_t* read_into_spl_text_t(LIBMTP_mtpdevice_t *device, const int fd);
68 static void write_from_spl_text_t(LIBMTP_mtpdevice_t *device, const int fd, text_t* p);
69 static void free_spl_text_t(text_t* p);
70 static void print_spl_text_t(text_t* p);
71 static uint32_t trackno_spl_text_t(text_t* p);
72 static void tracks_from_spl_text_t(text_t* p, uint32_t* tracks, LIBMTP_folder_t* folders, LIBMTP_fi…
73 static void spl_text_t_from_tracks(text_t** p, uint32_t* tracks, const uint32_t trackno, const uint…
80 static void append_text_t(text_t** t, char* s);
151 text_t* p = read_into_spl_text_t(device, fd); in spl_to_playlist_t()
184 text_t* t; in playlist_t_to_spl()
328 static text_t* read_into_spl_text_t(LIBMTP_mtpdevice_t *device, const int fd) in read_into_spl_text_t()
341 text_t* head = NULL; in read_into_spl_text_t()
342 text_t* tail = NULL; in read_into_spl_text_t()
398 head = malloc(sizeof(text_t)); in read_into_spl_text_t()
402 tail->next = malloc(sizeof(text_t)); in read_into_spl_text_t()
454 text_t* p) { in write_from_spl_text_t()
509 static void free_spl_text_t(text_t* p) in free_spl_text_t()
511 text_t* d; in free_spl_text_t()
525 static void print_spl_text_t(text_t* p) in print_spl_text_t()
541 static uint32_t trackno_spl_text_t(text_t* p) { in trackno_spl_text_t()
563 static void tracks_from_spl_text_t(text_t* p, in tracks_from_spl_text_t()
591 static void spl_text_t_from_tracks(text_t** p, in spl_text_t_from_tracks()
602 text_t* c = NULL; in spl_text_t_from_tracks()
844 static void append_text_t(text_t** t, char* s) in append_text_t()
847 *t = malloc(sizeof(text_t)); in append_text_t()
850 (*t)->next = malloc(sizeof(text_t)); in append_text_t()