Home | History | Annotate | Download | only in music

Lines Matching refs:BOOKMARK

131             MediaStore.Audio.Media.BOOKMARK    // index must match BOOKMARKCOLIDX below
947 // go to bookmark if needed
949 long bookmark = getBookmark();
950 // Start playing a little bit before the bookmark,
952 seek(bookmark - 5000);
1334 long bookmark = getBookmark();
1336 if ((pos < bookmark && (pos + 10000) > bookmark) ||
1337 (pos > bookmark && (pos - 10000) < bookmark)) {
1338 // The existing bookmark is close to the current
1343 // if we're near the start or end, clear the bookmark
1347 // write 'pos' to the bookmark field
1349 values.put(MediaStore.Audio.Media.BOOKMARK, pos);