Home
last modified time | relevance | path

Searched refs:_PyObject_SetAttrId (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Python/
Derrors.c1598 if (_PyObject_SetAttrId(v, &PyId_lineno, tmp)) { in PyErr_SyntaxLocationObjectEx()
1610 if (_PyObject_SetAttrId(v, &PyId_offset, tmp ? tmp : Py_None)) { in PyErr_SyntaxLocationObjectEx()
1622 if (_PyObject_SetAttrId(v, &PyId_end_lineno, tmp ? tmp : Py_None)) { in PyErr_SyntaxLocationObjectEx()
1634 if (_PyObject_SetAttrId(v, &PyId_end_offset, tmp ? tmp : Py_None)) { in PyErr_SyntaxLocationObjectEx()
1641 if (_PyObject_SetAttrId(v, &PyId_filename, filename)) { in PyErr_SyntaxLocationObjectEx()
1647 if (_PyObject_SetAttrId(v, &PyId_text, tmp)) { in PyErr_SyntaxLocationObjectEx()
1666 if (_PyObject_SetAttrId(v, &PyId_msg, tmp)) { in PyErr_SyntaxLocationObjectEx()
1682 if (_PyObject_SetAttrId(v, &PyId_print_file_and_line, in PyErr_SyntaxLocationObjectEx()
Dpylifecycle.c2195 if (text == NULL || _PyObject_SetAttrId(raw, &PyId_name, text) < 0) in create_stdio()
2254 if (!text || _PyObject_SetAttrId(stream, &PyId_mode, text) < 0) in create_stdio()
Dsysmodule.c719 if (_PyObject_SetAttrId(builtins, &PyId__, Py_None) != 0) in sys_displayhook()
748 if (_PyObject_SetAttrId(builtins, &PyId__, o) != 0) in sys_displayhook()
Dceval.c6266 (void)_PyObject_SetAttrId(value, &PyId_name, obj); in format_exc_check_arg()
/third_party/python/Modules/_io/
Diobase.c242 rc = _PyObject_SetAttrId(self, &PyId___IOBase_closed, Py_True); in _io__IOBase_close_impl()
283 if (_PyObject_SetAttrId(self, &PyId__finalizing, Py_True)) in iobase_finalize()
D_iomodule.c490 if (_PyObject_SetAttrId(wrapper, &PyId_mode, modeobj) < 0) in _io_open_impl()
Dfileio.c478 if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0)
Dwinconsoleio.c396 if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0) in _io__WindowsConsoleIO___init___impl()
/third_party/python/Modules/
D_abc.c408 if (_PyObject_SetAttrId(self, &PyId___abstractmethods__, abstracts) < 0) { in compute_abstract_methods()
447 if (_PyObject_SetAttrId(self, &PyId__abc_impl, data) < 0) { in _abc__abc_init()
D_ssl.c548 if (_PyObject_SetAttrId(err_value, &PyId_reason, reason_obj)) in fill_and_set_sslerror()
553 if (_PyObject_SetAttrId(err_value, &PyId_library, lib_obj)) in fill_and_set_sslerror()
558 if (_PyObject_SetAttrId(err_value, &PyId_verify_code, in fill_and_set_sslerror()
561 if (_PyObject_SetAttrId(err_value, &PyId_verify_message, verify_obj)) in fill_and_set_sslerror()
D_cursesmodule.c3970 if (_PyObject_SetAttrId(m, &PyId_LINES, o)) { in update_lines_cols()
3987 if (_PyObject_SetAttrId(m, &PyId_COLS, o)) { in update_lines_cols()
D_asynciomodule.c2840 if (_PyObject_SetAttrId( in task_step_impl()
D_elementtree.c2603 r = _PyObject_SetAttrId(element, name, joined); in treebuilder_extend_element_text_or_tail()
/third_party/python/Include/cpython/
Dobject.h317 PyAPI_FUNC(int) _PyObject_SetAttrId(PyObject *, struct _Py_Identifier *, PyObject *);
/third_party/python/Objects/
Dobject.c877 _PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w) in _PyObject_SetAttrId() function
900 (_PyObject_SetAttrId(value, &PyId_name, name) || in set_attribute_error_context()
901 _PyObject_SetAttrId(value, &PyId_obj, v))) { in set_attribute_error_context()
Dmoduleobject.c456 if (v == NULL || _PyObject_SetAttrId(m, &PyId___doc__, v) != 0) { in PyModule_SetDocString()
Ddescrobject.c1762 int err = _PyObject_SetAttrId((PyObject *)self, &PyId___doc__, get_doc); in property_init_impl()
/third_party/python/Modules/_ctypes/
D_ctypes.c535 if (_PyObject_SetAttrId((PyObject *)result, &PyId__fields_, fields) < 0) { in StructUnionType_new()