Searched defs:action (Results 1 - 6 of 6) sorted by relevance
| /sssd/src/sss_client/ |
| H A D | pam_test_client.c | 55 char *action; local 59 fprintf(stderr, "missing action and user name, using default\n"); 60 action = strdup("auth"); 63 fprintf(stdout, "using first argument as action and default user name\n"); 64 action = strdup(argv[1]); 67 action = strdup(argv[1]); 71 if (action == NULL || user == NULL) { 76 fprintf(stdout, "action: %s\nuser: %s\n", action,user); 84 if ( strncmp(action, "aut [all...] |
| /sssd/src/tests/cmocka/ |
| H A D | dummy_child.c | 42 const char *action = NULL; local 79 action = getenv("TEST_CHILD_ACTION"); 80 if (action) { 81 if (strcasecmp(action, "check_extra_args") == 0) { 87 } else if (strcasecmp(action, "check_only_extra_args") == 0) { 100 } else if (strcasecmp(action, "check_only_extra_args_neg") == 0) { 106 } else if (strcasecmp(action, "echo") == 0) {
|
| /sssd/src/tools/sssctl/ |
| H A D | sssctl.c | 121 static errno_t sssctl_manage_service(enum sssctl_svc_action action) argument 124 switch (action) { 133 switch (action) {
|
| /sssd/src/providers/krb5/ |
| H A D | krb5_utils.c | 240 char action; local 275 action = *n; 278 switch (action) { 379 action = 'U'; 384 action = 'U'; 391 action = 'U'; 396 action = 'u';
|
| H A D | krb5_common.h | 115 action_type action; member in struct:krb5_ctx
|
| /sssd/src/tests/ |
| H A D | stress-tests.c | 212 struct sigaction action, old_action; local 277 memset(&action, 0, sizeof(action)); 278 action.sa_handler = child_handler; 279 sigemptyset(&action.sa_mask); 280 sigaddset(&action.sa_mask, SIGCHLD); 281 action.sa_flags = SA_NOCLDSTOP; 283 sigaction(SIGCHLD, &action, &old_action);
|
Completed in 50 milliseconds