/external/libmtp/examples/ |
getplaylist.c | 30 printf("Number of items: %u\n", pl->no_tracks); 31 if(pl->no_tracks > 0) { 32 for(i=0;i<pl->no_tracks;i++) {
|
albums.c | 34 printf(" Tracks: %d\n\n",album->no_tracks);
|
newplaylist.c | 91 playlist->no_tracks = idcount;
|
playlists.c | 35 for (i = 0; i < pl->no_tracks; i++) {
|
sendtr.c | 125 tracks = (uint32_t *)malloc((found_album->no_tracks+1) * sizeof(uint32_t)); 131 found_album->no_tracks++; 133 memcpy(tracks, found_album->tracks, found_album->no_tracks * sizeof(uint32_t)); 136 tracks[found_album->no_tracks-1] = trackmeta->item_id; 146 albuminfo->no_tracks = 1;
|
albumart.c | 134 album->no_tracks = idcount;
|
/external/libmtp/src/ |
playlist-spl.c | 130 pl->no_tracks = 0; 161 pl->no_tracks = trackno_spl_text_t(p); 162 IF_DEBUG() printf("%u track%s found\n", pl->no_tracks, pl->no_tracks==1?"":"s"); 163 pl->tracks = malloc(sizeof(uint32_t)*(pl->no_tracks)); 211 IF_DEBUG() printf("%u track%s\n", pl->no_tracks, pl->no_tracks==1?"":"s"); 215 spl_text_t_from_tracks(&t, pl->tracks, pl->no_tracks, ver_major, ver_minor, NULL, folders, files); 277 if(old->no_tracks != newlist->no_tracks) [all...] |
libmtp.h | 660 uint32_t no_tracks; /**< The number of tracks in this playlist */ member in struct:LIBMTP_playlist_struct 676 uint32_t no_tracks; /**< The number of tracks in this album */ member in struct:LIBMTP_album_struct [all...] |
libmtp.h.in | 658 uint32_t no_tracks; /**< The number of tracks in this playlist */ 674 uint32_t no_tracks; /**< The number of tracks in this album */
|
libmtp.c | 165 uint32_t const no_tracks); 174 uint32_t const no_tracks); [all...] |