Searched refs:Job (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium_org/sandbox/win/src/
H A Djob.h15 // Job job;
18 class Job { class in namespace:sandbox
20 Job() : job_handle_(NULL) { } function in class:sandbox::Job
22 ~Job();
59 DISALLOW_COPY_AND_ASSIGN(Job);
H A Djob.cc12 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) {
H A Djob_unittest.cc15 // Scope the creation of Job.
18 Job job;
39 // Scope the creation of Job.
42 Job job;
71 // Scope the creation of Job.
74 Job job;
92 // Scope the creation of Job.
95 Job job;
117 Job job;
125 Job jo
[all...]
/external/chromium_org/net/base/
H A Dprioritized_dispatcher.h23 // Job::Start.
27 class Job;
28 typedef PriorityQueue<Job*>::Priority Priority;
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 be
53 class Job { class in class:net::PrioritizedDispatcher
55 // Note: PrioritizedDispatcher will never delete a Job.
56 virtual ~Job() {}
[all...]
H A Dprioritized_dispatcher.cc27 Job* job, Priority priority) {
39 Job* job, Priority priority) {
54 PrioritizedDispatcher::Job* PrioritizedDispatcher::EvictOldestLowest() {
58 Job* job = handle.value();
68 "Job should not be in queue when limits permit it to start.";
75 Job* job = handle.value();
129 Job* job = handle.value();
/external/chromium_org/net/http/
H A Dhttp_stream_factory_impl_request.h35 // Called when the Job determines the appropriate |spdy_session_key| for the
44 void AttachJob(HttpStreamFactoryImpl::Job* job);
47 // |job_net_log| is the BoundNetLog of the Job that fulfilled this request.
57 // Called by an attached Job if it sets up a SpdySession.
58 void OnNewSpdySessionReady(Job* job,
71 void OnStreamReady(Job* job,
75 void OnWebSocketHandshakeStreamReady(Job* job,
79 void OnStreamFailed(Job* job, int status, const SSLConfig& used_ssl_config);
80 void OnCertificateError(Job* job,
84 void OnNeedsProxyAuth(Job* jo
[all...]
H A Dhttp_stream_factory_impl.h65 class NET_EXPORT_PRIVATE Job; member in class:net::HttpStreamFactoryImpl
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.
107 void OnPreconnectsComplete(const Job* job);
117 std::map<const Job*, Request*> request_map_;
126 std::set<const Job*> orphaned_job_set
[all...]
H A Dhttp_stream_factory_impl_job.h36 class HttpStreamFactoryImpl::Job { class in class:net::HttpStreamFactoryImpl
38 Job(HttpStreamFactoryImpl* stream_factory,
45 ~Job();
48 // notified upon completion if the Job has not been Orphan()'d.
58 // Marks this Job as the "alternate" job, from Alternate-Protocol. Tracks the
66 void WaitFor(Job* job);
71 void Resume(Job* job);
73 // Used to detach the Job from |request|.
91 // Indicates whether or not this Job has been orphaned by a Request.
99 void MarkOtherJobComplete(const Job
[all...]
H A Dhttp_stream_factory_impl_job.cc69 HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory, function in class:net::HttpStreamFactoryImpl::Job
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 {
169 void HttpStreamFactoryImpl::Job
[all...]
H A Dhttp_stream_factory_impl_request.cc47 for (std::set<Job*>::iterator it = jobs_.begin(); it != jobs_.end(); ++it)
65 void HttpStreamFactoryImpl::Request::AttachJob(Job* job) {
90 Job* job,
103 Job* job,
117 Job* job,
129 for (std::set<Job*>::iterator it = jobs_.begin(); it != jobs_.end(); ++it)
146 Job* job,
159 Job* job,
173 Job* job,
184 Job *jo
[all...]
H A Dhttp_stream_factory_impl.cc47 std::set<const Job*> tmp_job_set;
112 Job* alternate_job = NULL;
120 new Job(this, session_, alternate_request_info, priority,
126 Job* job = new Job(this, session_, request_info, priority,
156 Job* job = NULL;
160 job = new Job(this, session_, alternate_request_info, priority,
164 job = new Job(this, session_, request_info, priority,
245 void HttpStreamFactoryImpl::OrphanJob(Job* job, const Request* request) {
299 void HttpStreamFactoryImpl::OnOrphanedJobComplete(const Job* jo
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DDispatcher.java42 private final Deque<Job> readyJobs = new ArrayDeque<Job>();
45 private final Deque<Job> runningJobs = new ArrayDeque<Job>();
106 Job job = new Job(this, client, request, receiver);
121 for (Iterator<Job> i = readyJobs.iterator(); i.hasNext(); ) {
125 for (Job job : runningJobs) {
130 /** Used by {@code Job#run} to signal completion. */
131 synchronized void finished(Job jo
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8_tracing.cc68 // The Job class is responsible for executing GetProxyForURL() and
82 class ProxyResolverV8Tracing::Job class in class:net::ProxyResolverV8Tracing
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 i
295 ProxyResolverV8Tracing::Job::Job(ProxyResolverV8Tracing* parent) function in class:net::ProxyResolverV8Tracing::Job
[all...]
H A Dmulti_threaded_proxy_resolver.cc40 void StartJob(Job* job);
43 void OnJobCompleted(Job* job);
50 Job* outstanding_job() const { return outstanding_job_.get(); }
65 scoped_refptr<Job> outstanding_job_;
77 // MultiThreadedProxyResolver::Job ---------------------------------------------
79 class MultiThreadedProxyResolver::Job class in class:net::MultiThreadedProxyResolver
80 : public base::RefCountedThreadSafe<MultiThreadedProxyResolver::Job> {
82 // Identifies the subclass of Job (only being used for debugging purposes).
89 Job(Type type, const CompletionCallback& callback) function in class:net::MultiThreadedProxyResolver::Job
152 friend class base::RefCountedThreadSafe<MultiThreadedProxyResolver::Job>;
[all...]
/external/clang/include/clang/Driver/
H A DJob.h1 //===--- Job.h - Commands to Execute ----------------------------*- C++ -*-===//
31 class Job { class in namespace:clang::driver
43 Job(JobClass _Kind) : Kind(_Kind) {} function in class:clang::driver::Job
45 virtual ~Job();
49 /// Print - Print this Job in -### format.
61 class Command : public Job {
95 static bool classof(const Job *J) {
115 static bool classof(const Job *J) {
124 class JobList : public Job {
126 typedef SmallVector<Job*,
[all...]
/external/chromium_org/components/policy/core/common/cloud/
H A Dexternal_policy_data_fetcher.h63 struct Job;
85 Job* StartJob(const GURL& url,
91 void CancelJob(Job* job);
96 Job* job,
112 typedef std::set<Job*> JobSet;
133 typedef base::Callback<void(ExternalPolicyDataFetcher::Job*,
152 void StartJob(ExternalPolicyDataFetcher::Job* job);
155 void CancelJob(ExternalPolicyDataFetcher::Job* job,
172 // from these to the corresponding Job.
173 typedef std::map<net::URLFetcher*, ExternalPolicyDataFetcher::Job*> JobMa
[all...]
H A Dexternal_policy_data_fetcher.cc29 ExternalPolicyDataFetcher::Job* job,
50 void DoNothing(ExternalPolicyDataFetcher::Job* job) {
55 struct ExternalPolicyDataFetcher::Job { struct in class:policy::ExternalPolicyDataFetcher
56 Job(const GURL& url,
65 DISALLOW_COPY_AND_ASSIGN(Job);
68 ExternalPolicyDataFetcher::Job::Job( function in class:policy::ExternalPolicyDataFetcher::Job
93 ExternalPolicyDataFetcher::Job* ExternalPolicyDataFetcher::StartJob(
98 Job* job = new Job(
[all...]
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcloud_print_response_parser.h23 struct Job { struct in namespace:cloud_print_response_parser
24 Job();
25 ~Job();
58 std::vector<Job>* list);
/external/chromium_org/content/browser/download/
H A Dmhtml_generation_manager.cc19 class MHTMLGenerationManager::Job : public RenderProcessHostObserver { class in class:content::MHTMLGenerationManager
21 Job();
22 virtual ~Job();
56 DISALLOW_COPY_AND_ASSIGN(Job);
59 MHTMLGenerationManager::Job::Job() function in class:content::MHTMLGenerationManager::Job
65 MHTMLGenerationManager::Job::~Job() {
70 void MHTMLGenerationManager::Job::SetWebContents(WebContents* web_contents) {
77 void MHTMLGenerationManager::Job
[all...]
H A Dmhtml_generation_manager.h49 class Job;
78 void RenderProcessExited(Job* job);
80 typedef std::map<int, Job*> IDToJobMap;
/external/chromium_org/net/dns/
H A Daddress_sorter_win.cc36 scoped_refptr<Job> job = new Job(list, callback);
42 class Job : public base::RefCountedThreadSafe<Job> { class in class:net::__anon9185::AddressSorterWin
44 Job(const AddressList& list, const CallbackType& callback) function in class:net::__anon9185::AddressSorterWin::Job
76 base::Bind(&Job::Run, this),
77 base::Bind(&Job::OnComplete, this),
85 friend class base::RefCountedThreadSafe<Job>;
86 ~Job() {}
131 DISALLOW_COPY_AND_ASSIGN(Job);
[all...]
/external/chromium_org/net/quic/crypto/
H A Dchannel_id_chromium.cc59 // A Job handles the lookup of a single channel ID. It is owned by the
62 class ChannelIDSourceChromium::Job { class in class:net::ChannelIDSourceChromium
64 Job(ChannelIDSourceChromium* channel_id_source,
103 DISALLOW_COPY_AND_ASSIGN(Job);
106 ChannelIDSourceChromium::Job::Job( function in class:net::ChannelIDSourceChromium::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
[all...]
H A Dchannel_id_chromium.h48 class Job;
49 typedef std::set<Job*> JobSet;
51 void OnJobComplete(Job* job);
H A Dproof_verifier_chromium.h73 class Job;
74 typedef std::set<Job*> JobSet;
76 void OnJobComplete(Job* job);
H A Dproof_verifier_chromium.cc42 // A Job handles the verification of a single proof. It is owned by the
45 class ProofVerifierChromium::Job { class in class:net::ProofVerifierChromium
47 Job(ProofVerifierChromium* proof_verifier,
100 DISALLOW_COPY_AND_ASSIGN(Job);
103 ProofVerifierChromium::Job::Job( function in class:net::ProofVerifierChromium::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
[all...]

Completed in 1101 milliseconds

1234