Home | History | Annotate | Download | only in opcontrol

Lines Matching full:command

672         char command[1024];
675 strcpy(command, argv[0]);
676 char* slash = strrchr(command, '/');
677 strcpy(slash ? slash + 1 : command, "oprofiled --session-dir="OP_DATA_DIR);
720 snprintf(command + strlen(command), sizeof(command) - strlen(command),
723 snprintf(command + strlen(command), sizeof(command) - strlen(command), ",");
728 snprintf(command + strlen(command), sizeof(command) - strlen(command),
758 snprintf(command + strlen(command), sizeof(command) - strlen(command),
762 snprintf(command + strlen(command), sizeof(command) - strlen(command),
765 snprintf(command + strlen(command), sizeof(command) - strlen(command),
770 snprintf(command + strlen(command), sizeof(command) - strlen(command),
775 verbose("command: %s\n", command);
777 int rc = system(command);