Home
last modified time | relevance | path

Searched refs:PyDict_GetItemString (Results 1 – 25 of 52) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dimport.c413 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
420 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
433 v = PyDict_GetItemString(dict, *(p+1)); in PyImport_Cleanup()
441 value = PyDict_GetItemString(modules, "__main__"); in PyImport_Cleanup()
504 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
511 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
556 mod = PyDict_GetItemString(modules, name); in _PyImport_FixupExtension()
579 dict = PyDict_GetItemString(extensions, filename); in _PyImport_FindExtension()
609 if ((m = PyDict_GetItemString(modules, name)) != NULL && in PyImport_AddModule()
629 if (PyDict_GetItemString(modules, name) == NULL) in remove_module()
[all …]
Dimportdl.c58 m = PyDict_GetItemString(PyImport_GetModuleDict(), name); in _PyImport_LoadDynamicModule()
D_warnings.c467 *registry = PyDict_GetItemString(globals, "__warningregistry__"); in setup_context()
483 *module = PyDict_GetItemString(globals, "__name__"); in setup_context()
493 *filename = PyDict_GetItemString(globals, "__file__"); in setup_context()
661 loader = PyDict_GetItemString(module_globals, "__loader__"); in warnings_warn_explicit()
662 module_name = PyDict_GetItemString(module_globals, "__name__"); in warnings_warn_explicit()
Ddynload_beos.c139 py_id = PyDict_GetItemString( beos_dyn_images, name ); in beos_add_dyn()
Dsysmodule.c56 return PyDict_GetItemString(sd, name); in PySys_GetObject()
77 if (PyDict_GetItemString(sd, name) == NULL) in PySys_SetObject()
92 PyObject *builtins = PyDict_GetItemString(modules, "__builtin__"); in sys_displayhook()
1393 PyDict_GetItemString(sysdict, "displayhook")); in _PySys_Init()
1395 PyDict_GetItemString(sysdict, "excepthook")); in _PySys_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dimport.c413 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
420 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
433 v = PyDict_GetItemString(dict, *(p+1)); in PyImport_Cleanup()
441 value = PyDict_GetItemString(modules, "__main__"); in PyImport_Cleanup()
504 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
511 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
556 mod = PyDict_GetItemString(modules, name); in _PyImport_FixupExtension()
579 dict = PyDict_GetItemString(extensions, filename); in _PyImport_FindExtension()
609 if ((m = PyDict_GetItemString(modules, name)) != NULL && in PyImport_AddModule()
629 if (PyDict_GetItemString(modules, name) == NULL) in remove_module()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dimport.c445 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
452 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
465 v = PyDict_GetItemString(dict, *(p+1)); in PyImport_Cleanup()
473 value = PyDict_GetItemString(modules, "__main__"); in PyImport_Cleanup()
536 value = PyDict_GetItemString(modules, "sys"); in PyImport_Cleanup()
543 value = PyDict_GetItemString(modules, "__builtin__"); in PyImport_Cleanup()
588 mod = PyDict_GetItemString(modules, name); in _PyImport_FixupExtension()
611 dict = PyDict_GetItemString(extensions, filename); in _PyImport_FindExtension()
641 if ((m = PyDict_GetItemString(modules, name)) != NULL && in PyImport_AddModule()
661 if (PyDict_GetItemString(modules, name) == NULL) in remove_module()
[all …]
Dimportdl.c58 m = PyDict_GetItemString(PyImport_GetModuleDict(), name); in _PyImport_LoadDynamicModule()
D_warnings.c467 *registry = PyDict_GetItemString(globals, "__warningregistry__"); in setup_context()
483 *module = PyDict_GetItemString(globals, "__name__"); in setup_context()
493 *filename = PyDict_GetItemString(globals, "__file__"); in setup_context()
662 loader = PyDict_GetItemString(module_globals, "__loader__"); in warnings_warn_explicit()
663 module_name = PyDict_GetItemString(module_globals, "__name__"); in warnings_warn_explicit()
Dsysmodule.c56 return PyDict_GetItemString(sd, name); in PySys_GetObject()
77 if (PyDict_GetItemString(sd, name) == NULL) in PySys_SetObject()
92 PyObject *builtins = PyDict_GetItemString(modules, "__builtin__"); in sys_displayhook()
1414 PyDict_GetItemString(sysdict, "displayhook")); in _PySys_Init()
1416 PyDict_GetItemString(sysdict, "excepthook")); in _PySys_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dmoduleobject.c70 (nameobj = PyDict_GetItemString(d, "__name__")) == NULL || in PyModule_GetName()
90 (fileobj = PyDict_GetItemString(d, "__file__")) == NULL || in PyModule_GetFilename()
Dstructseq.c18 PyDict_GetItemString((tp)->tp_dict, visible_length_key))
21 PyDict_GetItemString((tp)->tp_dict, real_length_key))
25 PyDict_GetItemString((tp)->tp_dict, unnamed_fields_key))
212 if (dict && (ob = PyDict_GetItemString( in structseq_new()
Dtypeobject.c271 mod = PyDict_GetItemString(type->tp_dict, "__module__"); in type_module()
314 mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__"); in type_abstractmethods()
571 result = PyDict_GetItemString(type->tp_dict, "__doc__"); in type_get_doc()
2142 slots = PyDict_GetItemString(dict, "__slots__"); in type_new()
2341 if (PyDict_GetItemString(dict, "__module__") == NULL) { in type_new()
2344 tmp = PyDict_GetItemString(tmp, "__name__"); in type_new()
2358 PyObject *doc = PyDict_GetItemString(dict, "__doc__"); in type_new()
2373 tmp = PyDict_GetItemString(dict, "__new__"); in type_new()
2904 sorted = PyDict_GetItemString(builtins, "sorted"); in object_new()
3146 slotnames = PyDict_GetItemString(clsdict, "__slotnames__"); in slotnames()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmoduleobject.c70 (nameobj = PyDict_GetItemString(d, "__name__")) == NULL || in PyModule_GetName()
90 (fileobj = PyDict_GetItemString(d, "__file__")) == NULL || in PyModule_GetFilename()
Dstructseq.c18 PyDict_GetItemString((tp)->tp_dict, visible_length_key))
21 PyDict_GetItemString((tp)->tp_dict, real_length_key))
25 PyDict_GetItemString((tp)->tp_dict, unnamed_fields_key))
213 if (dict && (ob = PyDict_GetItemString( in structseq_new()
Dtypeobject.c275 mod = PyDict_GetItemString(type->tp_dict, "__module__"); in type_module()
318 mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__"); in type_abstractmethods()
577 result = PyDict_GetItemString(type->tp_dict, "__doc__"); in type_get_doc()
2160 slots = PyDict_GetItemString(dict, "__slots__"); in type_new()
2361 if (PyDict_GetItemString(dict, "__module__") == NULL) { in type_new()
2364 tmp = PyDict_GetItemString(tmp, "__name__"); in type_new()
2378 PyObject *doc = PyDict_GetItemString(dict, "__doc__"); in type_new()
2393 tmp = PyDict_GetItemString(dict, "__new__"); in type_new()
2935 sorted = PyDict_GetItemString(builtins, "sorted"); in object_new()
3179 slotnames = PyDict_GetItemString(clsdict, "__slotnames__"); in slotnames()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzipimport.c127 files = PyDict_GetItemString(zip_directory_cache, path); in zipimporter_init()
272 if (PyDict_GetItemString(self->files, path) != NULL) { in get_module_info()
451 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_data()
504 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_source()
1065 toc_entry = PyDict_GetItemString(self->files, path); in get_mtime_of_source()
1133 toc_entry = PyDict_GetItemString(self->files, path); in get_module_code()
Dxxmodule.c69 PyObject *v = PyDict_GetItemString(self->x_attr, name); in Xxo_getattr()
D_localemodule.c103 string = PyDict_GetItemString(mods, "string"); in fixup_ulcase()
106 strop=PyDict_GetItemString(mods, "strop"); in fixup_ulcase()
D_elementtree.c3042 elementpath_obj = PyDict_GetItemString(g, "ElementPath");
3044 elementtree_copyelement_obj = PyDict_GetItemString(g, "copyelement");
3056 elementtree_deepcopy_obj = PyDict_GetItemString(g, "deepcopy");
3057 elementtree_iter_obj = PyDict_GetItemString(g, "iter");
3058 elementtree_itertext_obj = PyDict_GetItemString(g, "itertext");
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzipimport.c127 files = PyDict_GetItemString(zip_directory_cache, path); in zipimporter_init()
272 if (PyDict_GetItemString(self->files, path) != NULL) { in get_module_info()
451 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_data()
504 toc_entry = PyDict_GetItemString(self->files, path); in zipimporter_get_source()
1093 toc_entry = PyDict_GetItemString(self->files, path); in get_mtime_of_source()
1161 toc_entry = PyDict_GetItemString(self->files, path); in get_module_code()
D_localemodule.c103 string = PyDict_GetItemString(mods, "string"); in fixup_ulcase()
106 strop=PyDict_GetItemString(mods, "strop"); in fixup_ulcase()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Ddictobject.h149 PyAPI_FUNC(PyObject *) PyDict_GetItemString(PyObject *dp, const char *key);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Ddictobject.h149 PyAPI_FUNC(PyObject *) PyDict_GetItemString(PyObject *dp, const char *key);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dstatement.c287 current_param = PyDict_GetItemString(parameters, binding_name); in pysqlite_statement_bind_parameters()

123