Home | History | Annotate | Download | only in music

Lines Matching refs:Audio

60  * Provides "background" audio playback capabilities, allowing the
122 "audio._id AS _id", // index must match IDCOLIDX below
123 MediaStore.Audio.Media.ARTIST,
124 MediaStore.Audio.Media.ALBUM,
125 MediaStore.Audio.Media.TITLE,
126 MediaStore.Audio.Media.DATA,
127 MediaStore.Audio.Media.MIME_TYPE,
128 MediaStore.Audio.Media.ALBUM_ID,
129 MediaStore.Audio.Media.ARTIST_ID,
130 MediaStore.Audio.Media.IS_PODCAST, // index must match PODCASTCOLIDX below
131 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below
143 // used to track what type of audio focus loss caused the playback to pause
273 Log.e(LOGTAG, "Unknown audio focus change code");
475 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
481 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
634 // an in-progress action requesting audio focus ends, so don't stop the service now.
942 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
946 open(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI + "/" + id, false);
1008 uri = MediaStore.Audio.Media.getContentUriForPath(path);
1009 where = MediaStore.Audio.Media.DATA + "=?";
1349 values.put(MediaStore.Audio.Media.BOOKMARK, pos);
1351 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, mCursor.getLong(IDCOLIDX));
1402 c = res.query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
1403 new String[] {MediaStore.Audio.Media._ID}, MediaStore.Audio.Media.IS_MUSIC + "=1",
1596 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST));
1605 return mCursor.getLong(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST_ID));
1614 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM));
1623 return mCursor.getLong(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM_ID));
1632 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.TITLE));