HomeSort by relevance Sort by last modified time
    Searched refs:process (Results 151 - 175 of 1522) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/common/extensions/api/
PRESUBMIT.py 12 process = input_api.subprocess.Popen(
17 (nommed, _) = process.communicate(input=contents)
29 process = input_api.subprocess.Popen(
34 (_, error) = process.communicate()
  /external/chromium_org/chrome_frame/
combine_libs.py 22 process = subprocess.Popen(args,
26 output = process.stdout.readlines()
27 process.wait()
28 retcode = process.returncode
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_common.py 60 process = subprocess.Popen(cmd, stderr=subprocess.PIPE, shell=True)
61 _, stderr = process.communicate()
62 if process.returncode != 0:
64 ' '.join(cmd), process.returncode, stderr))
  /external/chromium_org/sandbox/win/wow_helper/
target_code.h 26 // Interception of NtMapViewOfSection on the child process.
30 PatchInfo* patch_info, HANDLE process, PVOID* base, ULONG_PTR zero_bits,
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkImport.h 58 virtual void process() OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBasicProcessorNode.h 45 virtual void process(size_t framesToProcess);
BiquadDSPKernel.h 46 virtual void process(const float* source, float* dest, size_t framesToProcess);
GainNode.h 48 virtual void process(size_t framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDSPKernel.h 56 // Subclasses must override process() to do the processing and reset() to reset DSP state.
57 virtual void process(const float* source, float* destination, size_t framesToProcess) = 0;
AudioDSPKernelProcessor.h 63 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess);
AudioProcessor.h 60 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) = 0;
AudioResampler.h 48 // Given an AudioSourceProvider, process() resamples the source stream into destinationBus.
49 void process(AudioSourceProvider*, AudioBus* destinationBus, size_t framesToProcess);
ZeroPole.h 48 void process(const float *source, float *destination, unsigned framesToProcess);
  /external/emma/core/java12/com/vladium/emma/report/
IReportGenerator.java 29 void process (IMetaData mdata, ICoverageData cdata, SourcePathCache cache, IProperties parameters) method in interface:IReportGenerator
  /external/icu4c/layout/
KernTable.h 44 * Process the glyph positions.
46 void process(LEGlyphStorage& storage);
  /external/mtpd/
mtpd.h 58 /* Process the incoming packet and return the next timeout interval. */
59 int (*process)(); member in struct:protocol
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
NullFilter.java 40 public void process(FilterContext context) { method in class:NullFilter
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticInfos.h 47 bool process(DiagnosticEngine& pEngine) const;
  /frameworks/native/services/sensorservice/
LinearAccelerationSensor.h 39 virtual bool process(sensors_event_t* outEvent,
OrientationSensor.h 40 virtual bool process(sensors_event_t* outEvent,
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 53 // keep the process handle for wait/trywait operations, will
95 // process has exited
134 // Terminate the process
162 HANDLE process = OpenProcess(SYNCHRONIZE, FALSE, pid); local
163 if (NULL != process) {
164 DWORD ret = WaitForSingleObject(process, 0);
165 CloseHandle(process);
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_state_impl_win.cc 39 HANDLE process = GetCurrentProcess(); local
42 if (!EnumProcessModules(process, modules, 0, &bytes_required))
48 if (!EnumProcessModules(process, modules, bytes_required, &ignore))
  /external/chromium_org/content/browser/devtools/
worker_devtools_manager.h 49 WorkerProcessHost* process,
51 void WorkerDestroyed(WorkerProcessHost* process, int worker_route_id);
52 void WorkerContextStarted(WorkerProcessHost* process, int worker_route_id);
  /external/chromium_org/content/browser/zygote_host/
zygote_host_impl_linux.h 13 #include "base/process/kill.h"
33 // Tries to start a process of type indicated by process_type.
39 void EnsureProcessTerminated(pid_t process);
42 // the process. |exit_code| is set to the exit code of the child
43 // process. (|exit_code| may be NULL.)
44 // Unfortunately the Zygote can not accurately figure out if a process
46 // |known_dead| should be set to true when we already know that the process
49 // process will be SIGKILL-ed first (which should have no effect if it was
74 void ZygoteChildBorn(pid_t process);
77 void ZygoteChildDied(pid_t process);
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
test_server.py 11 """Class to start a local HTTP server as a child process."""
15 self.process = multiprocessing.Process(target=_HTTPServerProcess,
17 self.process.start()
26 """Send a message to the child HTTP server process and wait for it to
29 self.process.join()
49 This function assumes it is run as a child process using multiprocessing.
52 conn: A connection to the parent process. The child process sends

Completed in 3842 milliseconds

1 2 3 4 5 67 8 91011>>