Home | History | Annotate | Download | only in Objects

Lines Matching refs:cur_slot

229     PyModuleDef_Slot* cur_slot;
260 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) {
261 if (cur_slot->slot == Py_mod_create) {
269 create = cur_slot->value;
270 } else if (cur_slot->slot < 0 || cur_slot->slot > _Py_mod_LAST_SLOT) {
274 name, cur_slot->slot);
353 PyModuleDef_Slot *cur_slot;
380 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) {
381 switch (cur_slot->slot) {
386 ret = ((int (*)(PyObject *))cur_slot->value)(module);
408 name, cur_slot->slot);