Lines Matching refs:priority

51  * on priority and then by age within that priority. Limiting the maximum
68 * <p>Priority runs low to high, i.e. higher numbers are higher priority.
72 * the lowest priority stream. If there are multiple streams with the same
73 * low priority, it will choose the oldest stream to stop. In the case
74 * where the priority of the new stream is lower than all the active
96 * is stopped to allow a higher priority stream to play, the stream is no
135 * @param priority the priority of the sound. Currently has no effect. Use
139 public int load(String path, int priority) {
140 return mImpl.load(path, priority);
154 * @param priority the priority of the sound. Currently has no effect. Use
158 public int load(Context context, int resId, int priority) {
159 return mImpl.load(context, resId, priority);
166 * @param priority the priority of the sound. Currently has no effect. Use
170 public int load(AssetFileDescriptor afd, int priority) {
171 return mImpl.load(afd, priority);
184 * @param priority the priority of the sound. Currently has no effect. Use
188 public int load(FileDescriptor fd, long offset, long length, int priority) {
189 return mImpl.load(fd, offset, length, priority);
225 * @param priority stream priority (0 = lowest priority)
231 int priority, int loop, float rate) {
233 soundID, leftVolume, rightVolume, priority, loop, rate);
328 * Change stream priority.
330 * Change the priority of the stream specified by the streamID.
337 public final void setPriority(int streamID, int priority) {
338 mImpl.setPriority(streamID, priority);
412 public int load(String path, int priority);
413 public int load(Context context, int resId, int priority);
414 public int load(AssetFileDescriptor afd, int priority);
416 FileDescriptor fd, long offset, long length, int priority);
420 int priority, int loop, float rate);
428 public void setPriority(int streamID, int priority);
469 public int load(String path, int priority)
473 return _load(path, priority);
481 id = _load(fd.getFileDescriptor(), 0, f.length(), priority);
490 public int load(Context context, int resId, int priority) {
494 id = _load(afd.getFileDescriptor(), afd.getStartOffset(), afd.getLength(), priority);
504 public int load(AssetFileDescriptor afd, int priority) {
510 return _load(afd.getFileDescriptor(), afd.getStartOffset(), len, priority);
516 public int load(FileDescriptor fd, long offset, long length, int priority) {
517 return _load(fd, offset, length, priority);
520 private native final int _load(String uri, int priority);
522 private native final int _load(FileDescriptor fd, long offset, long length, int priority);
527 int priority, int loop, float rate);
546 public native final void setPriority(int streamID, int priority);
627 public int load(String path, int priority) {
631 public int load(Context context, int resId, int priority) {
635 public int load(AssetFileDescriptor afd, int priority) {
639 public int load(FileDescriptor fd, long offset, long length, int priority) {
648 int priority, int loop, float rate) {
668 public final void setPriority(int streamID, int priority) { }