/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deProcess.cpp | 31 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 [all...] |
H A D | deProcess.hpp | 41 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/ |
H A D | DynamicLibrary.cpp | 32 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, Symbo in Lookup() [all...] |
H A D | Process.cpp | 1 //===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===// 9 // This file implements the operating system Process concept. 13 #include "llvm/Support/Process.h" 31 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() 87 // may disable core dumps by calling Process::PreventCoreFiles(). 90 bool Process::AreCoreFilesPrevented() { return coreFilesPrevented; } in AreCoreFilesPrevented() 93 void Process [all...] |
/third_party/skia/third_party/externals/angle2/util/ |
H A D | test_utils.h | 62 class Process : angle::NonCopyable class 77 virtual ~Process(); 99 ProcessHandle(Process *process); 105 Process *operator->() { return mProcess; } in operator ->() 106 const Process *operator->() const { return mProcess; } in operator ->() 113 Process *mProcess; 117 // arguments to the child process. Returns a Process handle which can be used to retrieve 122 // On success, returns a Process pointer with started() == true. 123 // On failure, returns a Process pointer with started() == false. 124 Process *LaunchProces [all...] |
H A D | test_utils.cpp | 61 Process::~Process() = default; 65 ProcessHandle::ProcessHandle(Process *process) : mProcess(process) {} in ProcessHandle()
|
/third_party/vk-gl-cts/execserver/ |
H A D | xsWin32TestProcess.hpp | 132 // incompatible with deFile. Thus separate Process implementation is used for now. 133 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;
|
H A D | xsWin32TestProcess.cpp | 390 // Process 392 Process::Process (void) in Process() function in xs::win32::Process 402 Process::~Process (void) in ~Process() 419 void Process::cleanupHandles (void) in cleanupHandles() 492 void Process::start (const char* commandLine, const char* workingDirectory) in start() 503 throw std::runtime_error("Process already running"); in start() 506 // Process finished, clean up old cruft. in start() 568 bool Process [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | context.py | 220 class Process(process.BaseProcess): class 224 return _default_context.get_context().Process._Popen(process_obj) 228 return _default_context.get_context().Process._after_fork() 231 Process = Process variable in DefaultContext 304 Process = ForkProcess variable in .ForkContext 308 Process = SpawnProcess variable in .SpawnContext 312 Process = ForkServerProcess variable in .ForkServerContext 345 Process = SpawnProcess variable in .SpawnContext
|
H A D | pool.py | 180 def Process(ctx, *args, **kwds): member in Pool 181 return ctx.Process(*args, **kwds) 228 args=(self._cache, self._taskqueue, self._ctx, self.Process, 306 return self._repopulate_pool_static(self._ctx, self.Process, 315 def _repopulate_pool_static(ctx, Process, processes, pool, inqueue, 322 w = Process(ctx, target=worker, 327 w.name = w.name.replace('Process', 'PoolWorker') 334 def _maintain_pool(ctx, Process, processes, pool, inqueue, outqueue, 340 Pool._repopulate_pool_static(ctx, Process, processes, pool, 507 def _handle_workers(cls, cache, taskqueue, ctx, Process, processe 925 def Process(ctx, *args, **kwds): global() member in ThreadPool 926 from .dummy import Process global() namespace [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-processor.h | 19 // Graph by calling NodeProcessor::Process on each Node. 23 // at the most recent Checkpoint, and passes this to the Process method. 36 // // Process methods for each Node type. The GraphProcessor switches over 38 // // to NodeProcessor::Process. It's then up to the NodeProcessor to provide 39 // // either distinct Process methods per Node type, or using templates or 41 // void Process(FooNode* node, const ProcessingState& state) {} 94 node_processor_.Process(phi, GetCurrentState()); in ProcessGraph() 123 node_processor_.Process(node->Cast<OPCODE>(), state); \ in ProcessNodeBase() 155 void Process(NodeBase* node, const ProcessingState& state) {} in Process() function in v8::internal::maglev::NodeMultiProcessor 165 void Process(Nod function in v8::internal::maglev::NodeMultiProcessor [all...] |
H A D | maglev-compiler.cc | 54 void Process(NodeBase* node, const ProcessingState& state) { in Process() function in v8::internal::maglev::NumberingProcessor 69 void Process(NodeT* node, const ProcessingState& state) { in Process() function in v8::internal::maglev::UseMarkingProcessor 81 void Process(Phi* node, const ProcessingState& state) { in Process() function in v8::internal::maglev::UseMarkingProcessor 89 void Process(JumpLoop* node, const ProcessingState& state) { in Process() function in v8::internal::maglev::UseMarkingProcessor 99 void Process(Jump* node, const ProcessingState& state) { in Process() function in v8::internal::maglev::UseMarkingProcessor
|
H A D | maglev-graph-printer.h | 34 void Process(Phi* phi, const ProcessingState& state); 35 void Process(Node* node, const ProcessingState& state); 36 void Process(ControlNode* node, const ProcessingState& state);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | raw_ostream.cpp | 26 #include "llvm/Support/Process.h" 520 if (ShouldClose && sys::Process::SafelyCloseFileDescriptor(FD)) in ~raw_fd_ostream() 593 if (sys::Process::SafelyCloseFileDescriptor(FD)) in close() 643 if (sys::Process::ColorNeedsFlush()) in changeColor() 646 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg) in changeColor() 647 : sys::Process::OutputColor(colors, bold, bg); in changeColor() 658 if (sys::Process::ColorNeedsFlush()) in resetColor() 660 const char *colorcode = sys::Process::ResetColor(); in resetColor() 671 if (sys::Process::ColorNeedsFlush()) in reverseColor() 673 const char *colorcode = sys::Process in reverseColor() [all...] |
H A D | Process.cpp | 1 //===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===// 10 // This file implements the operating system Process concept. 18 #include "llvm/Support/Process.h" 29 Optional<std::string> Process::FindInEnvPath(const std::string& EnvName, in FindInEnvPath() 34 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() 76 // This is set to true when Process::PreventCoreFiles() is called. 79 bool Process::AreCoreFilesPrevented() { in AreCoreFilesPrevented() 85 #include "Unix/Process.inc" 88 #include "Windows/Process [all...] |
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | pool.py | 7 from multiprocessing import Process, Queue namespace 27 global Process 29 del Process 35 from threading import Thread as Process namespace 40 Process.pid = property(lambda self: None) 175 p = Process(target=Worker, args=(fn,
|
/third_party/gn/src/base/ |
H A D | sha1.cc | 53 void Process(); 115 Process(); in Final() 126 Process(); in Update() 139 Process(); in Pad() 155 void SecureHashAlgorithm::Process() { in Process() function in base::SecureHashAlgorithm
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/ |
H A D | sha1.cc | 56 void Process(); 137 Process(); in Final() 150 Process(); in Update() 165 Process(); in Pad() 181 void SecureHashAlgorithm::Process() in Process() function in angle::base::SecureHashAlgorithm
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 11 #include "llvm/Support/Process.h" 51 assert((SlabSize % sys::Process::getPageSizeEstimate()) == 0 && in allocate() 76 if (!isPowerOf2_64((uint64_t)sys::Process::getPageSizeEstimate())) in allocate() 90 if (Seg.getAlignment() > sys::Process::getPageSizeEstimate()) in allocate() 95 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate()); in allocate() 114 sys::Process::getPageSizeEstimate()); in allocate()
|
/third_party/python/Lib/test/ |
H A D | _test_venv_multiprocessing.py | 18 fill_pool = multiprocessing.Process( 22 drain_pool = multiprocessing.Process( 33 test_pool = multiprocessing.Process(target=test_func)
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/ |
H A D | shell_unix.go | 75 cmd.Process.Signal(sig) 107 c.Process.Signal(syscall.SIGINT) 110 log.Printf("Process %v still has not exited, killing\n", c.Process.Pid) 111 syscall.Kill(-c.Process.Pid, syscall.SIGKILL)
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_jpeg_image.cpp | 92 void Process (uint32 /* threadIndex */, in Process() function in dng_jpeg_image_encode_task 277 void Process (uint32 /* threadIndex */, in Process() function in dng_jpeg_image_find_digest_task 304 printer.Process (fJPEGImage.fJPEGData [tileIndex]->Buffer (), in Process() 357 printer.Process (fJPEGTables->Buffer (), in FindDigest() 373 printer.Process (digests [k].data, in FindDigest()
|
H A D | dng_fingerprint.h | 170 void Process (const void *data, 176 void Process (const char *text) in Process() function in dng_md5_printer 179 Process (text, (uint32) strlen (text)); in Process() 376 Process (data, count2); in DoWrite()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/android/java/src/com/android/angle/test/ |
H A D | AngleNativeTest.java | 17 import android.os.Process; 52 mReporter.uncaughtException(Process.myPid(), ex); in uncaughtException() 61 mReporter.testRunStarted(Process.myPid()); in postCreate() 162 mReporter.testRunFinished(Process.myPid()); in runTests()
|
/third_party/nghttp2/src/ |
H A D | shrpx_exec.h | 32 struct Process { struct 43 int exec_read_command(Process &proc, char *const argv[]);
|