Home | History | Annotate | Download | only in src

Lines Matching defs:Job

13 // Handles the creation of job objects based on a security profile.
15 // Job job;
16 // job.Init(JOB_LOCKDOWN, NULL); //no job name
17 // job.AssignProcessToJob(process_handle);
18 class Job {
20 Job() : job_handle_(NULL) { }
22 ~Job();
24 // Initializes and creates the job object. The security of the job is based
26 // job_name can be NULL if the job is unnamed.
34 // Assigns the process referenced by process_handle to the job.
40 // Grants access to "handle" to the job. All processes in the job can
47 // Revokes ownership to the job handle and returns it. The destructor of the
53 // Handle to the job referenced by the object.
56 DISALLOW_COPY_AND_ASSIGN(Job);