Home | History | Annotate | Download | only in python

Lines Matching refs:ho

33 static void p_cgi_dealloc (CGIObject *ho);
54 static void p_cgi_dealloc (CGIObject *ho)
56 if (ho->cgi)
58 cgi_destroy (&(ho->cgi));
60 PyObject_DEL(ho);
74 CGIObject *ho = PyObject_NEW (CGIObject, &CGIObjectType);
75 if (ho == NULL) return NULL;
76 ho->cgi = data;
77 ho->hdf = p_hdf_to_object (data->hdf, 0);
78 Py_INCREF(ho->hdf);
79 rv = (PyObject *) ho;
444 PyObject *p_cgi_value_get_attr (CGIObject *ho, char *name)
448 Py_INCREF(ho->hdf);
449 return ho->hdf;
451 return Py_FindMethod(CGIMethods, (PyObject *)ho, name);
866 PyObject *ho;
872 if (!PyArg_ParseTuple(args, "Ossi:exportDate(hdf, prefix, timezone, time_t)", &ho, &prefix, &timezone, &i))
875 hdf = p_object_to_hdf (ho);