Lines Matching refs:commandLine
376 char *commandLine; in launch() local
380 commandLine = jvmtiAllocate((int)strlen(command) + in launch()
383 if (commandLine == NULL) { in launch()
386 (void)strcpy(commandLine, command); in launch()
387 (void)strcat(commandLine, " "); in launch()
388 (void)strcat(commandLine, name); in launch()
389 (void)strcat(commandLine, " "); in launch()
390 (void)strcat(commandLine, address); in launch()
393 len = (int)strlen(commandLine); in launch()
396 (jbyte*)commandLine, len, buf, len*3+3); in launch()
403 jvmtiDeallocate(commandLine); in launch()