Home
last modified time | relevance | path

Searched refs:_PyObject_GetAttrId (Results 1 – 25 of 33) sorted by relevance

12

/external/python/cpython3/Modules/
D_abc.c119 PyObject *impl = _PyObject_GetAttrId(self, &PyId__abc_impl); in _get_impl()
308 ns = _PyObject_GetAttrId(self, &PyId___dict__); in compute_abstract_methods()
352 bases = _PyObject_GetAttrId(self, &PyId___bases__); in compute_abstract_methods()
527 subclass = _PyObject_GetAttrId(instance, &PyId___class__); in _abc__abc_instancecheck_impl()
Dparsermodule.c1204 func = _PyObject_GetAttrId(copyreg, &PyId_pickle); in PyInit_parser()
1205 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st); in PyInit_parser()
1206 pickler = _PyObject_GetAttrId(module, &PyId__pickler); in PyInit_parser()
D_asynciomodule.c225 return _PyObject_GetAttrId(fut, &PyId__loop); in get_future_loop()
365 PyObject *callable = _PyObject_GetAttrId(loop, &PyId_call_soon); in call_soon()
1457 func = _PyObject_GetAttrId(fut->fut_loop, &PyId_call_exception_handler); in FutureObj_finalize()
2467 func = _PyObject_GetAttrId(task->task_loop, &PyId_call_exception_handler); in TaskObj_finalize()
2882 PyObject *add_cb = _PyObject_GetAttrId( in task_step_impl()
D_pickle.c3606 global_name = _PyObject_GetAttrId(obj, &PyId___name__); in save_global()
4081 cls_new = _PyObject_GetAttrId(cls, &PyId___new__); in save_reduce()
6536 append_func = _PyObject_GetAttrId(list, &PyId_append); in do_append()
6661 add_func = _PyObject_GetAttrId(set, &PyId_add); in load_additems()
6746 dict = _PyObject_GetAttrId(inst, &PyId___dict__); in load_build()
D_operator.c1680 partial = _PyObject_GetAttrId(functools, &PyId_partial); in methodcaller_reduce()
Dtimemodule.c891 func = _PyObject_GetAttrId(module, &PyId__strptime_time);
/external/python/cpython3/Python/
Dpythonrun.c201 oenc = _PyObject_GetAttrId(v, &PyId_encoding); in PyRun_InteractiveOneObjectEx()
495 *message = _PyObject_GetAttrId(err, &PyId_msg); in parse_syntax_error()
499 v = _PyObject_GetAttrId(err, &PyId_filename); in parse_syntax_error()
513 v = _PyObject_GetAttrId(err, &PyId_lineno); in parse_syntax_error()
522 v = _PyObject_GetAttrId(err, &PyId_offset); in parse_syntax_error()
536 v = _PyObject_GetAttrId(err, &PyId_text); in parse_syntax_error()
647 PyObject *code = _PyObject_GetAttrId(value, &PyId_code); in _Py_HandleSystemExit()
880 moduleName = _PyObject_GetAttrId(type, &PyId___module__); in print_exception()
Dbltinmodule.c2012 stdin_encoding = _PyObject_GetAttrId(fin, &PyId_encoding); in builtin_input_impl()
2013 stdin_errors = _PyObject_GetAttrId(fin, &PyId_errors); in builtin_input_impl()
2033 stdout_encoding = _PyObject_GetAttrId(fout, &PyId_encoding); in builtin_input_impl()
2034 stdout_errors = _PyObject_GetAttrId(fout, &PyId_errors); in builtin_input_impl()
2231 callable = _PyObject_GetAttrId(newlist, &PyId_sort); in builtin_sorted()
Dimport.c118 PyObject *zipimporter = _PyObject_GetAttrId(zipimport, in _PyImportZip_Init()
396 spec = _PyObject_GetAttrId(mod, &PyId___spec__); in import_ensure_initialized()
1614 PyObject *parent = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name()
1633 package = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name()
D_warnings.c497 name = _PyObject_GetAttrId(category, &PyId___name__); in show_warning()
Derrors.c1306 PyObject *moduleName = _PyObject_GetAttrId(exc_type, &PyId___module__); in write_unraisable_exc_file()
Dpylifecycle.c1814 raw = _PyObject_GetAttrId(buf, &PyId_raw); in create_stdio()
/external/python/cpython3/Objects/
Dmoduleobject.c700 PyObject *value = _PyObject_GetAttrId(spec, &PyId__initializing); in _PyModuleSpec_IsInitializing()
797 PyObject *dict = _PyObject_GetAttrId(self, &PyId___dict__); in module_dir()
Dfileobject.c128 writer = _PyObject_GetAttrId(f, &PyId_write); in PyFile_WriteObject()
Dcall.c677 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId()
725 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId_SizeT()
Dclassobject.c127 funcname = _PyObject_GetAttrId(func, &PyId___name__); in method_reduce()
Dmethodobject.c229 type_qualname = _PyObject_GetAttrId(type, &PyId___qualname__); in meth_get__qualname__()
Dtypeobject.c4617 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj__); in reduce_newobj()
4643 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj_ex__); in reduce_newobj()
4764 clsreduce = _PyObject_GetAttrId(cls, &PyId___reduce__); in object___reduce_ex___impl()
6968 func = _PyObject_GetAttrId((PyObject *)type, &PyId___new__); in slot_tp_new()
7707 func = _PyObject_GetAttrId(super, &PyId___init_subclass__); in init_subclass()
Dodictobject.c955 dict = _PyObject_GetAttrId((PyObject *)od, &PyId___dict__); in odict_reduce()
Dobject.c846 _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) in _PyObject_GetAttrId() function
Ddescrobject.c584 type_qualname = _PyObject_GetAttrId((PyObject *)descr->d_type, in calculate_qualname()
/external/python/cpython3/Include/cpython/
Dobject.h315 PyAPI_FUNC(PyObject *) _PyObject_GetAttrId(PyObject *, struct _Py_Identifier *);
/external/python/cpython3/Modules/_io/
D_iomodule.c421 blksize_obj = _PyObject_GetAttrId(raw, &PyId__blksize); in _io_open_impl()
Dbufferedio.c583 return _PyObject_GetAttrId(self->raw, &PyId_name); in buffered_name_get()
590 return _PyObject_GetAttrId(self->raw, &PyId_mode); in buffered_mode_get()
2157 func = _PyObject_GetAttrId((PyObject *)self, name); in _forward_call()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1856 meth = _PyObject_GetAttrId(obj, &PyId___setstate__); in unpickle()

12