Home
last modified time | relevance | path

Searched refs:func_module (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dfuncobject.h31 PyObject *func_module; /* The __module__ attribute, can be anything */ member
60 (((PyFunctionObject *)func) -> func_module)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dfuncobject.h31 PyObject *func_module; /* The __module__ attribute, can be anything */ member
60 (((PyFunctionObject *)func) -> func_module)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfuncobject.c39 op->func_module = NULL; in PyFunction_New()
54 op->func_module = module; in PyFunction_New()
90 return ((PyFunctionObject *) op) -> func_module; in PyFunction_GetModule()
172 {"__module__", T_OBJECT, OFF(func_module), PY_WRITE_RESTRICTED},
456 Py_XDECREF(op->func_module); in func_dealloc()
478 Py_VISIT(f->func_module); in func_traverse()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfuncobject.c39 op->func_module = NULL; in PyFunction_New()
54 op->func_module = module; in PyFunction_New()
90 return ((PyFunctionObject *) op) -> func_module; in PyFunction_GetModule()
172 {"__module__", T_OBJECT, OFF(func_module), PY_WRITE_RESTRICTED},
456 Py_XDECREF(op->func_module); in func_dealloc()
478 Py_VISIT(f->func_module); in func_traverse()