/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | DynamicLibrary.cpp | 32 void *Process; member in DynamicLibrary::HandleSet 39 HandleSet() : Process(nullptr) {} in HandleSet() 45 return Handle == Process || Find(Handle) != Handles.end(); in Contains() 62 if (Process) { in AddLibrary() 64 DLClose(Process); in AddLibrary() 65 if (Process == Handle) in AddLibrary() 69 Process = Handle; in AddLibrary() 93 if (!Process || (Order & SO_LoadedFirst)) { in Lookup() 97 if (Process) { in Lookup() 99 if (void *Ptr = DLSym(Process, Symbol)) in Lookup()
|
H A D | Process.cpp | 34 Process::FindInEnvPath(StringRef EnvName, StringRef FileName, char Separator) { in FindInEnvPath() 38 Optional<std::string> Process::FindInEnvPath(StringRef EnvName, in FindInEnvPath() 44 Optional<std::string> OptPath = Process::GetEnv(EnvName); in FindInEnvPath() 93 bool Process::AreCoreFilesPrevented() { return coreFilesPrevented; } in AreCoreFilesPrevented() 96 void Process::Exit(int RetCode, bool NoCleanup) { in Exit()
|
H A D | raw_ostream.cpp | 513 if (sys::Process::ColorNeedsFlush() && !is_displayed()) in prepare_colors() 516 if (sys::Process::ColorNeedsFlush()) in prepare_colors() 528 ? sys::Process::OutputBold(bg) in changeColor() 529 : sys::Process::OutputColor(static_cast<char>(colors), bold, bg); in changeColor() 539 if (const char *colorcode = sys::Process::ResetColor()) in resetColor() 548 if (const char *colorcode = sys::Process::OutputReverse()) in reverseColor() 664 if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD)) in ~raw_fd_ostream() 796 if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD)) in close() 854 return sys::Process::FileDescriptorIsDisplayed(FD); in is_displayed() 859 HasColors = sys::Process::FileDescriptorHasColors(FD); in has_colors()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
H A D | Process.inc | 1 //===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===// 9 // This file provides the generic Unix implementation of the Process class. 69 Process::Pid Process::getProcessId() { 71 "Process::Pid should be big enough to store pid_t"); 77 Expected<unsigned> Process::getPageSize() { 91 size_t Process::GetMallocUsage() { 124 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time, 137 void Process::PreventCoreFiles() { 176 Optional<std::string> Process::GetEnv(StringRef Name) { 203 std::error_code Process::FixupStandardFileDescriptors() { [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
H A D | Process.inc | 1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===// 9 // This file provides the Win32 specific implementation of the Process class. 46 Process::Pid Process::getProcessId() { 48 "Process::Pid should be big enough to store DWORD"); 65 Expected<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) { 269 std::error_code Process::FixupStandardFileDescriptors() { [all …]
|
H A D | DynamicLibrary.inc | 29 // 'Process' should not be released on Windows. 30 assert((!Process || Process==this) && "Bad Handle"); 36 // Create the instance and return it to be the *Process* handle 66 HS->Process = nullptr; // Just drop the *Process* handle. 94 // Could have done a dlclose on the *Process* handle 95 if (!HS->Process)
|
H A D | Program.inc | 35 ProcessInfo::ProcessInfo() : Pid(0), Process(0), ReturnCode(0) {} 308 PI.Process = pi.hProcess; 413 assert((PI.Process && PI.Process != INVALID_HANDLE_VALUE) && 424 DWORD WaitStatus = WaitForSingleObject(PI.Process, milliSecondsToWait); 427 if (!TerminateProcess(PI.Process, 1)) { 433 CloseHandle(PI.Process); 436 WaitForSingleObject(PI.Process, INFINITE); 437 CloseHandle(PI.Process); 448 if (GetProcessTimes(PI.Process, &CreationTime, &ExitTime, &KernelTime, 450 GetProcessMemoryInfo(PI.Process, &MemInfo, sizeof(MemInfo))) { [all …]
|
/netbsd-src/share/doc/psd/20.ipctut/ |
H A D | fig8.xfig | 4 4 2 0 11 0 0 0 0.000 1 7 38 304 274 Process 1 5 4 2 0 11 0 0 0 0.000 1 7 38 529 274 Process 2 84 4 2 0 11 0 0 0 0.000 1 7 38 524 24 Process 2 85 4 2 0 11 0 0 0 0.000 1 7 38 299 24 Process 1
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 52 assert((SlabSize % sys::Process::getPageSizeEstimate()) == 0 && in allocate() 77 if (!isPowerOf2_64((uint64_t)sys::Process::getPageSizeEstimate())) in allocate() 91 if (Seg.getAlignment() > sys::Process::getPageSizeEstimate()) in allocate() 96 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate()); in allocate() 115 sys::Process::getPageSizeEstimate()); in allocate()
|
/netbsd-src/external/gpl3/gcc.old/dist/ |
H A D | COPYING.RUNTIME | 25 Library for execution after a Compilation Process, or makes use of an 45 The "Compilation Process" transforms code entirely represented in 49 part of the Compilation Process, since the Compilation Process can be 53 A Compilation Process is "Eligible" if it is done using GCC, alone or 57 Eligible Compilation Process.
|
/netbsd-src/external/gpl3/gcc/dist/ |
H A D | COPYING.RUNTIME | 25 Library for execution after a Compilation Process, or makes use of an 45 The "Compilation Process" transforms code entirely represented in 49 part of the Compilation Process, since the Compilation Process can be 53 A Compilation Process is "Eligible" if it is done using GCC, alone or 57 Eligible Compilation Process.
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | DebuggingJITedCode.rst | 112 Process 21340 stopped 127 Process 21340 resuming 128 Process 21340 stopped 150 Process 21340 stopped 165 Process 21340 stopped 180 Process 21340 resuming 181 Process 21340 exited with status = 42 (0x0000002a)
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
H A D | llvm-cov.cpp | 87 if (sys::Process::StandardErrHasColors()) in main() 90 if (sys::Process::StandardErrHasColors()) in main()
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
H A D | collect.h | 39 struct Process struct 41 Process (pid_t _pid) : pid (_pid) { } in Process() function
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
H A D | collect.h | 39 struct Process struct 41 Process (pid_t _pid) : pid (_pid) { } in Process() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/ |
H A D | PerfJITEventListener.cpp | 83 sys::Process::Pid Pid; 180 : Pid(sys::Process::getProcessId()) { in PerfJITEventListener() 345 MarkerAddr = ::mmap(NULL, sys::Process::getPageSizeEstimate(), in OpenMarker() 359 munmap(MarkerAddr, sys::Process::getPageSizeEstimate()); in CloseMarker()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
H A D | InclusionRewriter.cpp | 60 void Process(FileID FileId, SrcMgr::CharacteristicKind FileType, 373 void InclusionRewriter::Process(FileID FileId, in Process() function in InclusionRewriter 436 Process(Inc->Id, Inc->FileType, Inc->DirLookup); in Process() 562 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User, nullptr); in RewriteIncludesInInput() 563 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User, nullptr); in RewriteIncludesInInput()
|
/netbsd-src/external/bsd/ntp/dist/scripts/ |
H A D | summary-opts.def | 30 Process all files with the date suffix less or equal to value of this 72 Process all files with the date suffix more or equal to value of
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
H A D | buffer_queue_test.cc | 180 auto Process = [&] { in TEST() local 212 std::thread T0(Process), T1(Process); in TEST()
|
/netbsd-src/external/apache2/llvm/lib/libLLVMSupport/ |
H A D | Makefile | 138 Process.cpp \ 154 Process.inc \
|
/netbsd-src/external/apache2/llvm/dist/clang/docs/ |
H A D | ClangFormattedStatus.rst | 2837 * - lldb/source/Plugins/Process/elf-core 2842 * - lldb/source/Plugins/Process/FreeBSD 2847 * - lldb/source/Plugins/Process/FreeBSDRemote 2852 * - lldb/source/Plugins/Process/gdb-remote 2857 * - lldb/source/Plugins/Process/Linux 2862 * - lldb/source/Plugins/Process/mach-core 2867 * - lldb/source/Plugins/Process/MacOSX-Kernel 2872 * - lldb/source/Plugins/Process/minidump 2877 * - lldb/source/Plugins/Process/NetBSD 2882 * - lldb/source/Plugins/Process/POSIX [all …]
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Proc/ |
H A D | Readme | 1 Proc - Process based analysis
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp/ |
H A D | hello.cs | 19 Process.GetCurrentProcess().Id)); in Main()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | OrcRemoteTargetServer.h | 282 NumStubsRequired, sys::Process::getPageSizeEstimate()); in handleEmitIndirectStubs() 318 sys::Process::getPageSizeEstimate(), nullptr, in handleEmitTrampolineBlock() 324 (sys::Process::getPageSizeEstimate() - TargetT::PointerSize) / in handleEmitTrampolineBlock() 353 uint32_t PageSize = sys::Process::getPageSizeEstimate(); in handleGetRemoteInfo()
|
/netbsd-src/external/bsd/nsd/dist/dnstap/ |
H A D | dnstap_config.h.in | 5 * Process this file (dnstap_config.h.in) with AC_CONFIG_FILES to generate
|