HomeSort by relevance Sort by last modified time
    Searched defs:Job (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/sandbox/win/src/
job.h 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 base
    [all...]
job.cc 5 #include "sandbox/win/src/job.h"
12 Job::~Job() {
17 DWORD Job::Init(JobLevel security_level, wchar_t *job_name,
56 // that processes in the job are terminated when the job is closed
87 DWORD Job::UserHandleGrantAccess(HANDLE handle) {
100 HANDLE Job::Detach() {
106 DWORD Job::AssignProcessToJob(HANDLE process_handle) {
target_process.h 36 TargetProcess(HANDLE initial_token, HANDLE lockdown_token, HANDLE job,
67 // Returns the handle to the job object that the target process belongs to.
68 HANDLE Job() const {
107 // Job object containing the target process.
  /external/chromium_org/mojo/shell/
loader.cc 19 Loader::Job::Job(const GURL& app_url, Delegate* delegate)
24 Loader::Job::~Job() {
27 void Loader::Job::OnURLFetchComplete(const net::URLFetcher* source) {
50 scoped_ptr<Loader::Job> Loader::Load(const GURL& app_url, Delegate* delegate) {
51 scoped_ptr<Job> job(new Job(app_url, delegate));
52 job->fetcher_->SetRequestContext(url_request_context_getter_.get())
    [all...]
loader.h 35 class Job : public net::URLFetcherDelegate {
37 // You can cancel a job by deleting it.
38 virtual ~Job();
43 // You can create a job using Loader::Load.
44 Job(const GURL& app_url, Delegate* delegate);
50 DISALLOW_COPY_AND_ASSIGN(Job);
60 scoped_ptr<Job> Load(const GURL& app_url, Delegate* delegate);
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
10 #include "clang/Driver/Job.h"
15 Job::~Job() {}
22 : Job(CommandClass), Source(_Source), Creator(_Creator),
25 JobList::JobList() : Job(JobListClass) {}
36 void Job::addCommand(Command *C) {
  /external/chromium_org/net/base/
prioritized_dispatcher.h 17 // jobs. It never revokes a job once started. The job must call OnJobFinished
23 // Job::Start.
27 class Job;
28 typedef PriorityQueue<Job*>::Priority Priority;
35 // jobs at priority 1 or below can start. After one more job starts, no jobs
49 // An interface to the job dispatched by PrioritizedDispatcher. The dispatcher
50 // does not own the Job but expects it to live as long as the Job is queued.
51 // Use Cancel to remove Job from queue before it is dispatched. The Job can b
    [all...]
  /external/chromium_org/content/browser/download/
mhtml_generation_manager.cc 19 MHTMLGenerationManager::Job::Job()
26 MHTMLGenerationManager::Job::~Job() {
115 Job& job = iter->second; local
116 job.browser_file = browser_file;
117 job.renderer_file = renderer_file;
120 job.process_id, job.routing_id)
138 Job& job = iter->second; local
157 Job& job = id_to_job_[job_id]; local
    [all...]
mhtml_generation_manager.h 51 struct Job{
52 Job();
53 ~Job();
87 // Called on the UI thread when a job has been processed (successfully or
88 // not). Closes the file and removes the job from the job map.
92 // Creates an register a new job.
100 typedef std::map<int, Job> IDToJobMap;
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.h 23 struct Job {
24 Job();
25 ~Job();
58 std::vector<Job>* list);
cloud_print_response_parser.cc 15 Job::Job() {
18 Job::~Job() {
164 std::vector<Job>* list) {
186 std::vector<Job> job_list(jobs->GetSize());
189 base::DictionaryValue* job = NULL; local
190 jobs->GetDictionary(idx, &job);
191 if (!job->GetString("id", &job_list[idx].job_id) ||
192 !job->GetString("createTime", &create_time_str) |
    [all...]
  /external/chromium_org/net/dns/
address_sorter_win.cc 36 scoped_refptr<Job> job = new Job(list, callback); variable
42 class Job : public base::RefCountedThreadSafe<Job> {
44 Job(const AddressList& list, const CallbackType& callback)
76 base::Bind(&Job::Run, this),
77 base::Bind(&Job::OnComplete, this),
85 friend class base::RefCountedThreadSafe<Job>;
86 ~Job() {}
    [all...]
  /external/chromium_org/net/http/
http_stream_factory_impl.h 74 class NET_EXPORT_PRIVATE Job;
95 // Detaches |job| from |request|.
96 void OrphanJob(Job* job, const Request* request);
110 // Called when the Job detects that the endpoint indicated by the
113 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin);
115 // Invoked when an orphaned Job finishes.
116 void OnOrphanedJobComplete(const Job* job);
118 // Invoked when the Job finishes preconnecting sockets
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-8.js 39 var Job = "";
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
  /external/chromium_org/v8/tools/testrunner/local/
execution.py 42 class Job(object):
51 def RunTest(job):
54 if job.dep_command is not None:
55 dep_output = commands.Execute(job.dep_command, job.verbose, job.timeout)
61 return (job.id, dep_output, time.time() - start_time)
62 output = commands.Execute(job.command, job.verbose, job.timeout
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-8.js 39 var Job = "";
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
  /external/chromium_org/components/policy/core/common/cloud/
external_policy_data_fetcher.cc 23 // Helper that forwards the result of a fetch job from the thread that the
25 // ExternalPolicyDataFetcher which started the job runs on.
29 ExternalPolicyDataFetcher::Job* job,
33 base::Bind(callback, job, result, base::Passed(&data)));
36 // Helper that forwards a job cancelation confirmation from the thread that the
38 // ExternalPolicyDataFetcher which canceled the job runs on.
45 // Helper invoked when a job cancelation confirmation has been forwarded to the
46 // thread which canceled the job. The helper itself does nothing. It exists so
47 // that the |job| can be passed as base::Owned(), allowing it to be deleted o
98 Job* job = new Job( local
239 ExternalPolicyDataFetcher::Job* job = it->second; local
258 ExternalPolicyDataFetcher::Job* job = it->second; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 25 struct Job {
66 Job *job_; // stack of text positions to explore
108 Job* newjob = new Job[maxjob_];
113 LOG(DFATAL) << "Job stack overflow.";
134 Job* j = &job_[njob_++];
148 // Pop job off stack.
168 // VLOG(0) << "Job: " << ip->id() << " "
326 job_ = new Job[maxjob_];
  /external/clang/include/clang/Driver/
Job.h 1 //===--- Job.h - Commands to Execute ----------------------------*- C++ -*-===//
25 class Job {
36 Job(JobClass _Kind) : Kind(_Kind) {}
38 virtual ~Job();
42 /// addCommand - Append a command to the current job, which must be
43 /// either a piped job or a job list.
49 class Command : public Job {
52 /// Source - The action which caused the creation of this job.
55 /// Tool - The tool which caused the creation of this job
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Job.java 24 public final class Job implements Runnable {
30 public Job(Dispatcher dispatcher, HttpURLConnection connection, Request request,
  /external/regex-re2/re2/
bitstate.cc 25 struct Job {
66 Job *job_; // stack of text positions to explore
108 Job* newjob = new Job[maxjob_];
113 LOG(DFATAL) << "Job stack overflow.";
134 Job* j = &job_[njob_++];
148 // Pop job off stack.
168 // VLOG(0) << "Job: " << ip->id() << " "
326 job_ = new Job[maxjob_];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
workstealing.h 52 /** @brief One job for a certain thread. */
54 struct Job
77 * Uses O(1) additional memory. Synchronization at job lists is
120 const int stride = __s.cache_line_size * 10 / sizeof(Job<difference_type>) + 1;
125 Job<difference_type> *job; local
145 // Create job description array.
146 job = new Job<difference_type>[num_threads * stride];
157 // This job
    [all...]
  /external/chromium/net/http/
http_stream_factory_impl_job.cc 37 HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory,
47 ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, &Job::OnIOComplete)),
69 HttpStreamFactoryImpl::Job::~Job() {
88 void HttpStreamFactoryImpl::Job::Start(Request* request) {
94 int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) {
100 int HttpStreamFactoryImpl::Job::RestartTunnelWithProxyAuth(
108 LoadState HttpStreamFactoryImpl::Job::GetLoadState() const {
121 void HttpStreamFactoryImpl::Job::MarkAsAlternate(const GURL& original_url)
    [all...]
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver.cc 36 // An "executor" is a job-runner for PAC requests. It encapsulates a worker
51 // Submit a job to this executor.
52 void StartJob(Job* job);
54 // Callback for when a job has completed running on the executor's thread.
55 void OnJobCompleted(Job* job);
63 // Returns the outstanding job, or NULL.
64 Job* outstanding_job() const { return outstanding_job_.get(); }
77 // The currently active job for this executor (either a SetPacScript o
443 Job* job = reinterpret_cast<Job*>(req); local
512 Job* job = executor->outstanding_job(); local
    [all...]
  /external/chromium_org/net/proxy/
multi_threaded_proxy_resolver.cc 25 // An "executor" is a job-runner for PAC requests. It encapsulates a worker
40 // Submit a job to this executor.
41 void StartJob(Job* job);
43 // Callback for when a job has completed running on the executor's thread.
44 void OnJobCompleted(Job* job);
52 // Returns the outstanding job, or NULL.
53 Job* outstanding_job() const { return outstanding_job_.get(); }
66 // The currently active job for this executor (either a SetPacScript o
450 Job* job = reinterpret_cast<Job*>(req); local
525 Job* job = executor->outstanding_job(); local
    [all...]

Completed in 2529 milliseconds

1 2