Home
last modified time | relevance | path

Searched refs:data_name (Results 1 – 8 of 8) sorted by relevance

/third_party/mbedtls/tests/
DCMakeLists.txt157 set(data_name ${ARGV1}) variable
159 set(data_name ${suite_name}) variable
195 if(";${bignum_generated_data_names};" MATCHES ";${data_name};")
197 ${CMAKE_CURRENT_BINARY_DIR}/suites/test_suite_${data_name}.data)
199 elseif(";${ecp_generated_data_names};" MATCHES ";${data_name};")
201 ${CMAKE_CURRENT_BINARY_DIR}/suites/test_suite_${data_name}.data)
203 elseif(";${psa_generated_data_names};" MATCHES ";${data_name};")
205 ${CMAKE_CURRENT_BINARY_DIR}/suites/test_suite_${data_name}.data)
209 ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${data_name}.data)
217 test_suite_${data_name}.c
[all …]
/third_party/node/deps/v8/tools/
Dstats-viewer.py66 def __init__(self, data_name, name_filter): argument
73 self.data_name = data_name
103 if not os.path.exists(self.data_name):
104 maps_name = "/proc/%s/maps" % self.data_name
106 print("\"%s\" is neither a counter file nor a PID." % self.data_name)
110 self.data_name = None
113 self.data_name = m.group(0)
115 if self.data_name is None:
116 print("Can't find counter file in maps for PID %s." % self.data_name)
120 data_file = open(self.data_name, "r")
[all …]
/third_party/ffmpeg/libavcodec/tests/
Davpacket.c30 const uint8_t *data_name = NULL; in setup_side_data_entry() local
36 data_name = av_packet_side_data_name(AV_PKT_DATA_NEW_EXTRADATA); in setup_side_data_entry()
39 bytes = strlen(data_name); in setup_side_data_entry()
47 memcpy(extra_data, data_name, bytes); in setup_side_data_entry()
/third_party/alsa-utils/topology/
Dpre-process-object.c476 snd_config_t *attr, char *data_name, in tplg_pp_add_object_tuple_section() argument
485 tplg_pp_debug("Building vendor tuples section: '%s' ...", data_name); in tplg_pp_add_object_tuple_section()
517 tuple_cfg = tplg_find_config(top, data_name); in tplg_pp_add_object_tuple_section()
520 ret = tplg_config_make_add(&tuple_cfg, data_name, SND_CONFIG_TYPE_COMPOUND, top); in tplg_pp_add_object_tuple_section()
522 SNDERR("Error creating new vendor tuples config %s\n", data_name); in tplg_pp_add_object_tuple_section()
529 SNDERR("Error creating tokens config for '%s'\n", data_name); in tplg_pp_add_object_tuple_section()
535 SNDERR("Error setting tokens config for '%s'\n", data_name); in tplg_pp_add_object_tuple_section()
542 SNDERR("Error creating tuples config for '%s'\n", data_name); in tplg_pp_add_object_tuple_section()
549 SNDERR("Error creating tuples type config for '%s'\n", data_name); in tplg_pp_add_object_tuple_section()
557 SNDERR("can't find tuples config in %s\n", data_name); in tplg_pp_add_object_tuple_section()
[all …]
/third_party/pulseaudio/src/modules/
Dmodule-tunnel.c2112 char *data_name = NULL; in create_sink() local
2114 if (!(data_name = pa_xstrdup(u->configured_sink_name))) in create_sink()
2115 data_name = pa_sprintf_malloc("tunnel-sink.%s", u->server_name); in create_sink()
2121 pa_sink_new_data_set_name(&data, data_name); in create_sink()
2156 pa_xfree(data_name); in create_sink()
2161 char *data_name = NULL; in create_source() local
2163 if (!(data_name = pa_xstrdup(u->configured_source_name))) in create_source()
2164 data_name = pa_sprintf_malloc("tunnel-source.%s", u->server_name); in create_source()
2170 pa_source_new_data_set_name(&data, data_name); in create_source()
2203 pa_xfree(data_name); in create_source()
/third_party/mbedtls/tests/scripts/
Dgenerate_test_code.py1178 data_name = os.path.splitext(data_file_name)[0]
1180 out_c_file = os.path.join(args.out_dir, data_name + '.c')
1181 out_data_file = os.path.join(args.out_dir, data_name + '.datax')
/third_party/lwip/src/netif/ppp/
Dutils.c468 if (protp != 0 && protp->data_name != 0) { in ppp_format_packet()
469 printer(arg, "[%s data]", protp->data_name); in ppp_format_packet()
/third_party/lwip/src/include/netif/ppp/
Dppp_impl.h309 const char *data_name; /* Text name of corresponding data protocol */ member