Searched defs:process (Results 176 - 200 of 507) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/
H A DProcess.cpp29 // Empty virtual destructor to anchor the vtable for the process class.
30 process::~process() {}
32 self_process *process::get_self() {
42 // instance should live until the process terminates to avoid the potential for
53 /// startup of the process to get approximately correct results.
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractTransformTask.java154 bytes = process(bytes);
216 private byte[] process(byte[] bytes) throws Exception { method in class:AbstractTransformTask
/external/wpa_supplicant_8/hs20/server/
H A Dhs20_spp_server.c64 static int process(struct hs20_svc *ctx) function
178 ret = process(&ctx);
179 debug_print(&ctx, 1, "process() --> %d", ret);
/external/apache-http/src/org/apache/http/protocol/
H A DBasicHttpProcessor.java287 public void process( method in class:BasicHttpProcessor
295 interceptor.process(request, context);
301 public void process( method in class:BasicHttpProcessor
309 interceptor.process(response, context);
/external/chromium_org/base/memory/
H A Dshared_memory_nacl.cc38 ProcessHandle process)
144 bool SharedMemory::ShareToProcessCommon(ProcessHandle process, argument
37 SharedMemory(SharedMemoryHandle handle, bool read_only, ProcessHandle process) argument
H A Dshared_memory_win.cc59 ProcessHandle process)
66 ::DuplicateHandle(process, handle,
220 bool SharedMemory::ShareToProcessCommon(ProcessHandle process, argument
238 if (process == GetCurrentProcess() && close_self) {
243 if (!DuplicateHandle(GetCurrentProcess(), mapped_file, process,
58 SharedMemory(SharedMemoryHandle handle, bool read_only, ProcessHandle process) argument
/external/chromium_org/base/process/
H A Dkill_win.cc5 #include "base/process/kill.h"
14 #include "base/process/process_iterator.h"
28 // process. It's value is obviously not that unique, and it's
32 // process goes away.
35 // Maximum amount of time (in milliseconds) to wait for the process to exit.
40 explicit TimerExpiredTask(ProcessHandle process);
51 // The process that we are watching.
59 TimerExpiredTask::TimerExpiredTask(ProcessHandle process) : process_(process) { argument
79 // Stop watching the process handl
94 KillProcess(ProcessHandle process, int exit_code, bool wait) argument
110 HANDLE process = OpenProcess(PROCESS_TERMINATE | SYNCHRONIZE, local
211 HANDLE process = OpenProcess(SYNCHRONIZE, local
237 EnsureProcessTerminated(ProcessHandle process) argument
[all...]
H A Dprocess_metrics_openbsd.cc5 #include "base/process/process_metrics.h"
13 ProcessMetrics* ProcessMetrics::CreateProcessMetrics(ProcessHandle process) { argument
14 return new ProcessMetrics(process);
134 ProcessMetrics::ProcessMetrics(ProcessHandle process) argument
135 : process_(process),
/external/chromium_org/base/win/
H A Dmetro.cc25 // This must be a metro process if the metro_driver is loaded.
40 // The immersive state of a process can never change.
55 bool IsProcessImmersive(HANDLE process) { argument
56 typedef BOOL (WINAPI* IsImmersiveProcessFunc)(HANDLE process);
65 return is_immersive_process(process) ? true: false;
/external/chromium_org/chrome/browser/
H A Dchrome_content_browser_client_parts.h58 // Append extra switches to |command_line| for |process|. If |process| is not
62 content::RenderProcessHost* process,
60 AppendExtraRendererCommandLineSwitches( base::CommandLine* command_line, content::RenderProcessHost* process, Profile* profile) argument
H A Dmemory_details_mac.cc15 #include "base/process/process_iterator.h"
56 // (Human and process) names of browsers; should match the ordering for
75 ProcessData process; local
76 process.name = base::UTF8ToUTF16(process_template[index].name);
77 process.process_name =
79 process_data_.push_back(process);
182 // Add the process info to our list.
240 // Add the process info to our list.
/external/chromium_org/chrome/browser/download/
H A Dsave_package_file_picker.cc237 RenderProcessHost* process = RenderProcessHost::FromID(render_process_id_); local
238 if (!process)
270 process->GetBrowserContext());
/external/chromium_org/chrome/browser/extensions/api/automation_internal/
H A Dautomation_internal_api.cc60 content::RenderProcessHost* process = contents->GetRenderProcessHost(); local
61 int process_id = process ? process->GetID() : -1;
/external/chromium_org/chrome/browser/extensions/
H A Dapp_process_apitest.cc115 // process, since they do not have the background permission. (Thus, we
123 // process.
144 // Tests that hosted apps with the background permission get a process-per-app
199 // permission, all of its instances are in the same process. Thus two tabs
200 // should be part of the extension app and grouped in the same process.
218 // TODO(creis): This should open in a new process (i.e., false for the last
221 // between non-app popups and non-app iframes in the app process.
261 // Test that hosted apps without the background permission use a process per app
274 // allow_js_access to false also use a process per app instance model.
287 // Tests that bookmark apps do not use the app process mode
771 content::RenderProcessHost* process = local
[all...]
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_ipc_router_unittest.cc118 process()->sink().ClearMessages();
125 content::MockRenderProcessHost* process() { function in class:SearchIPCRouterTest
148 return process()->sink().GetFirstMessageMatching(id) != NULL;
158 const IPC::Message* message = process()->sink().GetFirstMessageMatching(
707 process()->sink().ClearMessages();
720 process()->sink().ClearMessages();
734 process()->sink().ClearMessages();
748 process()->sink().ClearMessages();
760 process()->sink().ClearMessages();
772 process()
[all...]
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Dinline_login_ui_browsertest.cc62 content::RenderProcessHost* process = contents->GetRenderProcessHost(); local
63 return ContentInfo(process->GetID(), process->GetStoragePartition());
125 // Even when the process limit is set to one, the signin process should
126 // still be given its own process and storage partition.
/external/chromium_org/chrome/test/base/
H A Dtesting_profile_manager.cc39 TestingProfileManager::TestingProfileManager(TestingBrowserProcess* process) argument
41 browser_process_(process),
42 local_state_(process),
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_desktop_impl.cc10 #include "base/process/kill.h"
41 // The wait may fail with ECHILD if another process also waited for
42 // the same pid, causing the process state to get cleaned up.
45 LOG(WARNING) << "Error waiting for process " << process_id;
69 base::ProcessHandle process,
77 process_(process),
64 ChromeDesktopImpl( scoped_ptr<DevToolsHttpClient> http_client, scoped_ptr<DevToolsClient> websocket_client, ScopedVector<DevToolsEventListener>& devtools_event_listeners, scoped_ptr<PortReservation> port_reservation, base::ProcessHandle process, const CommandLine& command, base::ScopedTempDir* user_data_dir, base::ScopedTempDir* extension_dir) argument
H A Ddevice_manager.cc36 const std::string& process,
83 !process.empty())
85 " does not accept activity/process");
117 this->ForwardDevtoolsPort(package, process, device_socket, port);
123 const std::string& process,
130 process.empty() ? package : process,
133 if (process.empty())
135 "process name must be specified if not equal to package name");
34 SetUp(const std::string& package, const std::string& activity, const std::string& process, const std::string& args, bool use_running_app, int port) argument
122 ForwardDevtoolsPort(const std::string& package, const std::string& process, std::string& device_socket, int port) argument
/external/chromium_org/chrome_elf/
H A Dbreakpad.cc29 // The protocol for connecting to the out-of-process Breakpad crash
42 base::string16 process = IsNonBrowserProcess() ? L"renderer" : L"browser"; local
58 kBreakpadProcessEntry, process.c_str());
/external/chromium_org/components/nacl/browser/
H A Dnacl_process_host.h17 #include "base/process/process.h"
39 void* AllocateAddressSpaceASLR(base::ProcessHandle process, size_t size);
42 // channel. There will be one NaClProcessHost per NaCl process
43 // The browser is responsible for starting the NaCl process
56 // uses_irt: whether the launched process should use the IRT.
58 // enable_dyncode_syscalls: whether the launched process should allow dyncode
60 // enable_exception_handling: whether the launched process should allow
62 // enable_crash_throttling: whether a crash of this process contributes
64 // whether this process shoul
106 content::BrowserChildProcessHost* process() { return process_.get(); } function in class:nacl::NaClProcessHost
[all...]
/external/chromium_org/components/visitedlink/browser/
H A Dvisitedlink_event_listener.cc48 content::RenderProcessHost* process = local
50 if (!process)
53 table_memory->ShareReadOnlyToProcess(process->GetHandle(),
56 process->Send(new ChromeViewMsg_VisitedLink_NewTable(
85 content::RenderProcessHost* process = local
87 if (!process)
90 if (!process->VisibleWidgetCount())
94 process->Send(new ChromeViewMsg_VisitedLink_Reset());
102 process->Send(new ChromeViewMsg_VisitedLink_Add(pending_));
138 content::RenderProcessHost* process local
183 content::RenderProcessHost* process = local
199 content::RenderProcessHost* process = local
[all...]
/external/chromium_org/content/browser/device_sensors/
H A Ddata_fetcher_shared_memory_base.cc176 ConsumerType consumer_type, base::ProcessHandle process) {
182 it->second->ShareToProcess(process, &renderer_handle);
175 GetSharedMemoryHandleForProcess( ConsumerType consumer_type, base::ProcessHandle process) argument
/external/chromium_org/content/browser/media/
H A Dmedia_internals_proxy.cc38 RenderProcessHost* process = Source<RenderProcessHost>(source).ptr(); local
40 new base::FundamentalValue(process->GetID()));
/external/chromium_org/content/browser/
H A Dppapi_plugin_process_host.h15 #include "base/process/process.h"
93 // Returns the instances that match the specified process name.
106 const BrowserChildProcessHostImpl* process() { return process_.get(); } function in class:content::PpapiPluginProcessHost
117 // Constructors for plugin and broker process hosts, respectively.
123 // Actually launches the process with the given plugin info. Returns true
124 // on success (the process was spawned).
150 // Channel requests that we are waiting to send to the plugin process once
154 // Channel requests that we have already sent to the plugin process, but

Completed in 3237 milliseconds

1234567891011>>