• Home
  • Raw
  • Download

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);
152 text_t* p = read_into_spl_text_t(device, fd); in spl_to_playlist_t()
185 text_t* t; in playlist_t_to_spl()
327 static text_t* read_into_spl_text_t(LIBMTP_mtpdevice_t *device, const int fd) in read_into_spl_text_t()
340 text_t* head = NULL; in read_into_spl_text_t()
341 text_t* tail = NULL; in read_into_spl_text_t()
397 head = malloc(sizeof(text_t)); in read_into_spl_text_t()
401 tail->next = malloc(sizeof(text_t)); in read_into_spl_text_t()
453 text_t* p) { in write_from_spl_text_t()
506 static void free_spl_text_t(text_t* p) in free_spl_text_t()
508 text_t* d; in free_spl_text_t()
523 static void print_spl_text_t(text_t* p) in print_spl_text_t()
539 static uint32_t trackno_spl_text_t(text_t* p) { in trackno_spl_text_t()
561 static void tracks_from_spl_text_t(text_t* p, in tracks_from_spl_text_t()
588 static void spl_text_t_from_tracks(text_t** p, in spl_text_t_from_tracks()
599 text_t* c = NULL; in spl_text_t_from_tracks()
839 static void append_text_t(text_t** t, char* s) in append_text_t()
842 *t = malloc(sizeof(text_t)); in append_text_t()
845 (*t)->next = malloc(sizeof(text_t)); in append_text_t()