Home
last modified time | relevance | path

Searched refs:structmodule (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/python/cpython3/Modules/
D_testbuffer.c11 static PyObject *structmodule = NULL; variable
581 unpack_from = PyObject_GetAttrString(structmodule, "unpack_from"); in unpack_single()
2846 structmodule = PyImport_ImportModule("struct"); in PyInit__testbuffer()
2847 if (structmodule == NULL) in PyInit__testbuffer()
2850 Struct = PyObject_GetAttrString(structmodule, "Struct"); in PyInit__testbuffer()
2851 calcsize = PyObject_GetAttrString(structmodule, "calcsize"); in PyInit__testbuffer()
/aosp_15_r20/external/python/cpython3/Objects/
Dabstract.c529 PyObject *structmodule = NULL; in PyBuffer_SizeFromFormat() local
535 structmodule = PyImport_ImportModule("struct"); in PyBuffer_SizeFromFormat()
536 if (structmodule == NULL) { in PyBuffer_SizeFromFormat()
540 calcsize = PyObject_GetAttrString(structmodule, "calcsize"); in PyBuffer_SizeFromFormat()
561 Py_DECREF(structmodule); in PyBuffer_SizeFromFormat()
Dmemoryobject.c1970 PyObject *structmodule; /* XXX cache these two */ in struct_get_unpacker() local
1976 structmodule = PyImport_ImportModule("struct"); in struct_get_unpacker()
1977 if (structmodule == NULL) in struct_get_unpacker()
1980 Struct = PyObject_GetAttrString(structmodule, "Struct"); in struct_get_unpacker()
1981 Py_DECREF(structmodule); in struct_get_unpacker()
/aosp_15_r20/external/python/cpython2/RISCOS/
DMakefile297 @.^.Lib.struct/pyd: @.^.Modules.o.structmodule s.linktab
298 $(MAKEDLK) -d @.^.Lib.struct/pyd -s s.linktab -o @.^.Modules.o.structmodule -e initstruct
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/cpython/
Dignored.tsv106 Modules/_testbuffer.c - structmodule -
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/
Dmakefile.omk782 structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Dmakefile1075 structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
/aosp_15_r20/external/python/cpython2/Misc/
DHISTORY12307 - Added doc strings to string.py, stropmodule.c, structmodule.c,
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY29686 - Added doc strings to string.py, stropmodule.c, structmodule.c,