Lines Matching refs:args
323 static PyObject *check_args(enum lookup_type type, PyObject *args)
330 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "O"), &obj)) {
403 static PyObject * py_getsidbyname(PyObject *module, PyObject *args)
405 return check_args(SIDBYNAME, args);
416 static PyObject * py_getsidbyid(PyObject *module, PyObject *args)
418 return check_args(SIDBYID, args);
431 static PyObject * py_getnamebysid(PyObject *module, PyObject *args)
433 return check_args(NAMEBYSID, args);
447 static PyObject * py_getidbysid(PyObject *module, PyObject *args)
449 return check_args(IDBYSID, args);
462 static PyObject * py_getnamebycert(PyObject *module, PyObject *args)
464 return check_args(NAMEBYCERT, args);
477 static PyObject * py_getlistbycert(PyObject *module, PyObject *args)
479 return check_args(LISTBYCERT, args);