HomeSort by relevance Sort by last modified time
    Searched refs:core_config (Results 1 - 19 of 19) sorted by null

  /external/python/cpython3/Modules/
getpath.c 338 search_for_prefix(const _PyCoreConfig *core_config,
345 if (core_config->home) {
346 wcsncpy(prefix, core_config->home, MAXPATHLEN);
405 calculate_prefix(const _PyCoreConfig *core_config,
408 calculate->prefix_found = search_for_prefix(core_config, calculate, prefix);
450 search_for_exec_prefix(const _PyCoreConfig *core_config,
456 if (core_config->home) {
457 wchar_t *delim = wcschr(core_config->home, DELIM);
462 wcsncpy(exec_prefix, core_config->home, MAXPATHLEN);
526 calculate_exec_prefix(const _PyCoreConfig *core_config,
    [all...]
main.c     [all...]
_testcapimodule.c     [all...]
  /external/python/cpython3/Lib/test/
test_embed.py 322 # xoptions is created from core_config in check_main_config()
373 core_config = config['core_config']
382 expected[key] = core_config[key]
383 expected['xoptions'] = self.main_xoptions(core_config['xoptions'])
434 core_config = dict(config['core_config'])
436 core_config.pop(key, None)
437 self.assertEqual(core_config, expected)
440 core_config = config['core_config'
    [all...]
  /external/u-boot/arch/arm/mach-exynos/
lowlevel_init.c 123 uint32_t tmp, core_id, core_config; local
138 core_config = (core_id * CPU_CONFIG_STATUS_OFFSET);
139 core_config += EXYNOS5420_CPU_CONFIG_BASE;
140 writel(0x0, core_config);
  /external/python/cpython3/Python/
pylifecycle.c 401 _emit_stderr_warning_for_legacy_locale(const _PyCoreConfig *core_config)
403 if (core_config->coerce_c_locale_warn) {
596 const _PyCoreConfig *core_config)
598 if (core_config->allocator != NULL) {
600 if (allocator == NULL || strcmp(core_config->allocator, allocator) != 0) {
606 _PyCoreConfig_SetGlobalConfig(core_config);
608 if (_PyCoreConfig_Copy(&interp->core_config, core_config) < 0) {
635 const _PyCoreConfig *core_config)
654 return _Py_Initialize_ReconfigureCore(interp, core_config);
1385 _PyCoreConfig *core_config; local
    [all...]
pathconfig.c 50 _PyPathConfig_Init(const _PyCoreConfig *core_config)
65 err = _PyPathConfig_Calculate(&new_config, core_config);
71 /* Copy home and program_name from core_config */
72 if (core_config->home != NULL) {
73 new_config.home = _PyMem_RawWcsdup(core_config->home);
83 new_config.program_name = _PyMem_RawWcsdup(core_config->program_name);
pystate.c 148 interp->core_config = _PyCoreConfig_INIT;
201 _PyCoreConfig_Clear(&interp->core_config);
    [all...]
sysmodule.c 2067 _PyCoreConfig *core_config = &_PyGILState_GetInterpreterStateUnsafe()->core_config; local
    [all...]
pythonrun.c 95 int show_ref_count = PyThreadState_GET()->interp->core_config.show_ref_count;
    [all...]
import.c     [all...]
  /external/python/cpython3/PC/
getpathp.c 536 get_program_full_path(const _PyCoreConfig *core_config,
660 const _PyCoreConfig *core_config)
662 calculate->home = core_config->home;
771 calculate_module_search_path(const _PyCoreConfig *core_config,
782 int skipdefault = (core_config->module_search_path_env != NULL ||
821 if (core_config->module_search_path_env != NULL) {
822 bufsz += wcslen(core_config->module_search_path_env) + 1;
830 if (core_config->module_search_path_env) {
832 config->module_search_path = core_config->module_search_path_env;
842 if (core_config->module_search_path_env)
    [all...]
  /external/python/cpython3/Include/internal/
pystate.h 64 const _PyCoreConfig *core_config);
  /external/python/cpython3/Programs/
_testembed.c 319 const _PyCoreConfig *core_config = &interp->core_config; local
320 dict = _PyCoreConfig_AsDict(core_config);
324 if (PyDict_SetItemString(config, "core_config", dict) < 0) {
  /external/python/cpython3/Include/
pylifecycle.h 80 const _PyCoreConfig *core_config);
141 PyAPI_FUNC(_PyInitError) _PyPathConfig_Init(const _PyCoreConfig *core_config); variable
pystate.h 145 _PyCoreConfig core_config; member in struct:_is
  /external/python/cpython3/Objects/
tupleobject.c 48 if (!interp->core_config.show_alloc_count) {
object.c 100 if (!interp->core_config.show_alloc_count) {
    [all...]
listobject.c 89 if (!interp->core_config.show_alloc_count) {
    [all...]

Completed in 629 milliseconds