HomeSort by relevance Sort by last modified time
    Searched refs:playlist (Results 1 - 16 of 16) sorted by null

  /external/libmtp/examples/
newplaylist.c 3 * Example program to create a playlist on a device.
72 printf("You need to supply a playlist name.\n");
89 LIBMTP_playlist_t *playlist = LIBMTP_new_playlist_t(); local
90 playlist->name = playlistname;
91 playlist->no_tracks = idcount;
92 playlist->tracks = ids;
93 playlist->parent_id = 0;
94 playlist->storage_id = 0;
95 int ret = LIBMTP_Create_New_Playlist(device,playlist);
97 printf("Couldn't create playlist object\n")
    [all...]
getplaylist.c 52 LIBMTP_playlist_t *playlist; local
60 fprintf(stderr, "Just a playlist ID is required\n");
64 // Sanity check playlist ID
70 fprintf(stderr, "bad playlist id %u\n", id);
81 playlist = LIBMTP_Get_Playlist(device,id);
83 if (playlist != NULL) {
84 dump_playlist(device,playlist);
87 LIBMTP_destroy_playlist_t(playlist);
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 180 sp<M3UParser> playlist = fetchPlaylist(url.c_str(), &dummy); local
182 if (playlist == NULL) {
183 ALOGE("unable to fetch master playlist '%s'.", url.c_str());
189 if (playlist->isVariantPlaylist()) {
190 for (size_t i = 0; i < playlist->size(); ++i) {
194 playlist->itemAt(i, &item.mURI, &meta);
343 // playlist unchanged
351 ALOGV("Playlist unchanged, refresh state is now %d",
362 sp<M3UParser> playlist = local
365 if (playlist->initCheck() != OK)
560 sp<M3UParser> playlist = fetchPlaylist(url.c_str(), &unchanged); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
mediaplayer_ui.cc 57 static const char* kMediaplayerPlaylistURL = "chrome://mediaplayer#playlist";
137 // Sets the playlist for playlist views, since the playlist is
139 // playlist which is either now playing, or should be played.
140 void SetCurrentPlaylist(const UrlVector& playlist, int offset);
143 // The current playlist of urls.
147 // Indicator of if this handler is a playlist or a mediaplayer.
297 const MediaplayerHandler::UrlVector& playlist, int offset) {
298 current_playlist_ = playlist;
    [all...]
  /packages/apps/Music/src/com/android/music/
CreatePlaylist.java 55 mPlaylist = (EditText)findViewById(R.id.playlist);
88 // check if playlist with current name exists already, and warn the user if so.
151 // you have playlists named "New Playlist 1"/10/2/3/4/5/6/7/8/9, where
152 // making only one pass would result in "New Playlist 10" being erroneously
RenamePlaylist.java 56 mPlaylist = (EditText)findViewById(R.id.playlist);
97 // check if playlist with current name exists already, and warn the user if so.
MediaPlaybackActivity.java 399 .putExtra("playlist", "nowplaying")
601 long playlist = item.getIntent().getLongExtra("playlist", 0); local
602 MusicUtils.addToPlaylist(this, list, playlist);
650 int playlist = Integer.parseInt(uri.getLastPathSegment()); local
651 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
AlbumBrowserActivity.java 151 // in the middle of specifying a playlist to add the item to.
323 long playlist = item.getIntent().getLongExtra("playlist", 0); local
324 MusicUtils.addToPlaylist(this, list, playlist);
ArtistAlbumBrowserActivity.java 150 // in the middle of specifying a playlist to add the item to.
418 long playlist = item.getIntent().getLongExtra("playlist", 0); local
419 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
MusicUtils.java 404 * Fills out the given submenu with items for "new playlist" and
407 * the selected playlist, NEW_PLAYLIST if a new playlist
408 * should be created, and QUEUE if the "current playlist" was
434 intent.putExtra("playlist", cur.getLong(0));
474 // step 1: remove selected tracks from the current playlist, as well
479 // remove from current playlist
539 * @param ids The source array containing all the ids to be added to the playlist
572 // need to determine the number of items currently in the playlist,
808 // figure out if we need to restart with a new playlist,
810 long [] playlist = sService.getQueue(); local
    [all...]
TrackBrowserActivity.java 126 mPlaylist = icicle.getString("playlist");
134 mPlaylist = intent.getStringExtra("playlist");
351 // in the middle of specifying a playlist to add the item to.
355 outcicle.putString("playlist", mPlaylist);
532 // update a saved playlist
549 Log.d(LOGTAG, "No view when removing playlist item " + which);
705 long playlist = item.getIntent().getLongExtra("playlist", 0); local
706 MusicUtils.addToPlaylist(this, list, playlist);
820 // remove track from playlist
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 4240 long playlist = Long.valueOf(segments.get(3)); local
    [all...]
  /external/libmtp/src/
libmtp.c 43 #include "playlist-spl.h"
365 register_filetype("Abstract Playlist file", LIBMTP_FILETYPE_PLAYLIST, PTP_OFC_MTP_AbstractAudioVideoPlaylist);
    [all...]
  /build/tools/droiddoc/templates-ds/assets/css/
default.css     [all...]
  /build/tools/droiddoc/templates-sac/assets/css/
default.css     [all...]
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css     [all...]

Completed in 198 milliseconds