Lines Matching refs:args

79  * Description: Convert Python args to nvlist pairs and
83 * args - pointer to a python object containing:
98 beCreateSnapshot(PyObject *self, PyObject *args)
106 if (!PyArg_ParseTuple(args, "z|z", &beName, &snapName)) {
144 * Description: Convert Python args to nvlist pairs and call libbe:be_copy
147 * args - pointer to a python object containing:
164 beCopy(PyObject *self, PyObject *args)
181 if (!PyArg_ParseTuple(args, "|zzzzOz", &trgtBeName, &srcBeName,
268 * Description: Convert Python args to nvlist pairs and call libbe:be_list
271 * args - pointer to a python object containing:
283 beList(PyObject *self, PyObject *args)
298 if (!PyArg_ParseTuple(args, "|z", &beName)) {
397 * Description: Convert Python args to nvlist pairs and call libbe:be_activate
400 * args - pointer to a python object containing:
411 beActivate(PyObject *self, PyObject *args)
417 if (!PyArg_ParseTuple(args, "z", &beName)) {
437 beActivateBH(PyObject *self, PyObject *args)
441 if (PyArg_ParseTuple(args, "sss", &bename, &root_ds, &zpool) == 0) {
450 beGetBootDeviceList(PyObject *self, PyObject *args)
457 if (PyArg_ParseTuple(args, "s", &zpool) == 0) {
477 * Description: Convert Python args to nvlist pairs and call libbe:be_destroy
480 * args - pointer to a python object containing:
491 beDestroy(PyObject *self, PyObject *args)
500 if (!PyArg_ParseTuple(args, "z|ii", &beName, &destroy_snaps,
535 * Description: Convert Python args to nvlist pairs and call libbe:be_destroy
538 * args - pointer to a python object containing:
550 beDestroySnapshot(PyObject *self, PyObject *args)
557 if (!PyArg_ParseTuple(args, "zz", &beName, &snapName)) {
579 * Description: Convert Python args to nvlist pairs and call libbe:be_rename
582 * args - pointer to a python object containing:
594 beRename(PyObject *self, PyObject *args)
601 if (!PyArg_ParseTuple(args, "zz", &oldBeName, &newBeName)) {
623 * Description: Convert Python args to nvlist pairs and call libbe:be_mount
626 * args - pointer to a python object containing:
639 beMount(PyObject *self, PyObject *args)
646 if (!PyArg_ParseTuple(args, "zz", &beName, &mountpoint)) {
668 * Description: Convert Python args to nvlist pairs and call libbe:be_unmount
671 * args - pointer to a python object containing:
682 beUnmount(PyObject *self, PyObject *args)
690 if (!PyArg_ParseTuple(args, "z|i", &beName, &force_unmount)) {
722 * Description: Convert Python args to nvlist pairs and call libbe:be_rollback
726 * args - pointer to a python object containing:
737 beRollback(PyObject *self, PyObject *args)
744 if (!PyArg_ParseTuple(args, "zz", &beName, &snapName)) {
766 * Description: Convert Python args to boolean and call libbe_print_errors to
769 * args - pointer to a python object containing:
773 * args - pointer to a python object containing:
783 bePrintErrors(PyObject *self, PyObject *args)
787 if (!PyArg_ParseTuple(args, "i", &print_errors) ||
796 * Description: Convert Python args to an int and call be_err_to_str to
799 * args - pointer to a python object containing:
808 beGetErrDesc(PyObject *self, PyObject *args)
813 if (!PyArg_ParseTuple(args, "i", &errCode)) {
833 * args - pointer to a python object containing:
842 beVerifyBEName(PyObject *self, PyObject *args)
846 if (!PyArg_ParseTuple(args, "s", &string)) {
1070 * Description: Convert Python args to an int and map an error code to an
1106 getzpoolbybename(PyObject *self, PyObject *args)
1112 if (PyArg_ParseTuple(args, "s", &bename) == 0) {
1132 beFindCurrentBE(PyObject *self, PyObject *args)
1149 beGetRootPoolList(PyObject *self, PyObject *args)
1186 beHasGRUB(PyObject *self, PyObject *args)
1222 beGetPlatform(PyObject *self, PyObject *args)