Home
last modified time | relevance | path

Searched refs:source_name (Results 1 – 25 of 77) sorted by relevance

1234

/third_party/python/Lib/test/
Dtest_linecache.py154 source_name = os_helper.TESTFN + '.py'
155 self.addCleanup(os_helper.unlink, source_name)
156 with open(source_name, 'w', encoding='utf-8') as source:
158 getline(source_name, 1)
162 with open(source_name, encoding='utf-8') as source:
164 self.assertEqual(line, getline(source_name, index + 1))
167 with open(source_name, 'w', encoding='utf-8') as source:
175 self.assertEqual(line, getline(source_name, index + 1))
178 linecache.checkcache(source_name)
179 with open(source_name, encoding='utf-8') as source:
[all …]
/third_party/jerryscript/jerry-debugger/
Djerry_client_main.py161 result = self.function.source_name or "<unknown>"
175 def __init__(self, line=None, source_name=None, function=None): argument
178 self.source_name = source_name
183 result = self.source_name or ""
193 …def __init__(self, is_func, byte_code_cp, source, source_name, line, column, name, lines, offsets): argument
197 self.source_name = source_name
217 % (self.byte_code_cp, self.source_name, self.name, self.line, self.column))
275 self.source_name = ''
612 if (breakpoint.line and existing_bp.source_name == breakpoint.source_name and \
835 if last_bp.function.source_name:
[all …]
/third_party/pulseaudio/src/modules/
Dmodule-always-source.c51 char *source_name; member
80 t = pa_sprintf_malloc("source_name=%s", u->source_name); in load_null_source_if_needed()
161 u->source_name = pa_xstrdup(pa_modargs_get_value(ma, "source_name", DEFAULT_SOURCE_NAME)); in pa__init()
185 pa_xfree(u->source_name); in pa__done()
Dmodule-tunnel.c233 char *source_name; member
1510 if (!u->source_name || !pa_streq(name, u->source_name)) in source_info_cb()
1556 if (u->source_name) { in request_info()
1561 pa_tagstruct_puts(t, u->source_name); in request_info()
1677 pa_xfree(u->source_name); in create_stream_callback()
1678 u->source_name = pa_xstrdup(dn); in create_stream_callback()
1784 u->source_name, in setup_complete_callback()
1850 pa_tagstruct_puts(reply, u->source_name); in setup_complete_callback()
2172 …roplist, PA_PROP_DEVICE_DESCRIPTION, "%s%s%s", pa_strempty(u->source_name), u->source_name ? " on … in create_source()
2174 if (u->source_name) in create_source()
[all …]
Dmodule-tunnel-source-new.c108 char *source_name; member
563 pa_source_new_data_set_name(&source_data, u->source_name); in create_source()
678 u->source_name = pa_xstrdup(pa_modargs_get_value(ma, "source_name", default_source_name)); in do_init()
773 if (u->source_name) in do_done()
774 pa_xfree(u->source_name); in do_done()
/third_party/node/deps/v8/src/codegen/
Dsource-position.cc102 Object source_name; in Print() local
105 source_name = script.name(); in Print()
109 if (source_name.IsString()) { in Print()
110 out << String::cast(source_name) in Print()
/third_party/pulseaudio/src/utils/
Dpactl.c55 *source_name = NULL, variable
1947 …pa_operation_unref(pa_context_set_source_volume_by_name(c, source_name, &cv, simple_callback, NULL… in set_source_volume_callback()
2341 …o = pa_context_move_source_output_by_name(c, source_output_idx, source_name, simple_callback, NULL… in context_state_callback()
2363 if (source_name) in context_state_callback()
2364 … o = pa_context_suspend_source_by_name(c, source_name, suspend, simple_callback, NULL); in context_state_callback()
2386 … o = pa_context_set_source_port_by_name(c, source_name, port_name, simple_callback, NULL); in context_state_callback()
2394 o = pa_context_set_default_source(c, source_name, simple_callback, NULL); in context_state_callback()
2409 … o = pa_context_get_source_info_by_name(c, source_name, get_source_mute_callback, NULL); in context_state_callback()
2414 … o = pa_context_get_source_info_by_name(c, source_name, source_toggle_mute_callback, NULL); in context_state_callback()
2416 … o = pa_context_set_source_mute_by_name(c, source_name, mute, simple_callback, NULL); in context_state_callback()
[all …]
/third_party/node/deps/v8/tools/ignition/
Dbytecode_dispatches_report.py123 for source_name, counter, ratio in top_sources:
124 print("{:>12d}\t{:>5.1f}%\t{}".format(counter, ratio * 100, source_name))
/third_party/pulseaudio/src/pulsecore/
Dprotocol-http.c534 static void handle_listen_prefix(struct connection *c, const char *source_name) { in handle_listen_prefix() argument
543 pa_assert(source_name); in handle_listen_prefix()
548 if (!(source = pa_namereg_get(c->protocol->core, source_name, PA_NAMEREG_SOURCE))) { in handle_listen_prefix()
Dsource-output.c1564 static void set_preferred_source(pa_source_output *o, const char *source_name) { in set_preferred_source() argument
1567 if (pa_safe_streq(o->preferred_source, source_name)) in set_preferred_source()
1571 …->index, o->preferred_source ? o->preferred_source : "(unset)", source_name ? source_name : "(unse… in set_preferred_source()
1573 o->preferred_source = pa_xstrdup(source_name); in set_preferred_source()
Dprotocol-native.c2199 const char *name = NULL, *source_name; in command_create_record_stream() local
2244 pa_tagstruct_gets(t, &source_name) < 0 || in command_create_record_stream()
2254 …CHECK_VALIDITY_GOTO(c->pstream, !source_name || pa_namereg_is_valid_name_or_wildcard(source_name, … in command_create_record_stream()
2255 …CHECK_VALIDITY_GOTO(c->pstream, source_index == PA_INVALID_INDEX || !source_name, tag, PA_ERR_INVA… in command_create_record_stream()
2256 …CHECK_VALIDITY_GOTO(c->pstream, !source_name || source_index == PA_INVALID_INDEX, tag, PA_ERR_INVA… in command_create_record_stream()
2368 } else if (source_name) { in command_create_record_stream()
2370 if (!(source = pa_namereg_get(c->protocol->core, source_name, PA_NAMEREG_SOURCE))) { in command_create_record_stream()
/third_party/node/deps/v8/src/compiler/
Dgraph-visualizer.cc105 Object source_name = script->name(); in JsonPrintFunctionSource() local
107 if (source_name.IsString()) { in JsonPrintFunctionSource()
109 escaped_name << String::cast(source_name).ToCString().get(); in JsonPrintFunctionSource()
220 Object source_name = Script::cast(info->shared_info()->script()).name(); in GetVisualizerLogFileName() local
221 if (source_name.IsString()) { in GetVisualizerLogFileName()
222 String str = String::cast(source_name); in GetVisualizerLogFileName()
Dpipeline.cc838 Object source_name = script->name(); in PrintFunctionSource() local
841 if (source_name.IsString()) { in PrintFunctionSource()
842 os << String::cast(source_name).ToCString().get() << ":"; in PrintFunctionSource()
/third_party/pulseaudio/src/daemon/
Ddefault.pa.in48 load-module module-waveout sink_name=output source_name=input
/third_party/pulseaudio/src/pulse/
Dintrospect.h424 pa_operation* pa_context_suspend_source_by_name(pa_context *c, const char *source_name, int suspend…
729 …xt_move_source_output_by_name(pa_context *c, uint32_t idx, const char *source_name, pa_context_suc…
Dintrospect.c2059 …xt_move_source_output_by_name(pa_context *c, uint32_t idx, const char *source_name, pa_context_suc… in pa_context_move_source_output_by_name() argument
2071 PA_CHECK_VALIDITY_RETURN_NULL(c, source_name && *source_name, PA_ERR_INVALID); in pa_context_move_source_output_by_name()
2078 pa_tagstruct_puts(t, source_name); in pa_context_move_source_output_by_name()
2160 pa_operation* pa_context_suspend_source_by_name(pa_context *c, const char *source_name, int suspend… in pa_context_suspend_source_by_name() argument
2171 PA_CHECK_VALIDITY_RETURN_NULL(c, !source_name || *source_name, PA_ERR_INVALID); in pa_context_suspend_source_by_name()
2177 pa_tagstruct_puts(t, source_name); in pa_context_suspend_source_by_name()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dcmake.py144 def SetFileProperty(output, source_name, property_name, values, sep): argument
147 output.write(source_name)
/third_party/node/tools/gyp/pylib/gyp/generator/
Dcmake.py144 def SetFileProperty(output, source_name, property_name, values, sep): argument
147 output.write(source_name)
/third_party/pulseaudio/src/modules/dbus/
Diface-core.c1228 char *source_name; in handle_get_source_by_name() local
1237 … pa_assert_se(dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &source_name, DBUS_TYPE_INVALID)); in handle_get_source_by_name()
1239 if (!(source = pa_namereg_get(c->core, source_name, PA_NAMEREG_SOURCE))) { in handle_get_source_by_name()
1240 pa_dbus_send_error(conn, msg, PA_DBUS_ERROR_NOT_FOUND, "%s: No such source.", source_name); in handle_get_source_by_name()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp432 const char* source_name);
465 const char* source_name) in bindShaderStage() argument
471 deUint32* pCode = (deUint32*)m_context.getBinaryCollection().get(source_name).getBinary(); in bindShaderStage()
472 deUint32 codeSize = (deUint32)m_context.getBinaryCollection().get(source_name).getSize(); in bindShaderStage()
/third_party/rust/crates/serde/serde_derive/src/internals/
Dattr.rs154 source_name: String, in from_attrs()
175 serialize: ser_name.unwrap_or_else(|| source_name.clone()), in from_attrs()
177 deserialize: de_name.unwrap_or(source_name), in from_attrs()
/third_party/pulseaudio/po/
Dzh_TW.po1033 "source_name=<name for the source> source_properties=<properties for the "
1044 "source_name=<來源名稱> source_properties=<來源的屬性> source_master=<要過濾的"
1150 #. TODO: old tunnel put here the remote source_name into stream name e.g. 'Null Output for lynxis@l…
3943 #~ "source_name=<name for the source> source_properties=<properties for the "
3954 #~ "source_name=<來源的名稱> source_properties=<來源的屬性> source_master=<要"
Dbe.po1119 "source_name=<name for the source> source_properties=<properties for the "
1130 "source_name=<назва крыніцы> source_properties=<уласьцівасьці крыніцы> "
1245 #. TODO: old tunnel put here the remote source_name into stream name e.g. 'Null Output for lynxis@l…
Dzh_CN.po1034 "source_name=<name for the source> source_properties=<properties for the "
1045 "source_name=<信源名称> source_properties=<信源属性> source_master=<工作信源名"
1149 #. TODO: old tunnel put here the remote source_name into stream name e.g. 'Null Output for lynxis@l…
/third_party/vulkan-loader/loader/
Dloader.c859 const char *source_name = names[i]; in loader_add_layer_names_to_list() local
860 layer_prop = loader_find_layer_property(source_name, source_list); in loader_add_layer_names_to_list()
863 "loader_add_layer_names_to_list: Unable to find layer %s", source_name); in loader_add_layer_names_to_list()
869 if (loader_find_layer_name_in_list(source_name, output_list)) { in loader_add_layer_names_to_list()

1234