OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:commandlinevector
(Results
1 - 1
of
1
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/Launcher/win/
ProcessLauncherWin.cpp
78
Vector<UChar>
commandLineVector
;
79
append(
commandLineVector
, "\"");
80
append(
commandLineVector
, commandLine);
81
append(
commandLineVector
, "\"");
82
append(
commandLineVector
, " -type webprocess");
83
append(
commandLineVector
, " -clientIdentifier ");
84
append(
commandLineVector
, String::number(reinterpret_cast<uintptr_t>(clientIdentifier)));
85
commandLineVector
.append('\0');
90
BOOL result = ::CreateProcessW(0,
commandLineVector
.data(), 0, 0, true, 0, 0, 0, &startupInfo, &processInformation);
Completed in 29 milliseconds