Home | History | Annotate | Download | only in jni

Lines Matching refs:discontinuity

79 // whether a discontinuity is in progress
80 jboolean discontinuity = JNI_FALSE;
82 static jboolean enqueueInitialBuffers(jboolean discontinuity);
108 // note there is never any contention on this mutex unless a discontinuity request is active
112 // was a discontinuity requested?
113 if (discontinuity) {
121 // Enqueue the initial buffers, with a discontinuity indicator on first buffer
124 // acknowledge the discontinuity request
125 discontinuity = JNI_FALSE;
295 // Enqueue the initial buffers, and optionally signal a discontinuity in the first buffer
296 static jboolean enqueueInitialBuffers(jboolean discontinuity)
315 if (discontinuity) {
316 // signal discontinuity
320 // DISCONTINUITY message has no parameters,
327 discontinuity = JNI_FALSE;
532 discontinuity = JNI_TRUE;
533 // wait for discontinuity request to be observed by buffer queue callback
535 while (discontinuity && !reachedEof) {