Home
last modified time | relevance | path

Searched refs:corked (Results 1 – 24 of 24) sorted by relevance

/third_party/node/test/parallel/
Dtest-stream-writableState-uncorked-bufferedRequestCount.js20 assert.strictEqual(writable._writableState.corked, 1);
25 assert.strictEqual(writable._writableState.corked, 2);
33 assert.strictEqual(writable._writableState.corked, 1);
40 assert.strictEqual(writable._writableState.corked, 1);
46 assert.strictEqual(writable._writableState.corked, 0);
55 assert.strictEqual(writable._writableState.corked, 0);
Dtest-http-response-cork.js7 let corked = false; variable
10 assert.strictEqual(corked, false);
13 corked = true;
21 corked = false;
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/
D_stream_writable.js145 this.corked = 0;
307 this._writableState.corked++;
311 if (state.corked) {
312 state.corked--;
313 …if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuff…
365 if (state.writing || state.corked) {
430 if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {
529 if (state.corked) {
530 state.corked = 1;
/third_party/pulseaudio/src/modules/
Dstream-interaction.c172 …struct userdata *u, pa_sink_input *i, const char *interaction_role, bool corked, struct group *g) { in uncork_or_unduck() argument
178 else if (corked || i->muted) { in uncork_or_unduck()
182 if (corked) in uncork_or_unduck()
197 bool corked, interaction_applied; in apply_interaction_to_sink() local
219 corked = (j->state == PA_SINK_INPUT_CORKED); in apply_interaction_to_sink()
220 if (new_stream && corked) in apply_interaction_to_sink()
221 corked = false; in apply_interaction_to_sink()
224 if (new_trigger && ((!corked && !j->muted) || u->duck)) { in apply_interaction_to_sink()
233 uncork_or_unduck(u, j, role, corked, g); in apply_interaction_to_sink()
252 bool corked; in remove_interactions() local
[all …]
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dwritable.js122 this.corked = 0
289 this._writableState.corked++
293 if (state.corked) {
294 state.corked--
317 if (state.writing || state.corked || state.errored || !state.constructed) {
468 if (state.corked || state.bufferProcessing || state.destroyed || !state.constructed) {
546 if (state.corked) {
547 state.corked = 1
759 return this._writableState ? this._writableState.corked : 0
/third_party/node/lib/internal/streams/
Dwritable.js136 this.corked = 0;
341 this._writableState.corked++;
347 if (state.corked) {
348 state.corked--;
379 if (state.writing || state.corked || state.errored || !state.constructed) {
533 if (state.corked ||
619 if (state.corked) {
620 state.corked = 1;
854 return this._writableState ? this._writableState.corked : 0;
/third_party/pulseaudio/src/tests/
Dinterpol-test.c157 bool corked = false; in START_TEST() local
233 if (corked != cork_now) { in START_TEST()
240 corked = cork_now; in START_TEST()
/third_party/gstreamer/gstplugins_good/ext/pulse/
Dpulsesrc.c91 static gboolean gst_pulsesrc_set_corked (GstPulseSrc * psrc, gboolean corked,
1543 pulsesrc->corked = TRUE; in gst_pulsesrc_prepare()
1700 gst_pulsesrc_set_corked (GstPulseSrc * psrc, gboolean corked, gboolean wait) in gst_pulsesrc_set_corked() argument
1705 GST_DEBUG_OBJECT (psrc, "setting corked state to %d", corked); in gst_pulsesrc_set_corked()
1709 if (psrc->corked != corked) { in gst_pulsesrc_set_corked()
1710 if (!(o = pa_stream_cork (psrc->stream, corked, in gst_pulsesrc_set_corked()
1719 psrc->corked = corked; in gst_pulsesrc_set_corked()
Dpulsesrc.h67 gboolean corked:1; member
Dpulsesink.c181 gboolean corked:1; member
268 pbuf->corked = TRUE; in gst_pulseringbuffer_init()
1000 pbuf->corked = TRUE; in gst_pulseringbuffer_acquire()
1117 gst_pulsering_set_corked (GstPulseRingBuffer * pbuf, gboolean corked, in gst_pulsering_set_corked() argument
1131 GST_DEBUG_OBJECT (psink, "setting corked state to %d", corked); in gst_pulsering_set_corked()
1132 if (pbuf->corked != corked) { in gst_pulsering_set_corked()
1133 if (!(o = pa_stream_cork (pbuf->stream, corked, in gst_pulsering_set_corked()
1142 pbuf->corked = corked; in gst_pulsering_set_corked()
1579 if (pbuf->corked) { in gst_pulseringbuffer_commit()
1684 if (pbuf->corked) { in gst_pulseringbuffer_commit()
[all …]
/third_party/node/lib/
D_http_outgoing.js210 const corked = this.socket ? this.socket.writableCorked : 0;
211 return corked + this[kCorked];
1064 this.socket._writableState.corked = 1;
/third_party/pulseaudio/src/pulse/
Dintrospect.h661 int corked; /**< Stream corked \since 1.0 */ member
711 int corked; /**< Stream corked \since 1.0 */ member
Dstream.c173 s->corked = false; in pa_stream_new_with_proplist_internal()
471 if (s->suspended || s->corked || force_stop) in check_smoother_status()
1268 s->corked = !!(flags & PA_STREAM_START_CORKED); in create_stream()
1308 PA_TAG_BOOLEAN, s->corked, in create_stream()
1773 if (!s->corked && !s->suspended) { in calc_time()
1797 if (!s->corked && !s->suspended) { in calc_time()
1962 if (o->stream->smoother && !o->stream->corked) { in stream_get_timing_info_callback()
2324 s->corked = b; in pa_stream_cork()
2809 return s->corked; in pa_stream_is_corked()
Dintrospect.c1226 bool mute = false, corked = false, has_volume = false, volume_writable = true; in context_get_sink_input_info_callback() local
1246 (o->context->version >= 19 && pa_tagstruct_get_boolean(t, &corked) < 0) || in context_get_sink_input_info_callback()
1258 i.corked = (int) corked; in context_get_sink_input_info_callback()
1331 bool mute = false, corked = false, has_volume = false, volume_writable = true; in context_get_source_output_info_callback() local
1349 (o->context->version >= 19 && pa_tagstruct_get_boolean(t, &corked) < 0) || in context_get_source_output_info_callback()
1363 i.corked = (int) corked; in context_get_source_output_info_callback()
Dinternal.h175 bool corked:1; member
/third_party/pulseaudio/src/utils/
Dpactl.c1352 pa_json_encoder_add_member_bool(encoder, "corked", i->corked); in get_sink_input_info_callback()
1390 pa_yes_no_localised(i->corked), in get_sink_input_info_callback()
1475 pa_json_encoder_add_member_bool(encoder, "corked", i->corked); in get_source_output_info_callback()
1513 pa_yes_no_localised(i->corked), in get_source_output_info_callback()
/third_party/pulseaudio/
DPROTOCOL208 bool corked
/third_party/pulseaudio/src/pulsecore/
Dprotocol-native.c1881 corked = false, in command_create_playback_stream() local
1919 PA_TAG_BOOLEAN, &corked, in command_create_playback_stream()
2058 (corked ? PA_SINK_INPUT_START_CORKED : 0) | in command_create_playback_stream()
2206 corked = false, in command_create_record_stream() local
2246 pa_tagstruct_get_boolean(t, &corked) < 0 || in command_create_record_stream()
2385 (corked ? PA_SOURCE_OUTPUT_START_CORKED : 0) | in command_create_record_stream()
/third_party/pulseaudio/vala/
Dlibpulse.vapi1469 public int corked;
1488 public int corked;
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md1059 …ps://github.com/nodejs/node/commit/7fc395a0d7)] - **http**: there is no `corked` property of `stre…
DCHANGELOG_V8.md4499 …3539ae3be)] - **(SEMVER-MAJOR)** **stream**: use plain objects for write/corked reqs (Brian White)…
/third_party/libwebsockets/minimal-examples/api-tests/api-test-fts/
Dthe-picture-of-dorian-gray.txt1985 gentleman, with corked eyebrows, a husky tragedy voice, and a figure
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/
Dthe-picture-of-dorian-gray.txt1985 gentleman, with corked eyebrows, a husky tragedy voice, and a figure
/third_party/gstreamer/gstplugins_good/
DChangeLog82784 to be careful and check if the stream is ready before changing its corked state.
90297 ensues since time doesn't continue in corked state and the clock id
114752 Keep track of the corked state of the stream.
121199 pulsesink: Track the corked/uncorked state ourselves
121200 Use an instance variable to track whether the stream is corked or not,
121208 a PAUSED->PLAYING state change, resulting in a corked stream. This avoids