Lines Matching defs:args
45 lpc_exit(papi_service_t svc, char **args)
53 lpc_status(papi_service_t svc, char **args)
59 char *destination = args[1];
109 lpc_abort(papi_service_t svc, char **args)
112 char *destination = args[1];
132 lpc_clean(papi_service_t svc, char **args)
136 char *destination = args[1];
164 lpc_disable(papi_service_t svc, char **args)
167 char *destination = args[1];
185 lpc_enable(papi_service_t svc, char **args)
188 char *destination = args[1];
206 lpc_restart(papi_service_t svc, char **args)
210 rc += lpc_disable(svc, args);
211 rc += lpc_enable(svc, args);
217 lpc_start(papi_service_t svc, char **args)
220 char *destination = args[1];
238 lpc_stop(papi_service_t svc, char **args)
241 char *destination = args[1];
259 lpc_topq(papi_service_t svc, char **args)
262 char *destination = args[1];
263 char *idstr = args[2];
283 lpc_up(papi_service_t svc, char **args)
287 rc += lpc_enable(svc, args);
288 rc += lpc_start(svc, args);
294 lpc_down(papi_service_t svc, char **args)
298 rc += lpc_disable(svc, args);
299 rc += lpc_stop(svc, args);
304 static int lpc_help(papi_service_t svc, char **args); /* forward reference */
324 int (*handler)(papi_service_t svc, char **args);
372 lpc_help(papi_service_t svc, char **args)
374 if (args[1] == NULL) {
386 char *helptext = lpc_helptext(args[1]);
391 printf("%s: %s\n", args[1], helptext);