Home
last modified time | relevance | path

Searched refs:command_name (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Dgenerate_gl_dispatch_table.py301 command_name = command.attrib['name']
302 safe_append(api_feature_info, command_name, (api, name, number))
312 command_name = command.attrib['name']
315 if '_KHR_' in extension_name and not command_name.endswith('KHR'):
316 safe_append(gl_extension_commands, command_name, extension_name)
317 safe_append(gles2_extension_commands, command_name, extension_name)
319 safe_append(both_extension_commands, command_name, extension_name)
321 safe_append(gl_extension_commands, command_name, extension_name)
323 safe_append(gles2_extension_commands, command_name, extension_name)
465 command_name = proto.find('name').text
[all …]
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/
Drtmpconnection.c175 gchar *command_name; member
181 expected_command_new (guint32 stream_id, const gchar * command_name, in expected_command_new() argument
186 data->command_name = g_strdup (command_name); in expected_command_new()
196 g_free (data->command_name); in expected_command_free()
1011 is_command_response (const gchar * command_name) in is_command_response() argument
1013 return g_strcmp0 (command_name, "_result") == 0 || in is_command_response()
1014 g_strcmp0 (command_name, "_error") == 0; in is_command_response()
1021 gchar *command_name; in gst_rtmp_connection_handle_cm() local
1032 &command_name); in gst_rtmp_connection_handle_cm()
1044 GST_STR_NULL (command_name), transaction_id); in gst_rtmp_connection_handle_cm()
[all …]
Drtmpconnection.h49 typedef void (*GstRtmpCommandCallback) (const gchar * command_name,
77 guint32 stream_id, const gchar * command_name, const GstAmfNode * argument,
82 guint32 stream_id, const gchar * command_name);
Damf.h107 gdouble * transaction_id, gchar ** command_name);
112 const gchar * command_name, const GstAmfNode * argument, ...) G_GNUC_NULL_TERMINATED;
114 const gchar * command_name, const GstAmfNode * argument, va_list va_args);
Damf.c932 gdouble * transaction_id, gchar ** command_name) in gst_amf_parse_command() argument
984 if (command_name) { in gst_amf_parse_command()
985 *command_name = gst_amf_node_get_string (node1, NULL); in gst_amf_parse_command()
1162 gst_amf_serialize_command (gdouble transaction_id, const gchar * command_name, in gst_amf_serialize_command() argument
1169 ret = gst_amf_serialize_command_valist (transaction_id, command_name, in gst_amf_serialize_command()
1178 const gchar * command_name, const GstAmfNode * argument, va_list var_args) in gst_amf_serialize_command_valist() argument
1183 g_return_val_if_fail (command_name, NULL); in gst_amf_serialize_command_valist()
1188 GST_LOG ("Serializing command '%s', transid %.0f", command_name, in gst_amf_serialize_command_valist()
1192 serialize_string (array, command_name, -1); in gst_amf_serialize_command_valist()
Drtmpclient.c37 static void send_connect_done (const gchar * command_name, GPtrArray * args,
39 static void create_stream_done (const gchar * command_name, GPtrArray * args,
41 static void on_publish_or_play_status (const gchar * command_name,
693 send_connect_done (const gchar * command_name, GPtrArray * args, in send_connect_done() argument
708 "connect failed: %s", command_name); in send_connect_done()
1159 create_stream_done (const gchar * command_name, GPtrArray * args, in create_stream_done() argument
1173 "createStream failed: %s", command_name); in create_stream_done()
1250 on_publish_or_play_status (const gchar * command_name, GPtrArray * args, in on_publish_or_play_status() argument
1266 "%s failed: %s", command, command_name); in on_publish_or_play_status()
/third_party/alsa-utils/alsamixer/
Dconfigparser.c313 const char *command_name; in cfg_bind() local
325 command_name = argv[1]; in cfg_bind()
327 command_name = argv[2]; in cfg_bind()
358 command = textbox_command_by_name(command_name); in cfg_bind()
360 command = mixer_command_by_name(command_name); in cfg_bind()
363 if (!strcmp(command_name, "none")) in cfg_bind()
367 error_cause = command_name; in cfg_bind()
/third_party/rust/crates/clap/clap_complete/src/shells/
Dpowershell.rs77 let command_name = if previous_command_name.is_empty() { in generate_inner() localVariable
165 &command_name, completions in generate_inner()
169 let subcommand_subcommands_cases = generate_inner(subcommand, &command_name); in generate_inner()
Delvish.rs72 let command_name = if previous_command_name.is_empty() { in generate_inner() localVariable
129 &command_name, completions in generate_inner()
133 let subcommand_subcommands_cases = generate_inner(subcommand, &command_name); in generate_inner()
/third_party/python/Lib/distutils/
Ddist.py881 command_name = command_obj.get_command_name()
883 option_dict = self.get_option_dict(command_name)
886 self.announce(" setting options for '%s' command:" % command_name)
912 % (source, command_name, option))
937 command_name = command
938 command = self.get_command_obj(command_name)
940 command_name = command.get_command_name()
946 self.have_run[command_name] = 0
Dcmd.py267 return self.command_name
/third_party/skia/third_party/externals/angle2/scripts/
Dgenerate_entry_points.py2313 def is_get_pointer_command(command_name): argument
2314 return command_name.endswith('Pointerv') and command_name.startswith('glGet')
2317 def format_capture_replay_param_access(api, command_name, param_text_list, cmd_packed_gl_enums, argument
2320 cmd_packed_enums = get_packed_enums(api, cmd_packed_gl_enums, command_name, packed_param_types,
2334 elif pointer_count == 1 or (pointer_count == 2 and is_get_pointer_command(command_name)):
2351 for command_name, cmd_param_texts in sorted(command_to_param_types_mapping.items()):
2352 entry_point_name = strip_api_prefix(command_name)
2358 api, command_name, cmd_param_texts, cmd_packed_gl_enums, packed_param_types),
2371 command_name = command_node.find('proto').find('name').text
2372 if command_name not in all_commands_names:
[all …]
/third_party/node/deps/v8/third_party/inspector_protocol/templates/
DTypeBuilder_cpp.template160 …space}}::Dispatchable&)> Dispatch({{config.crdtp.namespace}}::span<uint8_t> command_name) override;
175 …DispatcherImpl::CallHandler CommandByName({{config.crdtp.namespace}}::span<uint8_t> command_name) {
190 …rdtp.namespace}}::FindByFirst<DomainDispatcherImpl::CallHandler>(*commands, command_name, nullptr);
194 …tchable&)> DomainDispatcherImpl::Dispatch({{config.crdtp.namespace}}::span<uint8_t> command_name) {
195 CallHandler handler = CommandByName(command_name);
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
Ddispatch_test.cc381 span<uint8_t> command_name) override { in Dispatch() argument
383 std::string(command_name.begin(), command_name.end())); in Dispatch()
Ddispatch.h226 span<uint8_t> command_name) = 0;
/third_party/skia/third_party/externals/dawn/generator/
Ddawn_json_generator.py476 command_name = concat_names(api_object.name, method.name)
477 command_suffix = Name(command_name).CamelCase()
509 command = Command(command_name, members)
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
Dboilerplate.txt97 VKAPI_ATTR <return_type> VKAPI_CALL <command_name>(<command_parameters>);
104 typedef <return_type> (VKAPI_PTR *PFN_<command_name>)(<command_parameters>);
/third_party/python/Doc/distutils/
Dapiref.rst1801 *sub_commands* as a class attribute; it's a list of 2-tuples ``(command_name,
1802 predicate)``, with *command_name* a string and *predicate* a function, a