Home
last modified time | relevance | path

Searched refs:Process (Results 1 – 25 of 1361) sorted by relevance

12345678910>>...55

/third_party/vk-gl-cts/framework/delibs/decpp/
DdeProcess.cpp31 Process::Process (void) in Process() function in de::Process
38 Process::~Process (void) in ~Process()
43 void Process::start (const char* commandLine, const char* workingDirectory) in start()
49 void Process::waitForFinish (void) in waitForFinish()
55 void Process::terminate (void) in terminate()
61 void Process::kill (void) in kill()
67 void Process::closeStdIn (void) in closeStdIn()
73 void Process::closeStdOut (void) in closeStdOut()
79 void Process::closeStdErr (void) in closeStdErr()
DdeProcess.hpp41 class Process class
44 Process (void);
45 ~Process (void);
65 Process (const Process& other);
66 Process& operator= (const Process& other);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDynamicLibrary.cpp32 void *Process; member in DynamicLibrary::HandleSet
39 HandleSet() : Process(nullptr) {} in HandleSet()
47 return Handle == Process || Find(Handle) != Handles.end(); in Contains()
64 if (Process) { in AddLibrary()
66 DLClose(Process); in AddLibrary()
67 if (Process == Handle) in AddLibrary()
71 Process = Handle; in AddLibrary()
95 if (!Process || (Order & SO_LoadedFirst)) { in Lookup()
99 if (Process) { in Lookup()
101 if (void *Ptr = DLSym(Process, Symbol)) in Lookup()
DProcess.cpp31 Optional<std::string> Process::FindInEnvPath(StringRef EnvName, in FindInEnvPath()
36 Optional<std::string> Process::FindInEnvPath(StringRef EnvName, in FindInEnvPath()
41 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath()
90 bool Process::AreCoreFilesPrevented() { return coreFilesPrevented; } in AreCoreFilesPrevented()
93 void Process::Exit(int RetCode) { in Exit()
/third_party/vk-gl-cts/execserver/
DxsWin32TestProcess.hpp133 class Process class
136 Process (void);
137 ~Process (void);
153 Process (const Process& other);
154 Process& operator= (const Process& other);
199 win32::Process* m_process;
/third_party/skia/third_party/externals/angle2/util/
Dtest_utils.h62 class Process : angle::NonCopyable
77 virtual ~Process();
99 ProcessHandle(Process *process);
105 Process *operator->() { return mProcess; }
106 const Process *operator->() const { return mProcess; }
113 Process *mProcess;
124 Process *LaunchProcess(const std::vector<const char *> &args, ProcessOutputCapture captureOutput);
/third_party/boost/libs/process/doc/
Dacknowledgements.qbk3Process draft was created in 2006. A lof of people have worked on various drafts since then. Espec…
5Process was not always satisfying. In 2011 Jeff Flinn proposed the executor and initializer concep…
7 … support the development of Boost.Process. It was this sponsorship which made it possible to creat…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DProcess.inc1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
10 // This file provides the Win32 specific implementation of the Process class.
65 unsigned Process::getPageSize() {
71 Process::GetMallocUsage()
84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
100 void Process::PreventCoreFiles() {
120 Optional<std::string> Process::GetEnv(StringRef Name) {
237 Process::GetArgumentVector(SmallVectorImpl<const char *> &Args,
271 std::error_code Process::FixupStandardFileDescriptors() {
275 std::error_code Process::SafelyCloseFileDescriptor(int FD) {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DProcess.inc1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
9 // This file provides the Win32 specific implementation of the Process class.
59 Expected<unsigned> Process::getPageSize() {
65 Process::GetMallocUsage()
78 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
94 void Process::PreventCoreFiles() {
114 Optional<std::string> Process::GetEnv(StringRef Name) {
262 std::error_code Process::FixupStandardFileDescriptors() {
266 std::error_code Process::SafelyCloseFileDescriptor(int FD) {
272 bool Process::StandardInIsUserInput() {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DProcess.inc1 //===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===//
10 // This file provides the generic Unix implementation of the Process class.
77 unsigned Process::getPageSize() {
88 size_t Process::GetMallocUsage() {
123 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
136 void Process::PreventCoreFiles() {
175 Optional<std::string> Process::GetEnv(StringRef Name) {
184 Process::GetArgumentVector(SmallVectorImpl<const char *> &ArgsOut,
211 std::error_code Process::FixupStandardFileDescriptors() {
248 std::error_code Process::SafelyCloseFileDescriptor(int FD) {
[all …]
/third_party/grpc/src/ruby/end2end/
Dchannel_state_driver.rb30 Process.kill('SIGTERM', client_pid)
33 Timeout.timeout(10) { Process.wait(client_pid) }
36 Process.kill('SIGKILL', client_pid)
37 Process.wait(client_pid)
Dchannel_state_test.rb30 Process.kill('SIGTERM', client_pid)
33 Timeout.timeout(10) { Process.wait(client_pid) }
36 Process.kill('SIGKILL', client_pid)
37 Process.wait(client_pid)
Dsig_int_during_channel_watch_driver.rb32 Process.kill('SIGINT', client_pid)
36 Process.wait(client_pid)
40 Process.kill('SIGKILL', client_pid)
41 Process.wait(client_pid)
Dsig_int_during_channel_watch_test.rb36 Process.kill('SIGINT', client_pid)
39 Process.wait(client_pid)
43 Process.kill('SIGKILL', client_pid)
44 Process.wait(client_pid)
Dgrpc_class_init_test.rb34 client_pid = Process.spawn(RbConfig.ruby,
40 Process.wait(client_pid)
44 Process.kill('SIGKILL', client_pid)
45 Process.wait(client_pid)
Dgrpc_class_init_driver.rb34 client_pid = Process.spawn(RbConfig.ruby,
40 Process.wait(client_pid)
44 Process.kill('SIGKILL', client_pid)
45 Process.wait(client_pid)
Dkilled_client_thread_test.rb64 Process.kill('SIGTERM', client_pid)
69 Process.wait(client_pid)
73 Process.kill('SIGKILL', client_pid)
74 Process.wait(client_pid)
Dkilled_client_thread_driver.rb64 Process.kill('SIGTERM', client_pid)
69 Process.wait(client_pid)
73 Process.kill('SIGKILL', client_pid)
74 Process.wait(client_pid)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DProcess.inc1 //===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===//
9 // This file provides the generic Unix implementation of the Process class.
71 Expected<unsigned> Process::getPageSize() {
85 size_t Process::GetMallocUsage() {
118 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
131 void Process::PreventCoreFiles() {
170 Optional<std::string> Process::GetEnv(StringRef Name) {
197 std::error_code Process::FixupStandardFileDescriptors() {
231 std::error_code Process::SafelyCloseFileDescriptor(int FD) {
266 bool Process::StandardInIsUserInput() {
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/mindir/
Dsparse_softmax_cross_entropy_with_logits_unify_mindir.h33 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
42 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
51 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
60 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
69 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
Doptimizer_unify_output.h29 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
37 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
46 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
54 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
Ddropout_unify_mindir.h32 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
43 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
51 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
60 …const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const overrid…
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dchannel_test.dart21 Process createMockProcess({ int exitCode = 0, String stdout = '', String stderr = '' }) {
28 final Process process = MockProcess();
64 final Process process = createMockProcess(
75 )).thenAnswer((_) => Future<Process>.value(process));
106 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
111 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
116 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
145 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
150 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
155 )).thenAnswer((_) => Future<Process>.value(createMockProcess()));
[all …]
/third_party/python/Doc/library/
Dasyncio-subprocess.rst70 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
73 Return a :class:`~asyncio.subprocess.Process` instance.
92 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
95 Return a :class:`~asyncio.subprocess.Process` instance.
139 :attr:`Process.stdin <asyncio.subprocess.Process.stdin>` attribute
143 :attr:`Process.stdout <asyncio.subprocess.Process.stdout>` and
144 :attr:`Process.stderr <asyncio.subprocess.Process.stderr>`
163 functions return instances of the *Process* class. *Process* is a high-level
167 .. class:: asyncio.subprocess.Process
177 * unlike Popen, Process instances do not have an equivalent to
[all …]
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DTimeStats.cs48 lastUserTime = Process.GetCurrentProcess().UserProcessorTime; in TimeStats()
49 lastPrivilegedTime = Process.GetCurrentProcess().PrivilegedProcessorTime; in TimeStats()
57 var userTime = Process.GetCurrentProcess().UserProcessorTime; in GetSnapshot()
58 var privilegedTime = Process.GetCurrentProcess().PrivilegedProcessorTime; in GetSnapshot()

12345678910>>...55