Searched defs:process (Results 126 - 150 of 507) sorted by relevance

1234567891011>>

/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp90 AuxVector::AuxVector(Process *process) argument
91 : m_process(process)
/external/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp39 ThreadMachCore::ThreadMachCore (Process &process, lldb::tid_t tid) : argument
40 Thread(process, tid),
70 // register supply functions where they check the process stop ID and do
/external/mockito/src/org/mockito/internal/configuration/
H A DDefaultAnnotationEngine.java24 * The {@link #process(Class, Object)} method implementation <strong>does not</strong> process super classes!
43 return forAnnotation(annotation).process(annotation, field);
51 public Object process(A annotation, Field field) {
61 public void process(Class<?> clazz, Object testInstance) { method in class:DefaultAnnotationEngine
H A DInjectingAnnotationEngine.java43 * This code process the test class and the super classes.
52 * @see org.mockito.configuration.AnnotationEngine#process(Class, Object)
54 public void process(Class<?> clazz, Object testInstance) { method in class:InjectingAnnotationEngine
71 delegate.process(classContext, testInstance);
73 spyAnnotationEngine.process(classContext, testInstance);
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DMockInjectionStrategy.java54 * However if injection occurred successfully, the process should return <code>true</code>,
67 public boolean process(Field onField, Object fieldOwnedBy, Set<Object> mockCandidates) { method in class:MockInjectionStrategy
78 * Don't call this method directly, instead call {@link #process(Field, Object, Set)}
89 return nextStrategy != null && nextStrategy.process(field, fieldOwner, mockCandidates);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DCommandLine.java35 options.put("--files", Boolean.FALSE); // process arguments as separate files
75 process("", System.out);
90 process(src, os);
96 process(argv[i], System.out);
127 private static void process(String src, OutputStream os) method in class:CommandLine
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPUnitDebuggeeProcessWrapper.java36 * which can launch and control debuggee process.
41 * Target VM debuggee process.
43 public Process process; field in class:JDWPUnitDebuggeeProcessWrapper
61 * Launches process and redirects output.
64 logWriter.println("Launch process: " + cmdLine);
65 process = launchProcess(cmdLine);
66 logWriter.println("Launched process");
67 if (process != null) {
69 errRedir = new StreamRedirector(process.getErrorStream(), logWriter, "STDERR");
72 outRedir = new StreamRedirector(process
263 WaitForProcessExit(Process process) argument
[all...]
/external/chromium_org/base/process/
H A Dmemory_linux.cc5 #include "base/process/memory.h"
12 #include "base/process/internal_linux.h"
167 bool AdjustOOMScore(ProcessId process, int score) { argument
171 FilePath oom_path(internal::GetProcPidDir(process));
177 DVLOG(1) << "Adjusting oom_score_adj of " << process << " to "
193 DVLOG(1) << "Adjusting oom_adj of " << process << " to " << score_str;
H A Dprocess_metrics_freebsd.cc5 #include "base/process/process_metrics.h"
15 ProcessMetrics::ProcessMetrics(ProcessHandle process) argument
16 : process_(process),
23 ProcessMetrics* ProcessMetrics::CreateProcessMetrics(ProcessHandle process) { argument
24 return new ProcessMetrics(process);
/external/chromium_org/base/win/
H A Dscoped_process_information_unittest.cc10 #include "base/process/kill.h"
79 HANDLE process = process_info.TakeProcessHandle(); local
80 EXPECT_EQ(kProcessHandle, process);
103 HANDLE process = process_info.TakeProcessHandle(); local
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dextension_message_port.cc17 ExtensionMessagePort::ExtensionMessagePort(content::RenderProcessHost* process, argument
20 : process_(process),
/external/chromium_org/chrome/browser/
H A Dmemory_details_win.cc59 ProcessData process; local
60 process.name = process_template[index].name;
61 process.process_name = process_template[index].process_name;
62 process_data_.push_back(process);
149 // Add the process info to our list.
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Denvironment_data_collection_win.cc56 bool CollectDlls(ClientIncidentReport_EnvironmentData_Process* process) { argument
70 ClientIncidentReport_EnvironmentData_Process_Dll* dll = process->add_dll();
79 void RecordLspFeature(ClientIncidentReport_EnvironmentData_Process* process) { argument
93 for (int i = 0; i < process->dll_size(); ++i) {
94 if (lsp_paths.count(base::UTF8ToWide(process->dll(i).path()))) {
95 process->mutable_dll(i)
102 ClientIncidentReport_EnvironmentData_Process* process) {
109 process->add_blacklisted_dll(dll_name.AsUTF8Unsafe());
116 ClientIncidentReport_EnvironmentData_Process* process) {
125 process
101 CollectDllBlacklistData( ClientIncidentReport_EnvironmentData_Process* process) argument
113 CollectModuleVerificationData( const wchar_t* const modules_to_verify[], size_t num_modules_to_verify, ClientIncidentReport_EnvironmentData_Process* process) argument
142 CollectPlatformProcessData( ClientIncidentReport_EnvironmentData_Process* process) argument
[all...]
/external/chromium_org/chrome/browser/service_process/
H A Dservice_process_control_browsertest.cc11 #include "base/process/kill.h"
12 #include "base/process/process_handle.h"
13 #include "base/process/process_iterator.h"
45 // Launch the process asynchronously.
79 // ForceServiceProcessShutdown removes the process from launched on Mac.
140 // Make sure we are connected to the service process.
146 // And then shutdown the service process.
153 // Make sure we are connected to the service process.
159 // And then shutdown the service process.
163 // This tests the case when a service process i
194 ServiceProcessControl* process = ServiceProcessControl::GetInstance(); local
208 ServiceProcessControl* process = ServiceProcessControl::GetInstance(); local
[all...]
/external/chromium_org/chrome/browser/task_manager/
H A Drenderer_resource.cc18 RendererResource::RendererResource(base::ProcessHandle process, argument
20 : process_(process),
26 // We cache the process and pid as when a Tab/BackgroundContents is closed the
27 // process reference becomes NULL and the TaskManager still needs it.
/external/chromium_org/chrome/installer/util/
H A Dgoogle_update_util.cc12 #include "base/process/kill.h"
13 #include "base/process/launch.h"
92 base::win::ScopedHandle process; local
96 &process)) {
98 } else if (!base::WaitForExitCodeWithTimeout(process.Get(), &exit_code,
/external/chromium_org/chrome/test/base/
H A Dchrome_process_util.cc12 #include "base/process/kill.h"
13 #include "base/process/process_iterator.h"
24 // Returns the executable name of the current Chrome helper process.
96 // On Unix we might be running with a zygote process for the renderers.
144 base::ProcessHandle process) {
147 base::ProcessMetrics::CreateProcessMetrics(process));
150 base::ProcessMetrics::CreateProcessMetrics(process, NULL));
152 process_handle_ = process;
143 ChromeTestProcessMetrics( base::ProcessHandle process) argument
/external/chromium_org/extensions/browser/
H A Drenderer_startup_helper.cc39 content::RenderProcessHost* process = local
42 browser_context_, process->GetBrowserContext()))
51 process->Send(new ExtensionMsg_SetSystemFont(
57 process->Send(new ExtensionMsg_SetFunctionNames(function_names));
61 process->Send(new ExtensionMsg_SetScriptingWhitelist(
74 process->Send(new ExtensionMsg_Loaded(loaded_extensions));
/external/chromium_org/ipc/mojo/
H A Dipc_channel_mojo_host.cc29 void OnClientLaunched(base::ProcessHandle process);
70 base::ProcessHandle process) {
72 channel_->OnClientLaunched(process);
95 void ChannelMojoHost::OnClientLaunched(base::ProcessHandle process) { argument
97 channel_delegate_->OnClientLaunched(process);
102 process));
69 OnClientLaunched( base::ProcessHandle process) argument
/external/chromium_org/sandbox/mac/
H A Dbootstrap_sandbox.cc68 // Store the policy for the process we're about to create.
84 // Apply the policy to the new process.
105 const auto& process = sandboxed_processes_.find(pid); local
110 if (process != sandboxed_processes_.end()) {
111 policy_id = process->second;
/external/chromium_org/sandbox/win/src/
H A Dtarget_interceptions.cc20 HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size,
23 NTSTATUS ret = orig_MapViewOfSection(section, process, base, zero_bits,
40 if (!IsSameProcess(process))
62 g_nt.UnmapViewOfSection(process, *base);
82 NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process,
84 NTSTATUS ret = orig_UnmapViewOfSection(process, base);
89 if (!IsSameProcess(process))
18 TargetNtMapViewOfSection( NtMapViewOfSectionFunction orig_MapViewOfSection, HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size, SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect) argument
81 TargetNtUnmapViewOfSection( NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process, PVOID base) argument
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DLinkImport.cpp74 void LinkImport::process() function in class:blink::LinkImport
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicProcessorNode.cpp87 void AudioBasicProcessorNode::process(size_t framesToProcess) function in class:blink::AudioBasicProcessorNode
96 // FIXME: if we take "tail time" into account, then we can avoid calling processor()->process() once the tail dies down.
100 processor()->process(sourceBus, destinationBus, framesToProcess);
107 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
H A DBiquadDSPKernel.cpp113 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) function in class:blink::BiquadDSPKernel
130 m_biquad.process(source, destination, framesToProcess);
159 // these values. We need to synchronize with process() to prevent process() from updating
160 // the filter coefficients while we're trying to access them. The process will update it
164 // frequency response and is NOT the same as the one in process() which is used for
H A DBiquadProcessor.cpp107 void BiquadProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) function in class:blink::BiquadProcessor
116 // For each channel of our input, process using the corresponding BiquadDSPKernel into the output channel.
118 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);

Completed in 3137 milliseconds

1234567891011>>