Lines Matching defs:args
239 static PyObject *check_args(enum lookup_type type, PyObject *args)
246 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "O"), &obj)) {
319 static PyObject * py_getsidbyname(PyObject *module, PyObject *args)
321 return check_args(SIDBYNAME, args);
332 static PyObject * py_getsidbyid(PyObject *module, PyObject *args)
334 return check_args(SIDBYID, args);
347 static PyObject * py_getnamebysid(PyObject *module, PyObject *args)
349 return check_args(NAMEBYSID, args);
363 static PyObject * py_getidbysid(PyObject *module, PyObject *args)
365 return check_args(IDBYSID, args);
378 static PyObject * py_getnamebycert(PyObject *module, PyObject *args)
380 return check_args(NAMEBYCERT, args);