Searched refs:startup_info (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/components/nacl/common/
H A Dnacl_debug_exception_handler_win.h14 const std::string& startup_info,
H A Dnacl_debug_exception_handler_win.cc17 const std::string& startup_info,
21 startup_info_(startup_info),
67 const std::string& startup_info,
73 nacl_process, startup_info, message_loop, on_connected);
16 DebugExceptionHandler(base::ProcessHandle nacl_process, const std::string& startup_info, base::MessageLoopProxy* message_loop, const base::Callback<void(bool)>& on_connected) argument
65 NaClStartDebugExceptionHandlerThread( base::ProcessHandle nacl_process, const std::string& startup_info, base::MessageLoopProxy* message_loop, const base::Callback<void(bool)>& on_connected) argument
/external/chromium_org/base/win/
H A Dstartup_information.h31 LPSTARTUPINFOW startup_info() { return &startup_info_.StartupInfo; } function in class:base::win::StartupInformation
32 const LPSTARTUPINFOW startup_info() const { function in class:base::win::StartupInformation
H A Dstartup_information_unittest.cc41 base::win::StartupInformation startup_info;
59 ASSERT_TRUE(startup_info.InitializeProcThreadAttributeList(1));
60 ASSERT_TRUE(startup_info.UpdateProcThreadAttribute(
70 NULL, NULL, startup_info.startup_info(),
H A Dscoped_process_information_unittest.cc50 STARTUPINFO startup_info = {}; local
51 startup_info.cb = sizeof(startup_info);
55 &startup_info, process_handle));
/external/chromium_org/base/process/
H A Dlaunch_win.cc112 STARTUPINFO* startup_info = startup_info_wrapper.startup_info(); local
151 startup_info->lpDesktop = const_cast<wchar_t*>(L"");
152 startup_info->dwFlags = STARTF_USESHOWWINDOW;
153 startup_info->wShowWindow = options.start_hidden ? SW_HIDE : SW_SHOW;
160 startup_info->dwFlags |= STARTF_USESTDHANDLES;
161 startup_info->hStdInput = options.stdin_handle;
162 startup_info->hStdOutput = options.stdout_handle;
163 startup_info->hStdError = options.stderr_handle;
194 enviroment_block, NULL, startup_info,
[all...]
/external/chromium_org/sandbox/win/src/
H A Dbroker_services.cc382 base::win::StartupInformation startup_info; local
385 startup_info.startup_info()->lpDesktop =
416 if (!startup_info.InitializeProcThreadAttributeList(attribute_count))
420 result = app_container->ShareForStartup(&startup_info);
426 if (!startup_info.UpdateProcThreadAttribute(
434 if (!startup_info.UpdateProcThreadAttribute(
440 startup_info.startup_info()->dwFlags |= STARTF_USESTDHANDLES;
441 startup_info
[all...]
H A DWow64.cc159 STARTUPINFO startup_info = {0}; local
160 startup_info.cb = sizeof(startup_info);
163 NULL, &startup_info, &temp_process_info))
H A Dprocess_thread_interception.h76 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
83 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
H A Dprocess_thread_policy.cc224 STARTUPINFO startup_info = {0}; local
225 startup_info.cb = sizeof(startup_info);
232 FALSE, 0, NULL, NULL, &startup_info,
H A Dtarget_process.cc114 const base::win::StartupInformation& startup_info,
125 if (startup_info.has_extended_startup_info())
144 startup_info.startup_info(),
111 Create(const wchar_t* exe_path, const wchar_t* command_line, bool inherit_handles, const base::win::StartupInformation& startup_info, base::win::ScopedProcessInformation* target_info) argument
H A Dinterceptors_64.cc178 LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info,
185 current_directory, startup_info,
193 LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info,
200 current_directory, startup_info,
174 TargetCreateProcessW64( LPCWSTR application_name, LPWSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info, LPPROCESS_INFORMATION process_information) argument
189 TargetCreateProcessA64( LPCSTR application_name, LPSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION process_information) argument
H A Dpolicy_target_test.cc151 STARTUPINFO startup_info = {0}; local
152 startup_info.cb = sizeof(startup_info);
158 0, NULL, NULL, &startup_info, &temp_process_info))
H A Dprocess_thread_interception.cc268 LPSTARTUPINFOW startup_info,
272 environment, current_directory, startup_info,
327 LPSTARTUPINFOA startup_info,
331 environment, current_directory, startup_info,
262 TargetCreateProcessW(CreateProcessWFunction orig_CreateProcessW, LPCWSTR application_name, LPWSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info, LPPROCESS_INFORMATION process_information) argument
321 TargetCreateProcessA(CreateProcessAFunction orig_CreateProcessA, LPCSTR application_name, LPSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION process_information) argument
H A Dtarget_process.h51 const base::win::StartupInformation& startup_info,
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc102 STARTUPINFOA startup_info; local
103 ZeroMemory(&startup_info, sizeof(startup_info));
104 startup_info.cb = sizeof(startup_info);
105 startup_info.dwFlags = STARTF_USESTDHANDLES;
106 startup_info.hStdInput = stdin_pipe_read;
107 startup_info.hStdOutput = stdout_pipe_write;
108 startup_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
110 if (startup_info
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc99 STARTUPINFO startup_info; local
100 ZeroMemory(&startup_info, sizeof(startup_info));
101 startup_info.cb = sizeof(startup_info);
102 startup_info.dwFlags = STARTF_USESTDHANDLES;
103 startup_info.hStdInput = stdin_pipe_read;
104 startup_info.hStdOutput = stdout_pipe_write;
105 startup_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
107 if (startup_info
[all...]
/external/chromium_org/components/nacl/broker/
H A Dnacl_broker_listener.h41 const std::string& startup_info);
H A Dnacl_broker_listener.cc128 const std::string& startup_info) {
130 process_handle, startup_info,
126 OnLaunchDebugExceptionHandler( int32 pid, base::ProcessHandle process_handle, const std::string& startup_info) argument
/external/chromium_org/components/nacl/browser/
H A Dnacl_broker_host_win.h36 const std::string& startup_info);
H A Dnacl_broker_service_win.h42 const std::string& startup_info);
H A Dnacl_broker_host_win.cc98 const std::string& startup_info) {
106 pid, handle_in_broker_process, startup_info));
96 LaunchDebugExceptionHandler( int32 pid, base::ProcessHandle process_handle, const std::string& startup_info) argument
H A Dnacl_broker_service_win.cc74 base::ProcessHandle process_handle, const std::string& startup_info) {
80 startup_info);
72 LaunchDebugExceptionHandler( base::WeakPtr<NaClProcessHost> nacl_process_host, int32 pid, base::ProcessHandle process_handle, const std::string& startup_info) argument
/external/chromium_org/remoting/host/win/
H A Dlaunch_process_with_token.cc312 STARTUPINFOW startup_info; member in struct:__anon10487::CreateProcessRequest
336 request->startup_info.cb = sizeof(request->startup_info);
352 request->startup_info.lpDesktop =
462 STARTUPINFOW startup_info; local
463 memset(&startup_info, 0, sizeof(startup_info));
464 startup_info.cb = sizeof(startup_info);
466 startup_info
[all...]
/external/chromium_org/cloud_print/service/win/
H A Dchrome_launcher.cc73 STARTUPINFO startup_info = {}; local
74 startup_info.cb = sizeof(startup_info);
75 startup_info.dwFlags = STARTF_USESHOWWINDOW;
76 startup_info.wShowWindow = SW_SHOW;
83 FALSE, 0, NULL, NULL, &startup_info, &temp_process_info)) {

Completed in 8593 milliseconds

12