HomeSort by relevance Sort by last modified time
    Searched refs:job (Results 51 - 75 of 99) sorted by null

1 23 4

  /external/chromium/chrome/browser/printing/
print_job.cc 36 // The job should be finished (or at least canceled) when it is destroyed.
44 void PrintJob::Initialize(PrintJobWorkerOwner* job,
53 worker_.reset(job->DetachWorker(this));
54 settings_ = job->settings();
57 new PrintedDocument(settings_, source_, job->cookie());
289 // canceling the job, the printer driver initiated dialog box is destroyed,
print_job.h 34 // reference to the job to be sure it is kept alive. All the code in this class
44 // Grabs the ownership of the PrintJobWorker from another job, which is
45 // usually a PrinterQuery. Set the expected page count of the print job.
46 void Initialize(PrintJobWorkerOwner* job, PrintedPagesSource* source,
75 // Cancels printing job and stops the worker thread. Takes effect immediately.
78 // Synchronously wait for the job to finish. It is mainly useful when the
87 // Returns true if the print job is pending, i.e. between a StartPrinting()
124 // worker thread per print job.
print_view_manager.cc 67 // Cancel the current job, wait for the worker to finish.
79 // the print job may finish without problem.
270 // a message loop until we get our signal that the print job is satisfied.
279 // know that the job will be stopped/canceled in any case.
299 bool PrintViewManager::CreateNewPrintJob(PrintJobWorkerOwner* job) {
302 // We can't help; we are waiting for a print job initialization. The user is
319 DCHECK(job);
320 if (!job)
324 print_job_->Initialize(job, this, number_pages_);
344 // DO NOT wait for the job to finish
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddCompatibilityJarAction.java 40 import org.eclipse.core.runtime.jobs.Job;
156 // Then run an Eclipse asynchronous job to update the project
158 Job job = new Job("Add Compatibility Library to Project") { local
194 job.schedule();
198 job.join();
199 return job.getState() == IStatus.OK;
  /external/bluetooth/glib/glib/
gmem.c 317 profiler_log (ProfilerJob job,
334 profile_data[n_bytes + PROFILE_TABLE ((job & PROFILER_ALLOC) != 0,
335 (job & PROFILER_RELOC) != 0,
338 profile_data[MEM_PROFILE_TABLE_SIZE + PROFILE_TABLE ((job & PROFILER_ALLOC) != 0,
339 (job & PROFILER_RELOC) != 0,
343 if (job & PROFILER_ALLOC)
346 if (job & PROFILER_ZINIT)
  /external/mksh/src/
jobs.c 52 #define JP_MEDIUM 2 /* print [job-num] -/+ command */
53 #define JP_LONG 3 /* print [job-num] -/+ pid command */
60 /* Job.flags values */
61 #define JF_STARTED 0x001 /* set when all processes in job are started */
62 #define JF_WAITING 0x002 /* set if j_waitj() is waiting on job */
74 typedef struct job Job;
75 struct job { struct
76 Job *next; /* next job in list *
83 int job; \/* job number: %n *\/ member in struct:job
1421 int len, job = 0; local
    [all...]
  /external/chromium/net/base/
dnsrr_resolver.cc 748 RRResolverJob* job; local
754 job = j->second;
758 job = new RRResolverJob(worker);
759 inflight_.insert(make_pair(key, job));
762 delete job;
769 job->AddHandle(handle);
823 RRResolverJob* job = j->second; local
826 job->HandleResult(result, response);
827 delete job;
  /external/chromium/net/socket/
client_socket_pool_base.h 63 virtual void OnConnectJobComplete(int result, ConnectJob* job) = 0;
102 // Precondition: is_unused_preconnect() must be true. Marks the job as a
103 // used preconnect job.
311 virtual void OnConnectJobComplete(int result, ConnectJob* job);
385 void AddJob(ConnectJob* job) { jobs_.insert(job); }
386 void RemoveJob(ConnectJob* job) { jobs_.erase(job); }
457 // Removes |job| from |connect_job_set_|. Also updates |group| if non-NULL.
458 void RemoveConnectJob(ConnectJob* job, Group* group)
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.h 81 virtual bool RegisterRequest(URLRequestAutomationJob* job);
84 virtual void UnRegisterRequest(URLRequestAutomationJob* job);
url_request_automation_job.cc 111 URLRequestAutomationJob* job = new URLRequestAutomationJob(request, local
114 return job;
136 // If this is a pending job, then register it immediately with the message
160 // We should not receive a read request for a pending job.
269 << ": Unexpected request received for job:"
346 // NotifyDone may have been called on the job if the original request was
349 // We can complete the job if we have a valid response or a pending read.
358 // that the job has completed.
390 // If the job is cancelled before we got a chance to start it
395 // We should not receive a Start request for a pending job
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 29 import org.eclipse.core.runtime.jobs.Job;
133 Job pingJob = createPingUsageServerJob();
135 pingJob.setPriority(Job.BUILD);
136 // Wait another 30 seconds before starting the ping job. This gives other
143 * Creates a job than can ping the usage server.
145 private Job createPingUsageServerJob() {
147 Job job = new Job("Android SDK Ping") { // Job name, visible in progress vie local
    [all...]
  /external/chromium/net/url_request/
url_request.h 67 // default job will be used.
93 // Called for every request made. Should return a new job to handle the
100 // job to replace the existing job if it should be intercepted, or NULL
101 // to allow the normal handling to continue. If a new job is provided,
103 // response produced by the intercept job will be returned.
110 // on dns or network errors. Can return a new job to replace the existing
111 // job if it should be intercepted, or NULL to allow the normal handling to
112 // continue. If a new job is provided, the delegate never sees the original
113 // response, instead the response produced by the intercept job will b
567 URLRequestJob* job() { return job_; } function in class:net::URLRequest
    [all...]
  /external/chromium/net/websockets/
websocket_job.cc 36 net::WebSocketJob* job = new net::WebSocketJob(delegate); local
37 job->InitSocketStream(new net::SocketStream(url, job));
38 return job;
  /packages/apps/Contacts/src/com/android/contacts/vcard/
VCardService.java 133 // File names currently reserved by some export job.
266 Log.w(LOG_TAG, "Failed to excetute a job.", e);
293 Log.w(LOG_TAG, String.format("Tried to remove unknown job (id: %d)", jobId));
318 * Checks job list and call {@link #stopSelf()} when there's no job and no scanner connection
320 * A new job (import/export) cannot be submitted any more after this call.
330 Log.i(LOG_TAG, String.format("Found unfinished job (id: %d)", jobId));
341 Log.i(LOG_TAG, "No unfinished job. Stop this service.");
378 Log.w(LOG_TAG, String.format("Tried to remove unknown job (id: %d)", jobId));
389 final ProcessorBase job = mRunningJobMap.remove(jobId) local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 377 public BackgroundJob(MonitoredActivity activity, Runnable job,
381 mJob = job;
415 String title, String message, Runnable job, Handler handler) {
420 new Thread(new BackgroundJob(activity, job, dialog, handler)).start();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditor.java 45 import org.eclipse.core.runtime.jobs.Job;
172 protected Job runLintOnSave() {
173 Job job = super.runLintOnSave(); local
174 if (job != null) {
175 job.addJobChangeListener(new JobChangeAdapter() {
183 return job;
  /external/chromium/chrome/browser/task_manager/
task_manager.cc 840 void TaskManagerModel::OnJobAdded(net::URLRequestJob* job) {
843 void TaskManagerModel::OnJobRemoved(net::URLRequestJob* job) {
846 void TaskManagerModel::OnJobDone(net::URLRequestJob* job,
850 void TaskManagerModel::OnJobRedirect(net::URLRequestJob* job,
855 void TaskManagerModel::OnBytesRead(net::URLRequestJob* job, const char* buf,
863 ResourceDispatcherHost::RenderViewForRequest(job->request(),
870 chrome_browser_net::GetOriginPIDForRequest(job->request());
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 36 import org.eclipse.core.runtime.jobs.Job;
146 FindViewsJob job = new FindViewsJob(); local
147 job.schedule();
150 job.join();
361 * Job for performing class search off the UI thread. This is marked as a system job
364 private class FindViewsJob extends Job {
  /external/chromium/chrome/common/
sandbox_policy.cc 393 // of the flash player, so we put it in a job object, when the browser
394 // terminates the job object is destroyed (by the OS) and the flash broker
396 HANDLE job = ::CreateJobObjectW(NULL, NULL); local
400 if (::SetInformationJobObject(job, JobObjectExtendedLimitInformation,
402 ::AssignProcessToJobObject(job, process);
405 ::CloseHandle(job);
  /external/iptables/iptables/
iptables-apply 154 echo ... then my job is done. See you next time.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 56 import org.eclipse.core.runtime.jobs.Job;
455 * <p/> The data is loaded in a separate {@link Job}, and opened editors will be notified
502 Job job = new Job(String.format("Loading data for %1$s", target.getFullName())) { local
550 job.setPriority(Job.BUILD); // build jobs are run after other interactive jobs
551 job.schedule();
554 // The only way to go through here is when the loading starts through the Job.
    [all...]