Home | History | Annotate | Download | only in media

Lines Matching refs:fileList

1575         Cursor fileList = null;
1583 fileList = mMediaProvider.query(mFilesUri,
1585 processPlayList(entry, fileList);
1599 if (fileList != null) {
1600 fileList.close();
1707 private void processCachedPlaylist(Cursor fileList, ContentValues values, Uri playlistUri) {
1708 fileList.moveToPosition(-1);
1709 while (fileList.moveToNext()) {
1710 long rowId = fileList.getLong(FILES_PRESCAN_ID_COLUMN_INDEX);
1711 String data = fileList.getString(FILES_PRESCAN_PATH_COLUMN_INDEX);
1738 ContentValues values, Cursor fileList) {
1755 processCachedPlaylist(fileList, values, uri);
1770 ContentValues values, Cursor fileList) {
1790 processCachedPlaylist(fileList, values, uri);
1809 public WplHandler(String playListDirectory, Uri uri, Cursor fileList) {
1839 ContentValues values, Cursor fileList) {
1848 new WplHandler(playListDirectory, uri, fileList).getContentHandler());
1850 processCachedPlaylist(fileList, values, uri);
1866 private void processPlayList(FileEntry entry, Cursor fileList) throws RemoteException {
1908 processM3uPlayList(path, playListDirectory, membersUri, values, fileList);
1910 processPlsPlayList(path, playListDirectory, membersUri, values, fileList);
1912 processWplPlayList(path, playListDirectory, membersUri, values, fileList);
1918 Cursor fileList = null;
1922 fileList = mMediaProvider.query(mFilesUri, FILES_PRESCAN_PROJECTION,
1928 processPlayList(entry, fileList);
1933 if (fileList != null) {
1934 fileList.close();