/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | buildcfg.py | 4 import bb.process 19 rev, _ = bb.process.run('git rev-parse --abbrev-ref HEAD', cwd=path) 20 except (bb.process.ExecutionError, bb.process.NotFoundError): 26 rev, _ = bb.process.run('git rev-parse HEAD', cwd=path) 27 except (bb.process.ExecutionError, bb.process.NotFoundError): 33 toplevel, _ = bb.process.run('git rev-parse --show-toplevel', cwd=path) 34 except (bb.process.ExecutionError, bb.process.NotFoundError): 40 remotes_list, _ = bb.process.run('git remote', cwd=path) 42 except (bb.process.ExecutionError, bb.process.NotFoundError): 48 uri, _ = bb.process.run('git remote get-url {remote}'.format(remote=remote), cwd=path) [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/rust/files/ |
H A D | oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch | 4 Subject: [PATCH] oeqa/selftest: Increase timeout in process-sigpipe rust test 6 This patch increases the timeout for the process-sigpipe rust test, which 16 tests/ui/process/process-sigpipe.rs | 2 +- 19 diff --git a/tests/ui/process/process-sigpipe.rs b/tests/ui/process/process-sigpipe.rs 21 --- a/tests/ui/process/process-sigpipe.rs 22 +++ b/tests/ui/process/process-sigpipe.rs 29 process::exit(1); 31 let output = process::Command::new("sh")
|
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/ |
H A D | 0016-Allow-multiple-wayland-compositor-state-data-per-pro.patch | 4 Subject: [PATCH] Allow multiple wayland compositor state data per process 9 created and used per process. This scenario is common for 10 applications integrating externl process UI elements 27 @@ -147,7 +147,7 @@ bool client_process_state_init(CLIENT_PROCESS_STATE_T *process) 29 if (!process->inited) { 31 - process->wl_global = NULL; 32 + process->wlStateMap = NULL; 35 if (!khrn_pointer_map_init(&process->contexts, 64)) 54 per-process state 72 CLIENT_PROCESS_STATE_T *process; [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | meson.build | 2 decodetree.process('a64.decode', extra_args: ['--static-decode=disas_a64']), 3 decodetree.process('sve.decode', extra_args: '--decode=disas_sve'), 4 decodetree.process('sme.decode', extra_args: '--decode=disas_sme'), 5 decodetree.process('sme-fa64.decode', extra_args: '--static-decode=disas_sme_fa64'), 9 decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'), 10 decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'), 11 decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'), 12 decodetree.process('vfp.decode', extra_args: '--decode=disas_vfp'), 13 decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'), 14 decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'), [all …]
|
/openbmc/qemu/docs/system/ |
H A D | multi-process.rst | 1 .. _Multi-process QEMU: 3 Multi-process QEMU 6 This document describes how to configure and use multi-process qemu. 7 For the design document refer to docs/devel/multi-process.rst. 12 multi-process is enabled by default for targets that enable KVM 18 Multi-process QEMU requires an orchestrator to launch. 26 - It launches the remote process and passes one of the 32 * Remote Process: 34 - QEMU can enter remote process mode by using the "remote" machine 43 - Example command-line for the remote process is as follows: [all …]
|
/openbmc/openbmc-test-automation/lib/ |
H A D | gen_arg.py | 84 # Process stock_list. 312 def match_process_by_pgm_name(process, pgm_name): argument 314 Return True or False to indicate whether the process matches the program name. 317 … process A psutil process object such as the one returned by psutil.Process(). 318 … pgm_name The name of a program to look for in the cmdline field of the process 322 … # This function will examine elements 0 and 1 of the cmdline field of the process object. The 325 # Example 1: Suppose a process was started like this: 331 # match_process_by_pgm_name(process, "python_pgm_template") 333 # The process object might contain the following for its cmdline field: 344 # Example 2: Suppose a process was started like this: [all …]
|
H A D | jobs_processing.py | 11 from multiprocessing import Manager, Process 24 return_dict A dictionary consisting of pid/process status for the 38 Execute a robot keyword via multiprocessing process. 49 # Append user-defined times process needed to execute. 51 task = Process( 57 # Wait for process to complete. 73 return_dict A dictionary consisting of pid/process status for the 88 Execute multiple robot keywords with arguments via multiprocessing process. 98 # Append each keyword with its arguments in a process to execute. 102 task = Process( [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/ |
H A D | influxdb | 8 # Short-Description: Start the InfluxDB process 20 # Process name ( For display ) 96 # Check that the PID file exists, and check the actual status of process 100 # Process is already up 101 log_success_msg "$NAME process is already running" 120 # Launch process 138 # Sleep to verify process is still up 146 log_success_msg "$NAME process was started" 150 log_failure_msg "$NAME process was unable to start" 160 # Process still up, send SIGTERM and remove PIDFILE [all …]
|
/openbmc/qemu/docs/devel/ |
H A D | multi-process.rst | 1 Multi-process QEMU 6 This is the design document for multi-process QEMU. It does not 40 A multi-process QEMU 43 A multi-process QEMU involves separating QEMU services into separate 51 A QEMU control process would remain, but in multi-process mode, will 55 A first step in creating a multi-process QEMU is to separate IO services 57 emulation. i.e., the control process would also be the CPU emulation 58 process. In a later phase, CPU emulation could be separated from the 59 control process. 71 guest CPU instructions. The devices emulated in the separate process are [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/ |
H A D | ssh.py | 216 nonlocal process 220 process = subprocess.Popen(command, **options) 226 os.set_blocking(process.stdout.fileno(), False) 229 if select.select([process.stdout], [], [], 5)[0] != []: 232 data = process.stdout.read() 252 …logger.debug('Waiting for process output at time: %s with datasize: %s' % (time.time(), len(output… 255 process.stdout.close() 257 # process hasn't returned yet 259 process.terminate() 262 process.kill() [all …]
|
/openbmc/qemu/target/mips/tcg/ |
H A D | meson.build | 2 decodetree.process('rel6.decode', extra_args: ['--decode=decode_isa_rel6']), 3 decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'), 4 decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'), 5 decodetree.process('vr54xx.decode', extra_args: '--decode=decode_ext_vr54xx'), 6 decodetree.process('octeon.decode', extra_args: '--decode=decode_ext_octeon'), 7 decodetree.process('lcsr.decode', extra_args: '--decode=decode_ase_lcsr'), 8 decodetree.process('godson2.decode', extra_args: ['--static-decode=decode_godson2']), 9 decodetree.process('loong-ext.decode', extra_args: ['--static-decode=decode_loong_ext']),
|
/openbmc/u-boot/test/py/ |
H A D | u_boot_spawn.py | 4 # Logic to spawn a sub-process and interact with its stdio. 18 """Represents the stdio of a freshly created sub-process. Commands may be 19 sent to the process, and responses waited for. 26 """Spawn (fork/exec) the sub-process. 31 cwd: the directory to run the process in, or None for no change. 75 """Send unix signal "sig" to the child process. 87 """Determine whether the child process is still running. 93 Boolean indicating whether process is alive. 107 """Send data to the sub-process's stdin. 110 data: The data to send to the process. [all …]
|
H A D | u_boot_console_sandbox.py | 5 # Logic to interact with the sandbox port of U-Boot, running as a sub-process. 13 process.""" 32 A new sandbox process is created, so that U-Boot begins running from 75 """Send a specific Unix signal to the sandbox process. 78 sig: The Unix signal to send to the process. 88 """Determine whether the sandbox process has exited. 90 If required, this function waits a reasonable time for the process to 97 Boolean indicating whether the process has exited.
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | process_tree.py | 17 """ProcessTree encapsulates a process tree. The tree is built from log files 18 retrieved during the boot process. When building the process tree, it is 24 * idle processes that keep running during the last process sample 30 process subtrees) have their subtrees merged together, 33 * process runs (unary trees with processes sharing the command line) 75 …writer.status("pruned %i process, %i exploders, %i threads, and %i runs" % (p_processes, p_explode… 86 """Build the process tree from the list of top samples.""" 95 """Sort process tree.""" 101 "Counts the number of nodes in the specified process tree.""" 108 """Returns the start time of the process subtree. This is the start [all …]
|
H A D | parsing.py | 87 # process 93 # Annotate other times as the first start point of given process lists 107 self.headers.get("profile.process"), 113 self.headers.get("profile.process"), 121 def add_process(self, process, start, end): argument 122 self.processes[process] = [start, end] 125 if process not in self.start[start]: 126 self.start[start].append(process) 129 if process not in self.end[end]: 130 self.end[end].append(process) [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 153.out | 15 Is another process using the image [TEST_DIR/t.qcow2]? 19 Is another process using the image [TEST_DIR/t.qcow2]? 27 Is another process using the image [TEST_DIR/t.qcow2]? 31 Is another process using the image [TEST_DIR/t.qcow2]? 35 Is another process using the image [TEST_DIR/t.qcow2]? 40 Is another process using the image [TEST_DIR/t.qcow2]? 45 Is another process using the image [TEST_DIR/t.qcow2]? 49 Is another process using the image [TEST_DIR/t.qcow2]? 53 Is another process using the image [TEST_DIR/t.qcow2]? 57 Is another process using the image [TEST_DIR/t.qcow2]? [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | daemonize.py | 23 Detach a process from the controlling terminal and run it in the 32 # Fork a child process so the parent can exit. This returns control to 34 # be a process group leader, since the child receives a new process ID 35 # and inherits the parent's process group ID. This step is required 42 # To become the session leader of this new session and the process group 43 # leader of the new process group, we call os.setsid(). The process is 48 # causes the second child process to be orphaned, making the init 49 # process responsible for its cleanup. And, since the first child is
|
/openbmc/sdbusplus/tools/sdbusplus/ |
H A D | main.py | 29 parser = argparse.ArgumentParser(description="Process sdbus++ YAML files.") 37 help="Location of files to process.", 63 "process", 64 metavar="PROCESS", 67 help="Process to apply.", 73 help="Item to process.", 83 function = getattr(instance, valid_processes[args.process])
|
/openbmc/pldm/tools/visualize-pdr/ |
H A D | pldm_visualise_pdrs.py | 20 class Process: class 21 """Interface definition for interacting with a process created by an 25 """Construct a Process object. Process object clients can read the 26 process stdout and stderr with os.read(), and can wait for the 27 process to exit. 38 """Wait for the process to finish, and return its exit status.""" 54 class ParamikoProcess(Process): 55 """Concrete implementation of the Process interface that adapts Paramiko 56 interfaces to the Process interface requirements.""" 95 class SubprocessProcess(Process): [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | sshcontrol.py | 32 self.process = None 51 self.process = subprocess.Popen(command, **self.options) 57 if select.select([self.process.stdout], [], [], 5)[0] != []: 58 data = os.read(self.process.stdout.fileno(), 1024) 60 self.process.poll() 61 if self.process.returncode is None: 62 self.process.stdout.close() 72 # process hasn't returned yet 74 self.process.terminate() 77 self.process.kill() [all …]
|
/openbmc/qemu/system/ |
H A D | async-teardown.c | 31 /* Check every second if this process has been reparented. */ in hup_handler() 37 /* At this point the parent process has terminated completely. */ in hup_handler() 47 /* Set a meaningful name for this process. */ in async_teardown_fn() 53 * main qemu process when doing clone, needed to make libvirt happy. in async_teardown_fn() 67 * Sleep forever, unless the parent process has already terminated. The in async_teardown_fn() 69 * operation is received when the parent process dies. in async_teardown_fn() 75 /* At this point the parent process has terminated completely. */ in async_teardown_fn() 95 * Block all signals, start (clone) a new process sharing the address space
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/commands/ |
H A D | test_runbuilds.py | 26 """ Kill the runbuilds process after an amount of time """ 56 # Setup a real database if needed for runbuilds process 72 process = subprocess.Popen(command, 77 (out, err) = process.communicate() 78 process.wait() 80 self.assertNotEqual(process.returncode, 1,
|
/openbmc/webui-vue/ |
H A D | vue.config.js | 10 const envName = process.env.VUE_APP_ENV_NAME; 12 process.env.CUSTOM_STYLES === 'true' ? true : false; 33 target: process.env.BASE_URL, 64 if (process.env.NODE_ENV === 'production') { 87 const envName = process.env.VUE_APP_ENV_NAME; 88 const hasCustomStore = process.env.CUSTOM_STORE === 'true' ? true : false; 89 const hasCustomRouter = process.env.CUSTOM_ROUTER === 'true' ? true : false; 91 process.env.CUSTOM_APP_NAV === 'true' ? true : false; 111 if (process.env.NODE_ENV === 'production') {
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/support/ |
H A D | httpserver.py | 43 …self.process = multiprocessing.Process(target=self.server.server_start, args=[self.root_dir, self.… 50 self.process.start() 60 if hasattr(self, "process"): 61 self.process.terminate() 62 self.process.join()
|
/openbmc/openpower-proc-control/extensions/phal/ |
H A D | phal_error.hpp | 15 * @brief Process debug traces 29 * @brief Process ipl failure/success status 39 * @brief Process boot failure/success status 49 * @brief Process SBE boot failure/success status 60 * @brief Process Guard Partition Access Error 62 * This function is used process access error related to guard partition during
|