Home
last modified time | relevance | path

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

/external/autotest/server/cros/network/
Dattenuator.py38 config_str = self._tnhelper.cmd("MN?")
40 if config_str.startswith("MN="):
41 config_str = config_str[len("MN="):]
44 config_str.split("-", 2)))
/external/tensorflow/tensorflow/python/client/
Dpywrap_tf_session.py57 config_str = config.SerializeToString()
58 _TF_SetConfig(opts, config_str)
/external/python/cpython3/Include/cpython/
Dinitconfig.h432 wchar_t **config_str,
436 wchar_t **config_str,
/external/python/cpython3/Python/
Dinitconfig.c709 PyConfig_SetString(PyConfig *config, wchar_t **config_str, const wchar_t *str) in PyConfig_SetString() argument
726 PyMem_RawFree(*config_str); in PyConfig_SetString()
727 *config_str = str2; in PyConfig_SetString()
733 config_set_bytes_string(PyConfig *config, wchar_t **config_str, in config_set_bytes_string() argument
757 PyMem_RawFree(*config_str); in config_set_bytes_string()
758 *config_str = str2; in config_set_bytes_string()
763 #define CONFIG_SET_BYTES_STR(config, config_str, str, NAME) \ argument
764 config_set_bytes_string(config, config_str, str, "cannot decode " NAME)
771 PyConfig_SetBytesString(PyConfig *config, wchar_t **config_str, in PyConfig_SetBytesString() argument
774 return CONFIG_SET_BYTES_STR(config, config_str, str, "string"); in PyConfig_SetBytesString()
/external/python/cpython3/Programs/
D_testembed.c330 static void config_set_string(PyConfig *config, wchar_t **config_str, const wchar_t *str) in config_set_string() argument
332 PyStatus status = PyConfig_SetString(config, config_str, str); in config_set_string()
/external/python/cpython3/Doc/c-api/
Dinit_config.rst357 ….. c:function:: PyStatus PyConfig_SetString(PyConfig *config, wchar_t * const *config_str, const w…
359 Copy the wide character string *str* into ``*config_str``.
363 ….. c:function:: PyStatus PyConfig_SetBytesString(PyConfig *config, wchar_t * const *config_str, co…
365 Decode *str* using ``Py_DecodeLocale()`` and set the result into ``*config_str``.
/external/tensorflow/tensorflow/python/eager/
Dcontext.py513 config_str = self.config.SerializeToString()
514 pywrap_tfe.TFE_ContextOptionsSetConfig(opts, config_str)
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instruction.h1574 void set_raw_backend_config_string(string config_str) { in set_raw_backend_config_string() argument
1575 backend_config_ = std::move(config_str); in set_raw_backend_config_string()