Lines Matching refs:pid
3887 PyObject *pid = NULL;
3893 pid = call_method(self->pers_func, self->pers_func_self, obj);
3894 if (pid == NULL)
3897 if (pid != Py_None) {
3899 if (save(self, pid, 1) < 0 ||
3906 pid_str = PyObject_Str(pid);
3910 /* XXX: Should it check whether the pid contains embedded
3936 Py_XDECREF(pid);
6057 PyObject *pid, *obj;
6067 pid = PyUnicode_DecodeASCII(s, len - 1, "strict");
6068 if (pid == NULL) {
6077 obj = call_method(self->pers_func, self->pers_func_self, pid);
6078 Py_DECREF(pid);
6097 PyObject *pid, *obj;
6100 PDATA_POP(self->stack, pid);
6101 if (pid == NULL)
6104 obj = call_method(self->pers_func, self->pers_func_self, pid);
6105 Py_DECREF(pid);