/aosp_15_r20/external/bazelbuild-rules_rust/test/process_wrapper/test_files/ |
H A D | stdout | 1 Child process to stdout : 0 2 Child process to stdout : 1 3 Child process to stdout : 2 4 Child process to stdout : 3 5 Child process to stdout : 4 6 Child process to stdout : 5 7 Child process to stdout : 6 8 Child process to stdout : 7 9 Child process to stdout : 8 10 Child process to stdout : 9 [all …]
|
/aosp_15_r20/external/cronet/base/process/ |
H A D | process_unittest.cc | 5 #include "base/process/process.h" 14 #include "base/process/kill.h" 32 #include "base/process/internal_linux.h" 59 // Fake port provider that returns the calling process's 74 std::string GetProcessCpuCgroup(const base::Process& process) { in GetProcessCpuCgroup() argument 77 base::FilePath(base::StringPrintf(kProcPath, process.Pid())), in GetProcessCpuCgroup() 99 bool AddProcessToCpuCgroup(const base::Process& process, in AddProcessToCpuCgroup() argument 103 return base::WriteFile(path, base::NumberToString(process.Pid())); in AddProcessToCpuCgroup() 115 Process process(SpawnChild("SimpleChildProcess")); in TEST_F() local 116 ASSERT_TRUE(process.IsValid()); in TEST_F() [all …]
|
H A D | process.h | 11 #include "base/process/process_handle.h" 22 #include <lib/zx/process.h> 30 #include "base/process/port_provider_mac.h" 36 // OneGroupPerRenderer feature places each foreground renderer process into 38 // of all threads in the process when deciding on the next thread to schedule. 42 // Set all threads of a background process as backgrounded, which changes the 44 // is unchanged, since background process is under the spell of the background 55 // Provides a move-only encapsulation of a process. 57 // This object is not tied to the lifetime of the underlying process: the 58 // process may be killed and this object may still around, and it will still [all …]
|
H A D | process_win.cc | 5 #include "base/process/process.h" 12 #include "base/process/kill.h" 30 // Sets Eco QoS (Quality of Service) level for background process which would 31 // select efficient CPU frequency and schedule the process to efficient cores 34 // efficiency of a process/thread. EcoQoS is introduced since Windows 11. 39 Process::Process(ProcessHandle handle) in Process() function in base::Process 44 Process::Process(Process&& other) in Process() function in base::Process 50 Process::~Process() { in ~Process() 53 Process& Process::operator=(Process&& other) { in operator =() 62 Process Process::Current() { in Current() [all …]
|
H A D | process_fuchsia.cc | 5 #include "base/process/process.h" 7 #include <lib/zx/process.h> 8 #include <zircon/process.h> 25 zx::process FindProcessInJobTree(const zx::job& job, ProcessId pid) { in FindProcessInJobTree() 26 zx::process process; in FindProcessInJobTree() local 27 zx_status_t status = job.get_child(pid, ZX_RIGHT_SAME_RIGHTS, &process); in FindProcessInJobTree() 30 return process; in FindProcessInJobTree() 44 return zx::process(); in FindProcessInJobTree() 62 process = FindProcessInJobTree(child_job, pid); in FindProcessInJobTree() 63 if (process) in FindProcessInJobTree() [all …]
|
/aosp_15_r20/external/deqp/framework/delibs/deutil/ |
H A D | deProcess.c | 21 * \brief Process abstraction. 67 printf("Process launch failed: %s\n", message); in die() 139 deProcess *process = (deProcess *)deCalloc(sizeof(deProcess)); in deProcess_create() local 140 if (!process) in deProcess_create() 143 process->state = PROCESSSTATE_NOT_STARTED; in deProcess_create() 145 return process; in deProcess_create() 148 static void deProcess_cleanupHandles(deProcess *process) in deProcess_cleanupHandles() argument 150 if (process->standardIn) in deProcess_cleanupHandles() 151 deFile_destroy(process->standardIn); in deProcess_cleanupHandles() 153 if (process->standardOut) in deProcess_cleanupHandles() [all …]
|
/aosp_15_r20/tools/test/connectivity/acts/framework/tests/libs/proc/ |
D | process_test.py | 19 from acts.libs.proc.process import Process 20 from acts.libs.proc.process import ProcessError 45 """Tests the acts.libs.proc.process.Process class.""" 48 self._Process__start_process = Process._Process__start_process 51 Process._Process__start_process = self._Process__start_process 55 return mock.patch('acts.libs.proc.process.%s' % imported_name, 64 process = Process('cmd').set_on_output_callback(callback) 65 process._on_output_callback() 75 process = Process('cmd').set_on_terminate_callback(callback) 76 process._on_terminate_callback() [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/data/translit/ |
H A D | root.txt | 15 resource:process(transliterator){"Latin_ASCII.txt"} 21 resource:process(transliterator){"Any_Accents.txt"} 33 resource:process(transliterator){"Any_Accents.txt"} 39 resource:process(transliterator){"Any_Publishing.txt"} 45 resource:process(transliterator){"Arab_Latn.txt"} 63 resource:process(transliterator){"Latn_Armn.txt"} 75 resource:process(transliterator){"Beng_Arab.txt"} 81 resource:process(transliterator){"Beng_Deva.txt"} 87 resource:process(transliterator){"Beng_Gujr.txt"} 93 resource:process(transliterator){"Beng_Guru.txt"} [all …]
|
/aosp_15_r20/external/icu/icu4c/source/data/translit/ |
H A D | root.txt | 15 resource:process(transliterator){"Latin_ASCII.txt"} 21 resource:process(transliterator){"Any_Accents.txt"} 33 resource:process(transliterator){"Any_Accents.txt"} 39 resource:process(transliterator){"Any_Publishing.txt"} 45 resource:process(transliterator){"Arab_Latn.txt"} 63 resource:process(transliterator){"Latn_Armn.txt"} 75 resource:process(transliterator){"Beng_Arab.txt"} 81 resource:process(transliterator){"Beng_Deva.txt"} 87 resource:process(transliterator){"Beng_Gujr.txt"} 93 resource:process(transliterator){"Beng_Guru.txt"} [all …]
|
/aosp_15_r20/external/libchrome/base/process/ |
H A D | process_unittest.cc | 5 #include "base/process/process.h" 10 #include "base/process/kill.h" 28 // Fake port provider that returns the calling process's 31 mach_port_t TaskForPid(base::ProcessHandle process) const override { in TaskForPid() 45 Process process(SpawnChild("SimpleChildProcess")); in TEST_F() local 46 ASSERT_TRUE(process.IsValid()); in TEST_F() 47 ASSERT_FALSE(process.is_current()); in TEST_F() 48 EXPECT_NE(process.Pid(), kNullProcessId); in TEST_F() 49 process.Close(); in TEST_F() 50 ASSERT_FALSE(process.IsValid()); in TEST_F() [all …]
|
H A D | process.h | 10 #include "base/process/process_handle.h" 19 #include <lib/zx/process.h> 24 #include "base/process/port_provider_mac.h" 33 // Provides a move-only encapsulation of a process. 35 // This object is not tied to the lifetime of the underlying process: the 36 // process may be killed and this object may still around, and it will still 39 // Windows: The underlying ProcessHandle will be valid after the process dies 40 // and can be used to gather some information about that process, but most 44 // the process dies, and it may be reused by the system, which means that it may 45 // end up pointing to the wrong process. [all …]
|
/aosp_15_r20/frameworks/base/tests/AmSlam/ |
H A D | AndroidManifest.xml | 38 android:process=":ping000"/> 41 android:process=":ping001"/> 44 android:process=":ping002"/> 47 android:process=":ping003"/> 50 android:process=":ping004"/> 53 android:process=":ping005"/> 56 android:process=":ping006"/> 59 android:process=":ping007"/> 62 android:process=":ping008"/> 65 android:process=":ping009"/> [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Target/ |
D | Process.h | 1 //===-- Process.h -----------------------------------------------*- C++ -*-===// 77 // Pass nullptr for "process" if the ProcessProperties are to be the global 79 ProcessProperties(lldb_private::Process *process); 114 Process *m_process; // Can be nullptr for global ProcessProperties 120 // Describes any information that is required to attach to a process. 195 // immediately continuing the process 206 // This class tracks the Modification state of the process. Things that can 335 /// \class Process Process.h "lldb/Target/Process.h" 336 /// A plug-in interface definition class for debugging a process. 337 class Process : public std::enable_shared_from_this<Process>, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Target/ |
D | Process.h | 1 //===-- Process.h -----------------------------------------------*- C++ -*-===// 76 // Pass nullptr for "process" if the ProcessProperties are to be the global 78 ProcessProperties(lldb_private::Process *process); 113 Process *m_process; // Can be nullptr for global ProcessProperties 119 // Describes any information that is required to attach to a process. 194 // immediately continuing the process 205 // This class tracks the Modification state of the process. Things that can 334 /// \class Process Process.h "lldb/Target/Process.h" 335 /// A plug-in interface definition class for debugging a process. 336 class Process : public std::enable_shared_from_this<Process>, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Target/ |
D | Process.h | 1 //===-- Process.h -----------------------------------------------*- C++ -*-===// 76 // Pass nullptr for "process" if the ProcessProperties are to be the global 78 ProcessProperties(lldb_private::Process *process); 113 Process *m_process; // Can be nullptr for global ProcessProperties 119 // Describes any information that is required to attach to a process. 194 // immediately continuing the process 205 // This class tracks the Modification state of the process. Things that can 334 /// \class Process Process.h "lldb/Target/Process.h" 335 /// A plug-in interface definition class for debugging a process. 336 class Process : public std::enable_shared_from_this<Process>, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Target/ |
D | Process.h | 1 //===-- Process.h -----------------------------------------------*- C++ -*-===// 75 // Pass nullptr for "process" if the ProcessProperties are to be the global 77 ProcessProperties(lldb_private::Process *process); 112 Process *m_process; // Can be nullptr for global ProcessProperties 118 // Describes any information that is required to attach to a process. 193 // immediately continuing the process 204 // This class tracks the Modification state of the process. Things that can 333 /// \class Process Process.h "lldb/Target/Process.h" 334 /// A plug-in interface definition class for debugging a process. 335 class Process : public std::enable_shared_from_this<Process>, [all …]
|
/aosp_15_r20/frameworks/proto_logging/stats/enums/app_shared/ |
H A D | app_enums.proto | 46 // The values here must not be modified. Any new process states can be appended to the end. 48 // Process state that is unknown to this proto file (i.e. is not mapped 51 // Not a real process state. 53 // Process is a persistent system process. 55 // Process is a persistent system process and is doing UI. 57 // Process is hosting the current top activities. Note that this covers 60 // Process is bound to a TOP app. 62 // Process is hosting a foreground service. 64 // Process is hosting a service bound by the system or another foreground app. 66 // Process is important to the user, and something they are aware of. [all …]
|
/aosp_15_r20/system/testing/gtest_extras/gtest_isolated/tests/ |
D | OptionsTest.cpp | 57 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() 64 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() 71 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() 78 ASSERT_TRUE(options.Process(cur_args, &child_args_)) << options.error(); in TEST_F() 98 ASSERT_TRUE(options.Process(cur_args, &child_args_)) << options.error(); in TEST_F() 106 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() 113 ASSERT_TRUE(options.Process(cur_args, &child_args_)) << options.error(); in TEST_F() 121 ASSERT_TRUE(options.Process(cur_args, &child_args_)) << options.error(); in TEST_F() 129 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() 136 ASSERT_FALSE(options.Process(cur_args, &child_args_)) << "Process did not fail properly."; in TEST_F() [all …]
|
/aosp_15_r20/hardware/google/aemu/base/include/aemu/base/process/ |
D | Process.h | 43 * Represents a process running within the operating system. 45 class Process { 47 virtual ~Process() = default; 50 * @return The process ID (PID) of the process, or -1 if invalid. 55 * @return The name of the process executable. Note that this information 57 * the process has been started. 62 * Retrieves the exit code of the process. This method will block until 63 * the process has finished or is detached. 65 * @return The process exit code. This can return INT_MIN in case of 71 * Forcibly terminates the process (similar to sending SIGKILL). [all …]
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/process/ |
D | process.h | 13 #include "base/process/process_handle.h" 22 #include <lib/zx/process.h> 27 #include "base/process/port_provider_mac.h" 36 // Provides a move-only encapsulation of a process. 38 // This object is not tied to the lifetime of the underlying process: the 39 // process may be killed and this object may still around, and it will still 42 // Windows: The underlying ProcessHandle will be valid after the process dies 43 // and can be used to gather some information about that process, but most 47 // the process dies, and it may be reused by the system, which means that it may 48 // end up pointing to the wrong process. [all …]
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/4/external/libchrome/base/process/ |
D | process.h | 13 #include "base/process/process_handle.h" 22 #include <lib/zx/process.h> 27 #include "base/process/port_provider_mac.h" 36 // Provides a move-only encapsulation of a process. 38 // This object is not tied to the lifetime of the underlying process: the 39 // process may be killed and this object may still around, and it will still 42 // Windows: The underlying ProcessHandle will be valid after the process dies 43 // and can be used to gather some information about that process, but most 47 // the process dies, and it may be reused by the system, which means that it may 48 // end up pointing to the wrong process. [all …]
|
/aosp_15_r20/external/perfetto/src/trace_processor/importers/memory_tracker/ |
H A D | graph_processor_unittest.cc | 29 using Process = GlobalNodeGraph::Process; typedef 56 Process* process) { in AssignTracingOverhead() argument 57 GraphProcessor::AssignTracingOverhead(allocator, global_graph, process); in AssignTracingOverhead() 163 Process* global_process = graph.shared_memory_graph(); in TEST_F() 167 Process* first = graph.CreateGraphForProcess(1); in TEST_F() 170 Process* second = graph.CreateGraphForProcess(2); in TEST_F() 182 Process* global_process = graph.shared_memory_graph(); in TEST_F() 187 Process* first = graph.CreateGraphForProcess(1); in TEST_F() 190 Process* second = graph.CreateGraphForProcess(2); in TEST_F() 193 Process* third = graph.CreateGraphForProcess(3); in TEST_F() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/os/ |
D | exec.go | 17 // ErrProcessDone indicates a [Process] has finished. 18 var ErrProcessDone = errors.New("os: process already finished") 23 // modePID means that Process operations such use the raw PID from the 27 // Process was created as a literal, leaving handle unset. 29 // This must be the zero value so Process literals get modePID. 32 // modeHandle means that Process operations use handle, which is 33 // initialized with an OS process handle. 47 // the process is done (has been successfully Wait'd on). 51 // because the process is released. 57 // Process stores the information about a process created by [StartProcess]. [all …]
|
/aosp_15_r20/prebuilts/sdk/current/androidx/m2repository/androidx/lifecycle/lifecycle-process/2.9.0-alpha08/ |
H A D | lifecycle-process-2.9.0-alpha08.module | 5 "module": "lifecycle-process", 33 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 41 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 49 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 57 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 65 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 73 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 81 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 89 "reason": "lifecycle-process is in atomic group androidx.lifecycle" 97 "reason": "lifecycle-process is in atomic group androidx.lifecycle" [all …]
|
/aosp_15_r20/cts/tests/tests/os/src/android/os/cts/ |
H A D | ProcessTest.java | 35 import android.os.Process; 57 * CTS for {@link Process}. 59 * We have more test in cts/tests/process/ too. 153 int myTid = Process.myTid(); in testMiscMethods() 155 int priority = Process.getThreadPriority(myTid); in testMiscMethods() 157 && priority <= Process.THREAD_PRIORITY_LOWEST); in testMiscMethods() 159 Process.setThreadPriority(Process.THREAD_PRIORITY_AUDIO); in testMiscMethods() 160 assertEquals(Process.THREAD_PRIORITY_AUDIO, Process.getThreadPriority(myTid)); in testMiscMethods() 162 Process.setThreadPriority(myTid, Process.THREAD_PRIORITY_LOWEST); in testMiscMethods() 163 assertEquals(Process.THREAD_PRIORITY_LOWEST, Process.getThreadPriority(myTid)); in testMiscMethods() [all …]
|