Home
last modified time | relevance | path

Searched refs:record_streams (Results 1 – 6 of 6) sorted by relevance

/third_party/pulseaudio/src/modules/dbus/
Diface-client.c216 const char **record_streams = NULL; in get_record_streams() local
229 record_streams = pa_xnew(const char *, *n); in get_record_streams()
232 record_streams[i++] = pa_dbusiface_core_get_record_stream_path(c->core, source_output); in get_record_streams()
234 return record_streams; in get_record_streams()
239 const char **record_streams = NULL; in handle_get_record_streams() local
246 record_streams = get_record_streams(c, &n_record_streams); in handle_get_record_streams()
248 …pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, record_streams, n_record_… in handle_get_record_streams()
250 pa_xfree(record_streams); in handle_get_record_streams()
272 const char **record_streams = NULL; in handle_get_all() local
283 record_streams = get_record_streams(c, &n_record_streams); in handle_get_all()
[all …]
Diface-core.c103 pa_hashmap *record_streams; member
866 *n = pa_hashmap_size(c->record_streams); in get_record_streams()
873 PA_HASHMAP_FOREACH(stream, c->record_streams, state) in get_record_streams()
881 const char **record_streams; in handle_get_record_streams() local
888 record_streams = get_record_streams(c, &n); in handle_get_record_streams()
890 pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, record_streams, n); in handle_get_record_streams()
892 pa_xfree(record_streams); in handle_get_record_streams()
1078 const char **record_streams; in handle_get_all() local
1115 record_streams = get_record_streams(c, &n_record_streams); in handle_get_all()
1149 …OPERTY_HANDLER_RECORD_STREAMS].property_name, DBUS_TYPE_OBJECT_PATH, record_streams, n_record_stre… in handle_get_all()
[all …]
/third_party/pulseaudio/src/pulsecore/
Dprotocol-native.c186 pa_idxset *record_streams, *output_streams; member
342 pa_assert_se(pa_idxset_remove_by_data(s->connection->record_streams, s, NULL) == s); in record_stream_unlink()
607 pa_idxset_put(c->record_streams, s, &s->index); in record_stream_new()
1193 while ((r = pa_idxset_first(c->record_streams, NULL))) in native_connection_unlink()
1226 pa_idxset_free(c->record_streams, NULL); in native_connection_free()
1248 if (!(r = RECORD_STREAM(pa_idxset_rrobin(c->record_streams, &c->rrobin_index)))) in native_connection_send_memblock()
2158 if (!(s = pa_idxset_get_by_index(c->record_streams, channel))) { in command_delete_stream()
2936 s = pa_idxset_get_by_index(c->record_streams, idx); in command_get_record_latency()
4031 s = pa_idxset_get_by_index(c->record_streams, idx); in command_cork_record_stream()
4054 s = pa_idxset_get_by_index(c->record_streams, idx); in command_flush_record_stream()
[all …]
/third_party/pulseaudio/src/pulse/
Dinternal.h80 pa_hashmap *record_streams, *playback_streams; member
Dcontext.c155 c->record_streams = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func); in pa_context_new_with_proplist()
260 if (c->record_streams) in context_free()
261 pa_hashmap_free(c->record_streams); in context_free()
418 if ((s = pa_hashmap_get(c->record_streams, PA_UINT32_TO_PTR(channel)))) { in pstream_memblock_callback()
Dstream.c262 …pa_hashmap_remove((s->direction == PA_STREAM_RECORD) ? s->context->record_streams : s->context->pl… in stream_unlink()
434 …mand == PA_COMMAND_PLAYBACK_STREAM_KILLED ? c->playback_streams : c->record_streams, PA_UINT32_TO_… in pa_command_stream_killed()
556 …mmand == PA_COMMAND_PLAYBACK_STREAM_MOVED ? c->playback_streams : c->record_streams, PA_UINT32_TO_… in pa_command_stream_moved()
645 …= PA_COMMAND_PLAYBACK_BUFFER_ATTR_CHANGED ? c->playback_streams : c->record_streams, PA_UINT32_TO_… in pa_command_stream_buffer_attr()
697 …d == PA_COMMAND_PLAYBACK_STREAM_SUSPENDED ? c->playback_streams : c->record_streams, PA_UINT32_TO_… in pa_command_stream_suspended()
791 …mmand == PA_COMMAND_PLAYBACK_STREAM_EVENT ? c->playback_streams : c->record_streams, PA_UINT32_TO_… in pa_command_stream_event()
1174 …pa_hashmap_put((s->direction == PA_STREAM_RECORD) ? s->context->record_streams : s->context->playb… in pa_create_stream_callback()