Lines Matching defs:commandLine
373 char *commandLine;
377 commandLine = jvmtiAllocate((int)strlen(command) +
380 if (commandLine == NULL) {
383 (void)strcpy(commandLine, command);
384 (void)strcat(commandLine, " ");
385 (void)strcat(commandLine, name);
386 (void)strcat(commandLine, " ");
387 (void)strcat(commandLine, address);
389 /* Convert commandLine from UTF-8 to platform encoding */
390 len = (int)strlen(commandLine);
393 (jbyte*)commandLine, len, buf, len*3+3);
395 /* Exec commandLine */
400 jvmtiDeallocate(commandLine);