/third_party/node/test/parallel/ |
H A D | test-stream-writableState-uncorked-bufferedRequestCount.js | 20 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);
|
/third_party/pulseaudio/src/modules/ |
H A D | stream-interaction.c | 172 static void uncork_or_unduck(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 215 /* Some applications start their streams corked, so the stream is uncorked by */ in apply_interaction_to_sink() 217 /* up, act as if it was not corked. In the case of module-role-cork this will */ in apply_interaction_to_sink() 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 in apply_interaction_to_sink() 252 bool corked; remove_interactions() local [all...] |
/third_party/node/lib/internal/streams/ |
H A D | writable.js | 136 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/ |
H A D | interpol-test.c | 157 bool corked = false; in START_TEST() local 233 if (corked != cork_now) { in START_TEST() 240 corked = cork_now; in START_TEST()
|
/third_party/pulseaudio/src/pulse/ |
H A D | introspect.h | 661 int corked; /**< Stream corked \since 1.0 */ member 711 int corked; /**< Stream corked \since 1.0 */ member
|
H A D | stream.c | 175 s->corked = false; in pa_stream_new_with_proplist_internal() 477 if (s->suspended || s->corked || force_stop) in check_smoother_status() 1282 s->corked = !!(flags & PA_STREAM_START_CORKED); in create_stream() 1322 PA_TAG_BOOLEAN, s->corked, in create_stream() 1787 if (!s->corked && !s->suspended) { in calc_time() 1811 if (!s->corked && !s->suspended) { in calc_time() 1975 /* Update smoother if we're not corked */ in stream_get_timing_info_callback() 1976 if (o->stream->smoother && !o->stream->corked) { in stream_get_timing_info_callback() 2352 s->corked = b; in pa_stream_cork() 2837 return s->corked; in pa_stream_is_corked() [all...] |
H A D | introspect.c | 1226 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()
|
H A D | internal.h | 175 bool corked:1; member
|
/third_party/node/lib/ |
H A D | _http_outgoing.js | 85 const kCorked = Symbol('corked'); 210 const corked = this.socket ? this.socket.writableCorked : 0; 211 return corked + this[kCorked]; 1064 this.socket._writableState.corked = 1;
|
/third_party/pulseaudio/src/utils/ |
H A D | pactl.c | 1359 pa_json_encoder_add_member_bool(encoder, "corked", i->corked); in get_sink_input_info_callback() 1397 pa_yes_no_localised(i->corked), in get_sink_input_info_callback() 1482 pa_json_encoder_add_member_bool(encoder, "corked", i->corked); in get_source_output_info_callback() 1520 pa_yes_no_localised(i->corked), in get_source_output_info_callback()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | protocol-native.c | 1735 corked = false, in command_create_playback_stream() local 1773 PA_TAG_BOOLEAN, &corked, in command_create_playback_stream() 1912 (corked ? PA_SINK_INPUT_START_CORKED : 0) | in command_create_playback_stream() 2060 corked = false, in command_create_record_stream() local 2100 pa_tagstruct_get_boolean(t, &corked) < 0 || in command_create_record_stream() 2239 (corked ? PA_SOURCE_OUTPUT_START_CORKED : 0) | in command_create_record_stream()
|