Home
last modified time | relevance | path

Searched refs:name_buf (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Python/
Dimportdl.c99 const char *name_buf, *hook_prefix; in _PyImport_LoadDynamicModuleWithSpec() local
119 name_buf = PyBytes_AS_STRING(name); in _PyImport_LoadDynamicModuleWithSpec()
131 exportfunc = _PyImport_FindSharedFuncptrWindows(hook_prefix, name_buf, in _PyImport_LoadDynamicModuleWithSpec()
137 exportfunc = _PyImport_FindSharedFuncptr(hook_prefix, name_buf, in _PyImport_LoadDynamicModuleWithSpec()
149 hook_prefix, name_buf); in _PyImport_LoadDynamicModuleWithSpec()
175 name_buf); in _PyImport_LoadDynamicModuleWithSpec()
183 name_buf); in _PyImport_LoadDynamicModuleWithSpec()
193 name_buf); in _PyImport_LoadDynamicModuleWithSpec()
211 name_buf); in _PyImport_LoadDynamicModuleWithSpec()
220 "module", name_buf); in _PyImport_LoadDynamicModuleWithSpec()
/third_party/alsa-utils/alsamixer/
Dcli.c76 static char name_buf[24]; in parse_options() local
92 sprintf(name_buf, "sysdefault:%d", card_index); in parse_options()
94 sprintf(name_buf, "hw:%d", card_index); in parse_options()
96 selem_regopt.device = name_buf; in parse_options()
/third_party/libwebsockets/lib/tls/mbedtls/
Dmbedtls-extensions.c217 lws_mbedtls_x509_parse_general_name(const mbedtls_x509_buf *name_buf, in lws_mbedtls_x509_parse_general_name() argument
225 switch (name_buf->MBEDTLS_PRIVATE(tag) & in lws_mbedtls_x509_parse_general_name()
231 ret = x509_get_other_name( name_buf, &other_name ); in lws_mbedtls_x509_parse_general_name()
242 bufferPointer = name_buf->MBEDTLS_PRIVATE(p); in lws_mbedtls_x509_parse_general_name()
244 end = name_buf->MBEDTLS_PRIVATE(p) + in lws_mbedtls_x509_parse_general_name()
245 name_buf->MBEDTLS_PRIVATE(len); in lws_mbedtls_x509_parse_general_name()
270 name_buf, sizeof(*name_buf) ); in lws_mbedtls_x509_parse_general_name()
/third_party/pulseaudio/src/pulsecore/
Dsocket-client.c431 char *name_buf; local
440 name_buf = pa_xmalloc(len + 3);
441 memcpy(name_buf + 1, name, len);
442 name_buf[0] = '[';
443 name_buf[len + 1] = ']';
444 name_buf[len + 2] = '\0';
446 name_buf = pa_xstrdup(name);
449 if (pa_parse_address(name_buf, &a) < 0) {
450 pa_log_warn("parsing address failed: %s", name_buf);
549 pa_xfree(name_buf);
/third_party/musl/porting/linux/user/ldso/
Ddynlink_rand.c232 char *name_buf = (char *)internal_malloc(name_len + 1); in create_loadtask() local
233 if (!name_buf) { in create_loadtask()
240 strcpy(name_buf, name); in create_loadtask()
241 task->name = name_buf; in create_loadtask()
/third_party/ffmpeg/tests/checkasm/
Dcheckasm.c741 char name_buf[256]; in checkasm_check_func() local
748 name_length = vsnprintf(name_buf, sizeof(name_buf), name, arg); in checkasm_check_func()
751 if (!func || name_length <= 0 || name_length >= sizeof(name_buf)) in checkasm_check_func()
754 state.current_func = get_func(&state.funcs, name_buf); in checkasm_check_func()
/third_party/pulseaudio/src/modules/
Dmodule-solaris.c867 char *name_buf; in pa__init() local
947 name_buf = NULL; in pa__init()
951 … name = name_buf = pa_sprintf_malloc("solaris_input.%s", pa_path_get_filename(u->device_name)); in pa__init()
976 pa_xfree(name_buf); in pa__init()
998 name_buf = NULL; in pa__init()
1001 … name = name_buf = pa_sprintf_malloc("solaris_output.%s", pa_path_get_filename(u->device_name)); in pa__init()
/third_party/pulseaudio/src/modules/oss/
Dmodule-oss.c1308 char *name_buf = NULL; in pa__init() local
1322 name = name_buf = pa_sprintf_malloc("oss_input.%s", pa_path_get_filename(dev)); in pa__init()
1343 pa_xfree(name_buf); in pa__init()
1349 pa_xfree(name_buf); in pa__init()
1370 char *name_buf = NULL; in pa__init() local
1392 name = name_buf = pa_sprintf_malloc("oss_output.%s", pa_path_get_filename(dev)); in pa__init()
1413 pa_xfree(name_buf); in pa__init()
1419 pa_xfree(name_buf); in pa__init()
/third_party/ffmpeg/libavdevice/
Ddshow.c605 char *name_buf = NULL; in dshow_cycle_pins() local
622 name_buf = dup_wchar_to_utf8(info.achName); in dshow_cycle_pins()
632 … av_log(avctx, AV_LOG_INFO, " Pin \"%s\" (alternative pin name \"%s\")\n", name_buf, pin_buf); in dshow_cycle_pins()
638 if(strcmp(name_buf, desired_pin_name) && strcmp(pin_buf, desired_pin_name)) { in dshow_cycle_pins()
640 name_buf, pin_buf, desired_pin_name); in dshow_cycle_pins()
665 av_log(avctx, AV_LOG_DEBUG, "Selecting pin %s on %s\n", name_buf, devtypename); in dshow_cycle_pins()
678 av_free(name_buf); in dshow_cycle_pins()
/third_party/libuv/src/win/
Dutil.c753 char* name_buf; in uv_interface_addresses() local
899 name_buf = (char*) (uv_address_buf + count); in uv_interface_addresses()
914 max_name_size = (char*) uv_address_buf + uv_address_buf_size - name_buf; in uv_interface_addresses()
921 name_buf, in uv_interface_addresses()
975 uv_address->name = name_buf; in uv_interface_addresses()
1008 name_buf += name_size; in uv_interface_addresses()
Dpipe.c2355 WCHAR* name_buf; in uv__pipe_getname() local
2408 name_buf = tmp_name_info.FileName; in uv__pipe_getname()
2411 name_buf = name_info->FileName; in uv__pipe_getname()
2426 name_buf, in uv__pipe_getname()
2446 name_buf, in uv__pipe_getname()
/third_party/python/Modules/_io/
Dwinconsoleio.c101 wchar_t name_buf[MAX_PATH], *pname_buf = name_buf; in _PyIO_get_console_type() local
129 if (pname_buf != name_buf) in _PyIO_get_console_type()