Lines Matching refs:command_line
1168 @return: A tuple of (pid, command_line) of the oldest process whose name
1174 command_line = utils.system_output('ps -p %i -o command=' % pid,
1176 return (pid, command_line)
1191 def get_process_list(name, command_line=None):
1193 Return the list of pid for matching process |name command_line|.
1208 name: process name to search for. If command_line is provided, name is
1209 matched against full command line. If command_line is not provided,
1219 flag = '-x' if not command_line else '-f'
1220 name = '\'%s.*%s\'' % (name, command_line) if command_line else name