| /sssd/src/python/ |
| H A D | pysss_murmur.c | 33 static PyObject * py_murmurhash3(PyObject *module, PyObject *args) argument 40 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "slL"),
|
| H A D | pysss_nss_idmap.c | 239 static PyObject *check_args(enum lookup_type type, PyObject *args) argument 246 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "O"), &obj)) { 319 static PyObject * py_getsidbyname(PyObject *module, PyObject *args) argument 321 return check_args(SIDBYNAME, args); 332 static PyObject * py_getsidbyid(PyObject *module, PyObject *args) argument 334 return check_args(SIDBYID, args); 347 static PyObject * py_getnamebysid(PyObject *module, PyObject *args) argument 349 return check_args(NAMEBYSID, args); 363 static PyObject * py_getidbysid(PyObject *module, PyObject *args) argument 365 return check_args(IDBYSID, args); 378 py_getnamebycert(PyObject *module, PyObject *args) argument [all...] |
| H A D | pysss.c | 155 PyObject *args, 176 if (!PyArg_ParseTupleAndKeywords(args, kwds, 310 PyObject *args, 321 if(!PyArg_ParseTupleAndKeywords(args, kwds, 420 PyObject *args, 439 if (!PyArg_ParseTupleAndKeywords(args, kwds, 541 PyObject *args, 551 if (!PyArg_ParseTupleAndKeywords(args, kwds, 612 PyObject *args, 619 if(!PyArg_ParseTuple(args, discard_const_ 154 py_sss_useradd(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 309 py_sss_userdel(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 419 py_sss_usermod(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 540 py_sss_groupadd(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 611 py_sss_groupdel(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 658 py_sss_groupmod(PySssLocalObject *self, PyObject *args, PyObject *kwds) argument 756 py_sss_getgrouplist(PyObject *self, PyObject *args) argument 843 PySssLocalObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument 963 py_sss_encrypt(PySssPasswordObject *self, PyObject *args, PyObject *kwds) argument 1059 PySssPasswordObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument [all...] |
| H A D | pyhbac.c | 298 HbacRuleElement_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument 356 HbacRuleElement_init(HbacRuleElement *self, PyObject *args, PyObject *kwargs) argument 364 if (!PyArg_ParseTupleAndKeywords(args, kwargs, 497 PyObject *o, *format, *args; local 516 args = Py_BuildValue(sss_py_const_p(char, "Kss"), 519 if (args == NULL) { 526 o = PyUnicode_Format(format, args); 530 Py_DECREF(args); 648 HbacRule_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument 729 HbacRule_init(HbacRuleObject *self, PyObject *args, PyObjec argument 874 PyObject *o, *format, *args; local 921 py_hbac_rule_validate(HbacRuleObject *self, PyObject *args) argument 1146 HbacRequestElement_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument 1208 HbacRequestElement_init(HbacRequestElement *self, PyObject *args, PyObject *kwargs) argument 1296 PyObject *o, *format, *args; local 1430 HbacRequest_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument 1495 HbacRequest_init(HbacRequest *self, PyObject *args, PyObject *kwargs) argument 1550 py_hbac_evaluate(HbacRequest *self, PyObject *args) argument 1667 PyObject *o, *format, *args; local 1844 py_hbac_result_string(PyObject *module, PyObject *args) argument 1868 py_hbac_error_string(PyObject *module, PyObject *args) argument [all...] |
| /sssd/src/sbus/ |
| H A D | sssd_dbus_meta.h | 84 const struct sbus_arg_meta *args; member in struct:sbus_signal_meta
|
| H A D | sssd_dbus_introspect.c | 61 #define SIGNAL_HAS_ARGS(s) ((s)->args != NULL) 116 const struct sbus_arg_meta *args, 123 if (args == NULL) { 127 for (i = 0; args[i].name != NULL; i++) { 128 arg = &args[i]; 152 #define sbus_introspect_generate_in_args(file, args) \ 153 sbus_introspect_generate_args(file, args, SBUS_ARG_IN) 155 #define sbus_introspect_generate_out_args(file, args) \ 156 sbus_introspect_generate_args(file, args, SBUS_ARG_OUT) 158 #define sbus_introspect_generate_signal_args(file, args) \ 115 sbus_introspect_generate_args(FILE *file, const struct sbus_arg_meta *args, enum sbus_arg_type type) argument [all...] |
| /sssd/src/sss_client/ssh/ |
| H A D | sss_ssh_knownhostsproxy.c | 168 connect_proxy_command(char **args) argument 172 execv(args[0], (char * const *)args);
|
| /sssd/src/tests/ |
| H A D | safe-format-tests.c | 35 const char *args[8]; member in struct:__anon48 129 /* Too many args used */ 159 for (num_args = 0; fixture->args[num_args] != NULL; ) 164 (const char * const*)fixture->args, num_args);
|
| H A D | sbus_tests.c | 91 NULL, /* in args: manually parsed */ 92 NULL, /* out args: manually parsed */ 98 NULL, /* in args: manually parsed */ 99 NULL, /* out args: manually parsed */ 105 NULL, /* in args: manually parsed */ 106 NULL, /* out args: manually parsed */ 267 const char *args[] = { "one", "two", "three" }; local 283 array = args;
|
| H A D | sbus_codegen_tests.c | 53 find_arg(const struct sbus_arg_meta *args, argument 57 for (arg = args; arg->name != NULL; arg++) { 124 ck_assert(signal->args != NULL); 126 arg = find_arg(signal->args, "gender");
|
| /sssd/src/util/ |
| H A D | safe-format-string.c | 79 const char * const args[], 142 value = args[n - 1]; 182 value = args[at_arg++]; 216 const char **args; local 221 args = NULL; 229 mem = realloc (args, sizeof (const char *) * alo_args); 231 free (args); 234 args = mem; 236 args[(*num_args)++] = arg; 239 return args; 76 safe_format_string_cb(void (* copy_fn) (void *, const char *, size_t), void *data, const char *format, const char * const args[], int num_args) argument 277 const char **args; local [all...] |
| H A D | usertools.c | 597 const char *args[] = { name, domain_name, flat_dom_name, NULL }; local 603 if (safe_format_string_cb(safe_talloc_callback, &output, nctx->fq_fmt, args, 3) < 0)
|
| H A D | util.c | 128 static void free_args(char **args) argument 132 if (args) { 133 for (i = 0; args[i]; i++) free(args[i]); 134 free(args);
|
| /sssd/src/providers/ad/ |
| H A D | ad_machine_pw_renewal.c | 47 const char **args; local 61 args = talloc_array(renewal_data, const char *, 8); 62 if (args == NULL) { 70 args[c++] = NULL; 71 args[c++] = talloc_asprintf(args, "--computer-password-lifetime=%zu", 73 args[c++] = talloc_asprintf(args, "--host-fqdn=%s", ad_hostname); 75 args[c++] = talloc_asprintf(args, " [all...] |
| /sssd/src/providers/ |
| H A D | be_dyndns.c | 943 char **args; local 983 args = be_nsupdate_args(state, auth_type, force_tcp); 984 if (args == NULL) { 990 execv(NSUPDATE_PATH, args);
|
| /sssd/src/monitor/ |
| H A D | monitor.c | 2326 char **args; local 2367 args = parse_args(mt_svc->command); 2368 execvp(args[0], args);
|