HomeSort by relevance Sort by last modified time
    Searched defs:Job (Results 1 - 25 of 43) 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,
89 DWORD Job::UserHandleGrantAccess(HANDLE handle) {
102 HANDLE Job::Detach() {
108 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/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/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/http/
http_stream_factory_impl.h 65 class NET_EXPORT_PRIVATE Job;
83 // Detaches |job| from |request|.
84 void OrphanJob(Job* job, const Request* request);
98 // Called when the Job detects that the endpoint indicated by the
101 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin);
103 // Invoked when an orphaned Job finishes.
104 void OnOrphanedJobComplete(const Job* job);
106 // Invoked when the Job finishes preconnecting sockets
    [all...]
http_stream_factory_impl_job.cc 43 // Returns parameters associated with the start of a HTTP stream job.
69 HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory,
82 io_callback_(base::Bind(&Job::OnIOComplete, base::Unretained(this))),
108 HttpStreamFactoryImpl::Job::~Job() {
127 void HttpStreamFactoryImpl::Job::Start(Request* request) {
133 int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) {
149 int HttpStreamFactoryImpl::Job::RestartTunnelWithProxyAuth(
157 LoadState HttpStreamFactoryImpl::Job::GetLoadState() const
    [all...]
  /external/chromium_org/content/browser/download/
mhtml_generation_manager.cc 19 class MHTMLGenerationManager::Job : public RenderProcessHostObserver {
21 Job();
22 virtual ~Job();
56 DISALLOW_COPY_AND_ASSIGN(Job);
59 MHTMLGenerationManager::Job::Job()
65 MHTMLGenerationManager::Job::~Job() {
70 void MHTMLGenerationManager::Job::SetWebContents(WebContents* web_contents) {
77 void MHTMLGenerationManager::Job::RenderProcessExited
179 Job* job = iter->second; local
202 Job* job = iter->second; local
222 Job* job = new Job(); local
    [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/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/v8/tools/testrunner/local/
execution.py 39 class Job(object):
48 def RunTest(job):
50 if job.dep_command is not None:
51 dep_output = commands.Execute(job.dep_command, job.verbose, job.timeout)
57 return (job.id, dep_output, time.time() - start_time)
58 output = commands.Execute(job.command, job.verbose, job.timeout
    [all...]
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
12 #include "clang/Driver/Job.h"
25 Job::~Job() {}
30 : Job(CommandClass), Source(_Source), Creator(_Creator),
174 JobList::JobList() : Job(JobListClass) {}
  /external/chromium_org/net/quic/crypto/
channel_id_chromium.cc 59 // A Job handles the lookup of a single channel ID. It is owned by the
62 class ChannelIDSourceChromium::Job {
64 Job(ChannelIDSourceChromium* channel_id_source,
103 DISALLOW_COPY_AND_ASSIGN(Job);
106 ChannelIDSourceChromium::Job::Job(
114 QuicAsyncStatus ChannelIDSourceChromium::Job::GetChannelIDKey(
144 int ChannelIDSourceChromium::Job::DoLoop(int last_result) {
167 void ChannelIDSourceChromium::Job::OnIOComplete(int result) {
177 int ChannelIDSourceChromium::Job::DoGetChannelIDKey(int result)
    [all...]
proof_verifier_chromium.cc 42 // A Job handles the verification of a single proof. It is owned by the
45 class ProofVerifierChromium::Job {
47 Job(ProofVerifierChromium* proof_verifier,
100 DISALLOW_COPY_AND_ASSIGN(Job);
103 ProofVerifierChromium::Job::Job(
115 QuicAsyncStatus ProofVerifierChromium::Job::VerifyProof(
186 int ProofVerifierChromium::Job::DoLoop(int last_result) {
209 void ProofVerifierChromium::Job::OnIOComplete(int result) {
221 int ProofVerifierChromium::Job::DoVerifyCert(int result)
    [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++ -*-===//
31 class Job {
43 Job(JobClass _Kind) : Kind(_Kind) {}
45 virtual ~Job();
49 /// Print - Print this Job in -### format.
61 class Command : public Job {
62 /// Source - The action which caused the creation of this job.
65 /// Tool - The tool which caused the creation of this job.
85 /// getSource - Return the Action which caused the creation of this job.
88 /// getCreator - Return the Tool which caused the creation of this job
    [all...]
  /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_];
  /external/chromium_org/net/proxy/
multi_threaded_proxy_resolver.cc 24 // An "executor" is a job-runner for PAC requests. It encapsulates a worker
39 // Submit a job to this executor.
40 void StartJob(Job* job);
42 // Callback for when a job has completed running on the executor's thread.
43 void OnJobCompleted(Job* job);
49 // Returns the outstanding job, or NULL.
50 Job* outstanding_job() const { return outstanding_job_.get(); }
63 // The currently active job for this executor (either a SetPacScript o
416 Job* job = reinterpret_cast<Job*>(req); local
482 Job* job = executor->outstanding_job(); local
    [all...]
proxy_resolver_v8_tracing.cc 68 // The Job class is responsible for executing GetProxyForURL() and
82 class ProxyResolverV8Tracing::Job
83 : public base::RefCountedThreadSafe<ProxyResolverV8Tracing::Job>,
87 // Job, and must oulive it.
88 explicit Job(ProxyResolverV8Tracing* parent);
109 friend class base::RefCountedThreadSafe<ProxyResolverV8Tracing::Job>;
122 virtual ~Job();
203 // The ProxyResolverV8Tracing which spawned this Job.
207 // The callback to run (on the origin thread) when the Job finishes.
214 // The operation that this Job is running
967 scoped_refptr<Job> job = new Job(this); local
977 Job* job = reinterpret_cast<Job*>(request); local
982 Job* job = reinterpret_cast<Job*>(request); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/users/avatar/
user_image_manager_impl.cc 194 // Every image load or update is encapsulated by a Job. The Job is allowed to
197 // |parent_| must be performed on the thread that the Job is created on only.
201 // Only one of the Load*() and Set*() methods may be called per Job.
202 class UserImageManagerImpl::Job {
204 // The |Job| will update the user object corresponding to |parent|.
205 explicit Job(UserImageManagerImpl* parent);
206 ~Job();
264 // Notifies the |parent_| that the Job is done.
280 base::WeakPtrFactory<Job> weak_factory_
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 41 final class Job extends NamedRunnable {
53 public Job(Dispatcher dispatcher, OkHttpClient client, Request request,
92 * Performs the request and returns the response. May return null if this job
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
ThreadPool.java 43 // A Job is like a Callable, but it has an addition JobContext parameter.
44 public interface Job<T> {
95 // Submit a job to the thread pool. The listener will be called when the
96 // job is finished (or cancelled).
97 public <T> Future<T> submit(Job<T> job, FutureListener<T> listener) {
98 Worker<T> w = new Worker<T>(job, listener);
103 public <T> Future<T> submit(Job<T> job) {
104 return submit(job, null)
    [all...]
  /external/chromium_org/net/quic/
quic_stream_factory.cc 151 class QuicStreamFactory::Job {
153 Job(QuicStreamFactory* factory,
163 // Creates a new job to handle the resumption of for connecting an
165 Job(QuicStreamFactory* factory,
170 ~Job();
218 base::WeakPtrFactory<Job> weak_factory_;
219 DISALLOW_COPY_AND_ASSIGN(Job);
222 QuicStreamFactory::Job::Job(QuicStreamFactory* factory,
243 QuicStreamFactory::Job::Job(QuicStreamFactory* factory
567 Job* job = active_jobs_[server_id]; local
735 Job* job = new Job(this, host_resolver_, session, server_id); local
744 Job* job = active_requests_[request]; local
    [all...]

Completed in 1004 milliseconds

1 2