Lines Matching full:bgjob
93 return '%s BgJob "%s" ' % (base_string, nickname)
99 # semantics problem in BgJob. See crbug.com/279312
100 class BgJob(object):
104 """Create and start a new BgJob.
106 This constructor creates a new BgJob, and uses Popen to start a new
110 After starting a new BgJob, use output_prepare to connect the process's
124 @param verbose: Boolean, make BgJob logging more verbose.
133 created by this BgJob does NOT use subprocess.PIPE
144 master-ssh connection BgJob.
216 the last output_prepare call when saving this data to BgJob.result.
227 logging.warning('BgJob [%s] received a duplicate call to '
229 'in data missing from BgJob.result.')
239 stdout or stderr stream, and writes the resulting data to the BgJob's
257 logging.warning('BgJob with command [%s] handled a process_output '
284 """Clean up after BgJob.
295 logging.warning('BgJob [%s] received a duplicate call to '
729 (BgJob(command, stdout_tee, stderr_tee, verbose, stdin=stdin,
759 bg_jobs.append(BgJob(command, stdout_tee, stderr_tee,
776 """Function deprecated. Please use BgJob class instead."""
777 bg_job = BgJob(command)