Searched defs:process (Results 51 - 75 of 507) sorted by relevance

1234567891011>>

/external/mockito/src/org/mockito/internal/configuration/
H A DMockitoAnnotationsMockAnnotationProcessor.java18 public Object process(Mock annotation, Field field) { method in class:MockitoAnnotationsMockAnnotationProcessor
/external/chromium_org/apps/
H A Dload_and_launch_browsertest.cc6 // The two cases are when chrome is running and another process uses the switch
10 #include "base/process/launch.h"
53 base::ProcessHandle process; local
54 base::LaunchProcess(new_cmdline, base::LaunchOptionsForTest(), &process);
55 ASSERT_NE(base::kNullProcessHandle, process);
59 process, TestTimeouts::action_timeout()));
96 base::ProcessHandle process; local
97 base::LaunchProcess(new_cmdline, base::LaunchOptionsForTest(), &process);
98 ASSERT_NE(base::kNullProcessHandle, process);
102 process, TestTimeout
[all...]
/external/chromium_org/base/process/
H A Dkill_mac.cc5 #include "base/process/kill.h"
23 // Reap |child| process. This call blocks until completion.
35 // observe when the process exits. kevent can monitor a kqueue with a
37 // time. Once the kqueue indicates the process has exited, waitpid will reap
40 // process will be mercilessly killed and reaped.
42 // A child process passed to this function may be in one of several states:
44 // terminated and already reaped. Normally, a process will at least have been
46 // If a process is terminating and unreaped, there may be a window between the
49 // detected when kqueue indicates that the process is not running and a
50 // non-blocking waitpid fails to reap the process bu
168 EnsureProcessTerminated(ProcessHandle process) argument
[all...]
H A Dprocess_handle_posix.cc5 #include "base/process/process_handle.h"
20 // On Posix platforms, process handles are the same as PIDs, so we
27 // On POSIX permissions are checked for each operation on process,
35 // On POSIX permissions are checked for each operation on process,
40 void CloseProcessHandle(ProcessHandle process) { argument
45 ProcessId GetProcId(ProcessHandle process) { argument
46 return process;
H A Dprocess_handle_win.cc5 #include "base/process/process_handle.h"
66 void CloseProcessHandle(ProcessHandle process) { argument
67 CloseHandle(process);
70 ProcessId GetProcId(ProcessHandle process) { argument
71 // This returns 0 if we have insufficient rights to query the process handle.
72 return GetProcessId(process);
75 bool GetProcessIntegrityLevel(ProcessHandle process, IntegrityLevel *level) { argument
83 if (!OpenProcessToken(process, TOKEN_QUERY | TOKEN_QUERY_SOURCE,
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Denvironment_data_collection.cc16 // Populates |process| with platform-specific data related to the chrome browser
17 // process.
19 ClientIncidentReport_EnvironmentData_Process* process);
41 // Populates |process| with data related to the chrome browser process.
42 void CollectProcessData(ClientIncidentReport_EnvironmentData_Process* process) { argument
53 process->set_version(version);
56 process->set_chrome_update_channel(
59 CollectPlatformProcessData(process);
88 ClientIncidentReport_EnvironmentData_Process* process) {
87 CollectPlatformProcessData( ClientIncidentReport_EnvironmentData_Process* process) argument
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dapp_custom_bindings.js15 var process = requireNative('process'); variable
16 var extensionId = process.GetExtensionId();
/external/chromium_org/chrome/test/base/
H A Dchrome_process_util.h11 #include "base/process/process_handle.h"
12 #include "base/process/process_metrics.h"
17 // based on |browser_pid|, the PID of the main browser process.
23 // A wrapper class for tests to use in fetching process metrics.
32 base::ProcessHandle process) {
33 return new ChromeTestProcessMetrics(process);
57 explicit ChromeTestProcessMetrics(base::ProcessHandle process);
68 // information for another process requires privileges that a normal executable
31 CreateProcessMetrics( base::ProcessHandle process) argument
/external/chromium_org/chrome/tools/
H A Dinconsistent-eol.py105 def process(options, args): function
139 return process(options, args)
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_state_impl_win.cc39 HANDLE process = GetCurrentProcess(); local
42 if (!EnumProcessModules(process, modules, 0, &bytes_required))
48 if (!EnumProcessModules(process, modules, bytes_required, &ignore))
/external/chromium_org/content/public/common/
H A Dsandboxed_process_launcher_delegate.h9 #include "base/process/process.h"
36 // Override to return true if the process should be launched as an elevated
37 // process (which implies no sandbox).
40 // By default, the process is launched sandboxed. Override this method to
41 // return false if the process should be launched without a sandbox
52 // Called right before spawning the process.
56 // Called right after the process is launched, but before its thread is run.
57 virtual void PostSpawnTarget(base::ProcessHandle process) {} argument
63 // Override this if the process need
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Druntime_custom_bindings.js12 var process = requireNative('process'); variable
17 var contextType = process.GetContextType();
/external/chromium_org/sandbox/linux/suid/
H A Dprocess_util_linux.c32 bool AdjustOOMScore(pid_t process, int score) { argument
38 snprintf(oom_adj, sizeof(oom_adj), "/proc/%" PRIdMAX, (intmax_t)process);
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dprocesses_and_threads.cc30 HANDLE process = ::OpenProcess(PROCESS_VM_READ, local
33 if (NULL == process) {
34 fprintf(output, "[BLOCKED] Found process %S:%ld but cannot open it. "
40 fprintf(output, "[GRANTED] Found process %S:%ld and open succeeded.\r\n",
42 ::CloseHandle(process);
/external/chromium_org/sandbox/win/wow_helper/
H A Dtarget_code.cc11 PatchInfo *patch_info, HANDLE process, PVOID *base, ULONG_PTR zero_bits,
14 NTSTATUS ret = patch_info->orig_MapViewOfSection(patch_info->section, process,
29 // Marks the end of the code to copy to the target process.
10 TargetNtMapViewOfSection( PatchInfo *patch_info, 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
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementMicrotaskImportStep.cpp80 CustomElementMicrotaskStep::Result CustomElementMicrotaskImportStep::process() function in class:blink::CustomElementMicrotaskImportStep
H A DCustomElementMicrotaskResolutionStep.cpp55 CustomElementMicrotaskStep::Result CustomElementMicrotaskResolutionStep::process() function in class:blink::CustomElementMicrotaskResolutionStep
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DChannelSplitterNode.cpp58 void ChannelSplitterNode::process(size_t framesToProcess) function in class:blink::ChannelSplitterNode
H A DGainNode.cpp52 void GainNode::process(size_t framesToProcess) function in class:blink::GainNode
H A DMediaStreamAudioDestinationNode.cpp78 void MediaStreamAudioDestinationNode::process(size_t numberOfFrames) function in class:blink::MediaStreamAudioDestinationNode
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DDirectConvolver.cpp59 void DirectConvolver::process(AudioFloatArray* convolutionKernel, const float* sourceP, float* destP, size_t framesToProcess) function in class:blink::DirectConvolver
H A DZeroPole.cpp39 void ZeroPole::process(const float *source, float *destination, unsigned framesToProcess) function in class:blink::ZeroPole
/external/chromium_org/v8/tools/
H A Drun-valgrind.py48 process = subprocess.Popen(command, stderr=subprocess.PIPE) variable
49 code = process.wait();
50 errors = process.stderr.readlines();
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DMoveParamCombiner.java35 /** method to process */
41 * @param ssaMethod method to process
43 public static void process(SsaMethod ssaMethod) { method in class:MoveParamCombiner
H A DPhiTypeResolver.java52 * @param ssaMeth method to process
54 public static void process (SsaMethod ssaMeth) { method in class:PhiTypeResolver

Completed in 6406 milliseconds

1234567891011>>