Home
last modified time | relevance | path

Searched refs:Job (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium/net/http/
Dhttp_stream_factory_impl_job.cc37 HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory, in Job() function in net::HttpStreamFactoryImpl::Job
47 ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, &Job::OnIOComplete)), in Job()
69 HttpStreamFactoryImpl::Job::~Job() { in ~Job()
88 void HttpStreamFactoryImpl::Job::Start(Request* request) { in Start()
94 int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) { in Preconnect()
100 int HttpStreamFactoryImpl::Job::RestartTunnelWithProxyAuth( in RestartTunnelWithProxyAuth()
108 LoadState HttpStreamFactoryImpl::Job::GetLoadState() const { in GetLoadState()
121 void HttpStreamFactoryImpl::Job::MarkAsAlternate(const GURL& original_url) { in MarkAsAlternate()
126 void HttpStreamFactoryImpl::Job::WaitFor(Job* job) { in WaitFor()
135 void HttpStreamFactoryImpl::Job::Resume(Job* job) { in Resume()
[all …]
Dhttp_stream_factory_impl_request.h35 void AttachJob(HttpStreamFactoryImpl::Job* job);
49 void OnSpdySessionReady(Job* job,
56 void OnStreamReady(Job* job,
60 void OnStreamFailed(Job* job, int status, const SSLConfig& used_ssl_config);
61 void OnCertificateError(Job* job,
65 void OnNeedsProxyAuth(Job* job,
70 void OnNeedsClientAuth(Job* job,
74 Job *job,
91 void OrphanJobsExcept(Job* job);
102 scoped_ptr<Job> bound_job_;
[all …]
Dhttp_stream_factory_impl.h43 class Job; variable
52 void OrphanJob(Job* job, const Request* request);
68 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin);
71 void OnOrphanedJobComplete(const Job* job);
74 void OnPreconnectsComplete(const Job* job);
86 std::map<const Job*, Request*> request_map_;
95 std::set<const Job*> orphaned_job_set_;
100 std::set<const Job*> preconnect_job_set_;
Dhttp_stream_factory_impl_job.h35 class HttpStreamFactoryImpl::Job {
37 Job(HttpStreamFactoryImpl* stream_factory,
42 ~Job();
62 void WaitFor(Job* job);
67 void Resume(Job* job);
209 CompletionCallbackImpl<Job> io_callback_;
226 Job* blocking_job_;
229 Job* dependent_job_;
268 ScopedRunnableMethodFactory<Job> method_factory_;
270 DISALLOW_COPY_AND_ASSIGN(Job);
Dhttp_stream_factory_impl.cc41 std::set<const Job*> tmp_job_set; in ~HttpStreamFactoryImpl()
62 Job* alternate_job = NULL; in RequestStream()
67 new Job(this, session_, alternate_request_info, ssl_config, net_log); in RequestStream()
72 Job* job = new Job(this, session_, request_info, ssl_config, net_log); in RequestStream()
96 Job* job = NULL; in PreconnectStreams()
100 job = new Job(this, session_, alternate_request_info, ssl_config, net_log); in PreconnectStreams()
103 job = new Job(this, session_, request_info, ssl_config, net_log); in PreconnectStreams()
155 void HttpStreamFactoryImpl::OrphanJob(Job* job, const Request* request) { in OrphanJob()
197 void HttpStreamFactoryImpl::OnOrphanedJobComplete(const Job* job) { in OnOrphanedJobComplete()
202 void HttpStreamFactoryImpl::OnPreconnectsComplete(const Job* job) { in OnPreconnectsComplete()
Dhttp_stream_factory_impl_request.cc40 for (std::set<Job*>::iterator it = jobs_.begin(); it != jobs_.end(); ++it) in ~Request()
58 void HttpStreamFactoryImpl::Request::AttachJob(Job* job) { in AttachJob()
79 Job* job, in OnStreamReady()
110 Job* job, in OnStreamFailed()
135 Job* job, in OnCertificateError()
148 Job* job, in OnNeedsProxyAuth()
162 Job* job, in OnNeedsClientAuth()
173 Job *job, in OnHttpsProxyTunnelResponse()
229 Job* job, in OnSpdySessionReady()
268 void HttpStreamFactoryImpl::Request::OrphanJobsExcept(Job* job) { in OrphanJobsExcept()
[all …]
/external/clang/include/clang/Driver/
DJob.h22 class Job {
33 Job(JobClass _Kind) : Kind(_Kind) {} in Job() function
35 virtual ~Job();
43 static bool classof(const Job *) { return true; } in classof() argument
48 class Command : public Job {
76 static bool classof(const Job *J) { in classof()
83 class JobList : public Job {
85 typedef llvm::SmallVector<Job*, 4> list_type;
98 void addJob(Job *J) { Jobs.push_back(J); } in addJob()
108 static bool classof(const Job *J) { in classof()
DCompilation.h123 void PrintJob(llvm::raw_ostream &OS, const Job &J,
138 int ExecuteJob(const Job &J, const Command *&FailingCommand) const;
DTool.h22 class Job; variable
/external/chromium/net/proxy/
Dmulti_threaded_proxy_resolver.cc52 void StartJob(Job* job);
55 void OnJobCompleted(Job* job);
64 Job* outstanding_job() const { return outstanding_job_.get(); } in outstanding_job()
79 scoped_refptr<Job> outstanding_job_;
93 class MultiThreadedProxyResolver::Job class in net::MultiThreadedProxyResolver
94 : public base::RefCountedThreadSafe<MultiThreadedProxyResolver::Job> {
103 Job(Type type, CompletionCallback* user_callback) in Job() function in net::MultiThreadedProxyResolver::Job
166 friend class base::RefCountedThreadSafe<MultiThreadedProxyResolver::Job>;
168 virtual ~Job() {} in ~Job()
181 : public MultiThreadedProxyResolver::Job {
[all …]
Dmulti_threaded_proxy_resolver.h107 class Job; variable
112 typedef std::deque<scoped_refptr<Job> > PendingJobsQueue;
/external/chromium/net/base/
Dhost_resolver_impl.h132 class Job;
138 typedef std::map<Key, scoped_refptr<Job> > JobMap;
148 void AddOutstandingJob(Job* job);
151 Job* FindOutstandingJob(const Key& key);
154 void RemoveOutstandingJob(Job* job);
157 void OnJobComplete(Job* job, int net_error, int os_error,
162 void AbortJob(Job* job);
165 void OnJobCompleteInternal(Job* job, int net_error, int os_error,
215 Job* CreateAndStartJob(Request* req);
244 scoped_refptr<Job> cur_completing_job_;
Dhost_resolver_impl.cc277 void set_job(Job* job) { in set_job()
295 Job* job() const { in job()
326 Job* job_;
346 class HostResolverImpl::Job class in net::HostResolverImpl
347 : public base::RefCountedThreadSafe<HostResolverImpl::Job> {
349 Job(int id, in Job() function in net::HostResolverImpl::Job
391 NewRunnableMethod(this, &Job::DoLookup), true)) { in Start()
399 FROM_HERE, NewRunnableMethod(this, &Job::OnLookupComplete)); in Start()
467 friend class base::RefCountedThreadSafe<HostResolverImpl::Job>;
469 ~Job() { in ~Job()
[all …]
/external/clang/lib/Driver/
DJob.cpp15 Job::~Job() {} in ~Job()
19 : Job(CommandClass), Source(_Source), Creator(_Creator), in Command()
24 JobList::JobList() : Job(JobListClass) {} in JobList()
31 void Job::addCommand(Command *C) { in addCommand()
DCMakeLists.txt13 Job.cpp
DCompilation.cpp63 void Compilation::PrintJob(llvm::raw_ostream &OS, const Job &J, in PrintJob()
185 int Compilation::ExecuteJob(const Job &J, in ExecuteJob()
DAndroid.mk25 Job.cpp \
/external/mksh/src/
Djobs.c74 typedef struct job Job; typedef
76 Job *next; /* next job in list */
115 static Job *job_list; /* job list */
116 static Job *last_job;
117 static Job *async_job;
137 static void j_set_async(Job *);
138 static void j_startjob(Job *);
139 static int j_waitj(Job *, int, const char *);
141 static void j_print(Job *, int, struct shf *);
142 static Job *j_lookup(const char *, int *);
[all …]
/external/v8/test/mjsunit/compiler/
Dregress-8.js39 var Job = ""; variable
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
/external/emma/core/java12/com/vladium/emma/instr/
DInstrProcessorST.java798 m_jobs = new Job [JOB_QUEUE_SIZE]; in InstrProcessorST()
871 private static abstract class Job class in InstrProcessorST
878 private static final class FileWriteJob extends Job
901 private static final class EntryWriteJob extends Job
926 private void addJob (final Job job) in addJob()
939 final Job job = m_jobs [j]; in drainJobQueue()
1020 private final Job [] m_jobs;
/external/clang/clang.xcodeproj/
Dproject.pbxproj714Job.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sour…
741 …80098507F /* Job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.…
1797 DEDFE6530F7B3B830035BD10 /* Job.cpp */,
1862 DEF165210F8D46980098507F /* Job.h */,
/external/webkit/Source/WebCore/
DChangeLog-2002-12-035435 * kwq/KWQSignal.h: Add support for signals that take bool and KIO::Job *.
5439 (KWQSignal::call): Add overloads for bool and KIO::Job *.
5441 * kwq/KWQSlot.h: Add support for slots that take bool and KIO::Job *.
5444 (KWQSlot::call): Add overloads for bool and KIO::Job * and support for the new
11777 * kwq/kio/jobclasses.h: Removed SimpleJob and made Job just enough for
DChangeLog-2006-05-1018695 - merged Job and TransferJob into TransferJob and moved it to WebCore namespace
18709 * kwq/KWQKJobClasses.h: Eliminate Job. Add a TransferJobClient* parameter to
18754 (WebCore::Loader::cancelRequests): Changed KIO::Job to TransferJob.
/external/dropbear/libtomcrypt/
Dchanges390 …them in other functions (like pkcs_5_2()) because I didn't have the time. Job for the new LTC mai…
/external/webkit/PerformanceTests/Parser/resources/
Dfinal-url-en8797 http://jobs.collegerecruiter.com/JS/General/Job.asp?id=3434741
8798 http://jobs.collegerecruiter.com/JS/General/Job.asp?id=3456043
8799 http://jobs.collegerecruiter.com/JS/General/Job.asp?id=3460142
8800 http://jobs.collegerecruiter.com/JS/General/Job.asp?id=3489352
19564 http://www.4jobs.com/JS/General/Job.asp?id=3460141
19565 http://www.4jobs.com/JS/General/Job.asp?id=3460142
25978 http://www.aswift.com/servlet/Job.Search?job.sectorId=34
45533 http://www.graphesthesia.com/rw/s-Job.html
46137 http://www.gwhatchet.com/news/2004/10/28/MetroNews/Waiting.In.Line.Is.Now.An.Hourly.Job-784466.shtml
50981 http://www.jamminjobs.com/JS/General/Job.asp?id=3287455
[all …]

12