HomeSort by relevance Sort by last modified time
    Searched refs:start_info (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/base/process/
launch_win.cc 285 STARTUPINFO start_info = {}; local
287 start_info.cb = sizeof(STARTUPINFO);
288 start_info.hStdOutput = out_write;
290 start_info.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
291 start_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
292 start_info.dwFlags |= STARTF_USESTDHANDLES;
300 0, NULL, NULL, &start_info, &temp_process_info)) {
  /external/chromium_org/tools/gn/
function_exec_script.cc 88 STARTUPINFO start_info = {}; local
90 start_info.cb = sizeof(STARTUPINFO);
91 start_info.hStdOutput = out_write;
93 start_info.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
95 //start_info.hStdError = err_write;
96 start_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
97 start_info.dwFlags |= STARTF_USESTDHANDLES;
107 &start_info, &temp_process_info)) {
123 // Also uncomment start_info code above.
  /external/chromium_org/tools/traceline/traceline/
main.cc 1259 STARTUPINFOA start_info = {0}; local
    [all...]
  /external/chromium/base/
process_util_win.cc 355 STARTUPINFO start_info = { 0 }; local
357 start_info.cb = sizeof(STARTUPINFO);
358 start_info.hStdOutput = out_write;
360 start_info.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
361 start_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
362 start_info.dwFlags |= STARTF_USESTDHANDLES;
369 0, NULL, NULL, &start_info, &proc_info)) {
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_instance.h 153 static void* MainThreadThunk(void *start_info);

Completed in 55 milliseconds