Lines Matching refs:PyObject
37 static PyObject *ZFSError;
74 static PyObject *
77 PyObject *pyo; in nvl2py()
84 PyObject *pyval; in nvl2py()
130 dict2nvl(PyObject *d) in dict2nvl()
134 PyObject *key, *value; in dict2nvl()
179 static PyObject *
182 PyObject *d = PyDict_New(); in fakepropval()
188 add_ds_props(zfs_cmd_t *zc, PyObject *nvl) in add_ds_props()
200 static PyObject *
205 PyObject *pynv = NULL; in ioctl_with_dstnv()
229 static PyObject *
230 py_next_dataset(PyObject *self, PyObject *args) in py_next_dataset()
237 PyObject *nvl; in py_next_dataset()
238 PyObject *ret = NULL; in py_next_dataset()
267 static PyObject *
268 py_dataset_props(PyObject *self, PyObject *args) in py_dataset_props()
273 PyObject *nvl; in py_dataset_props()
289 static PyObject *
290 py_get_fsacl(PyObject *self, PyObject *args) in py_get_fsacl()
294 PyObject *nvl; in py_get_fsacl()
308 static PyObject *
309 py_set_fsacl(PyObject *self, PyObject *args) in py_set_fsacl()
315 PyObject *dict, *file; in py_set_fsacl()
348 static PyObject *
349 py_get_holds(PyObject *self, PyObject *args) in py_get_holds()
353 PyObject *nvl; in py_get_holds()
367 static PyObject *
368 py_userspace_many(PyObject *self, PyObject *args) in py_userspace_many()
375 PyObject *dict, *file; in py_userspace_many()
407 PyObject *pykey, *pyval; in py_userspace_many()
432 static PyObject *
433 py_userspace_upgrade(PyObject *self, PyObject *args) in py_userspace_upgrade()
454 static PyObject *
455 py_set_cmdstr(PyObject *self, PyObject *args) in py_set_cmdstr()
467 static PyObject *
468 py_get_proptable(PyObject *self, PyObject *args) in py_get_proptable()
471 PyObject *d = PyDict_New(); in py_get_proptable()
476 PyObject *tuple; in py_get_proptable()
481 PyObject *indextable; in py_get_proptable()
532 PyObject *zfs_ioctl = Py_InitModule("zfs.ioctl", zfsmethods); in initioctl()
533 PyObject *zfs_util = PyImport_ImportModule("zfs.util"); in initioctl()
534 PyObject *devfile; in initioctl()