regshell_cmds     312 source4/lib/registry/tools/regshell.c } regshell_cmds[] = {
regshell_cmds     333 source4/lib/registry/tools/regshell.c 	for(i = 0; regshell_cmds[i].name; i++) {
regshell_cmds     334 source4/lib/registry/tools/regshell.c 		printf("%s - %s\n", regshell_cmds[i].name,
regshell_cmds     335 source4/lib/registry/tools/regshell.c 			regshell_cmds[i].help);
regshell_cmds     352 source4/lib/registry/tools/regshell.c 	for(i = 0; regshell_cmds[i].name; i++) {
regshell_cmds     353 source4/lib/registry/tools/regshell.c 		if(!strcmp(regshell_cmds[i].name, argv[0]) ||
regshell_cmds     354 source4/lib/registry/tools/regshell.c 		   (regshell_cmds[i].alias && !strcmp(regshell_cmds[i].alias, argv[0]))) {
regshell_cmds     355 source4/lib/registry/tools/regshell.c 			return regshell_cmds[i].handle(ctx, argc, argv);
regshell_cmds     379 source4/lib/registry/tools/regshell.c 	for (i=0;regshell_cmds[i].handle && count < MAX_COMPLETIONS-1;i++) {
regshell_cmds     380 source4/lib/registry/tools/regshell.c 		if (strncmp(text, regshell_cmds[i].name, len) == 0) {
regshell_cmds     381 source4/lib/registry/tools/regshell.c 			matches[count] = strdup(regshell_cmds[i].name);