Lines Matching refs:BgJob
120 return '%s BgJob "%s" ' % (base_string, nickname)
126 # semantics problem in BgJob. See crbug.com/279312
127 class BgJob(object):
132 """Create and start a new BgJob.
134 This constructor creates a new BgJob, and uses Popen to start a new
138 After starting a new BgJob, use output_prepare to connect the process's
164 @param verbose: Boolean, make BgJob logging more verbose.
194 'unjoinable BgJob')
248 stdout or stderr stream, and writes the resulting data to the BgJob's
264 'a job with unjoinable BgJob')
290 """Clean up after BgJob.
299 'a job with a unjoinable BgJob')
301 logging.warning('BgJob [%s] received a duplicate call to '
749 (BgJob(command, stdout_tee, stderr_tee, verbose, stdin=stdin,
781 bg_jobs.append(BgJob(command, stdout_tee, stderr_tee,
798 """Function deprecated. Please use BgJob class instead."""
799 bg_job = BgJob(command)