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

1 2 3 4 5 6 7

  /external/chromium_org/android_webview/browser/net/
aw_url_request_job_factory.cc 44 URLRequestJob* job = next_factory_->MaybeCreateJobWithProtocolHandler( local
47 if (job)
48 return job;
51 // In that case the built in handlers will then be used to create the job.
  /external/chromium_org/net/url_request/
protocol_intercept_job_factory.cc 25 URLRequestJob* job = protocol_handler_->MaybeCreateJob(request, local
27 if (job)
28 return job;
url_request_job_manager.cc 77 URLRequestJob* job = (*i)->MaybeIntercept(request, network_delegate); local
78 if (job)
79 return job;
84 URLRequestJob* job = job_factory->MaybeCreateJobWithProtocolHandler( local
86 if (job)
87 return job;
97 URLRequestJob* job = i->second(request, network_delegate, scheme); local
98 if (job)
99 return job;
105 URLRequestJob* job = (kBuiltinFactories[i].factory) local
144 URLRequestJob* job = (*i)->MaybeInterceptRedirect(request, local
176 URLRequestJob* job = (*i)->MaybeInterceptResponse(request, local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtpool.h 66 /* queue a job */
70 /* queue a job, when a socket is readable */
75 /* queue a job, when a socket is writeable */
80 /* queue a job, when a socket has a pending connection */
85 /* queue a job, when the socket connection to addr succeeds or fails */
90 /* queue a job, when a timer exipres */
94 /* cancel a job */
96 PR_CancelJob(PRJob *job); variable
98 /* join a job */
100 PR_JoinJob(PRJob *job); variable
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintRunner.java 29 import org.eclipse.core.runtime.jobs.Job;
62 LintJob job = (LintJob) startLint(resources, source, doc, fatalOnly, local
65 job.join();
66 boolean fatal = job.isFatal();
81 * Runs lint and updates the markers. Does not wait for the job to finish -
95 * @return the job running lint in the background.
97 public static Job startLint(
109 * Runs lint and updates the markers. Does not wait for the job to finish -
122 * @return the job running lint in the background.
124 public static Job startLint
136 LintJob job = new LintJob(client, resources, source); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 29 import org.eclipse.core.runtime.jobs.Job;
43 Job job = new Job(taskName) { local
50 job.setPriority(Job.SHORT);
51 job.setRule(mSchedulingRule);
52 job.schedule();
  /external/chromium/net/socket_stream/
socket_stream_job_manager.cc 27 SocketStreamJob* job = new SocketStreamJob(); local
28 job->InitSocketStream(new SocketStream(url, delegate));
29 return job;
37 SocketStreamJob* job = found->second(url, delegate); local
38 if (job)
39 return job;
41 SocketStreamJob* job = new SocketStreamJob(); local
42 job->InitSocketStream(new SocketStream(url, delegate));
43 return job;
  /external/chromium_org/chrome_frame/test/net/
test_automation_provider.cc 35 // AutomationResourceMessageFilter registers the automation job factory to
95 URLRequestAutomationJob* job = new URLRequestAutomationJob( local
100 return job;
test_automation_resource_message_filter.cc 19 URLRequestAutomationJob* job, IPC::Message* msg) {
20 job->OnMessage(*msg);
37 RequestJob& job = it->second; local
46 // URLRequestAutomationJob was created on, we could destroy the job on
49 // on the correct thread here since we post to job.loop_ which is set as
52 job.loop_->PostTask(FROM_HERE,
53 base::Bind(OnRequestMessage, job.job_, msg));
63 URLRequestAutomationJob* job) {
68 DCHECK(requests_.end() == requests_.find(job->id()));
69 RequestJob request_job = { base::MessageLoop::current(), job };
    [all...]
  /external/chromium_org/net/socket_stream/
socket_stream_job_manager.cc 27 SocketStreamJob* job = new SocketStreamJob(); local
28 job->InitSocketStream(new SocketStream(url, delegate));
29 return job;
37 SocketStreamJob* job = found->second(url, delegate); local
38 if (job)
39 return job;
41 SocketStreamJob* job = new SocketStreamJob(); local
42 job->InitSocketStream(new SocketStream(url, delegate));
43 return job;
  /external/chromium_org/sandbox/win/tests/integration_tests/
integration_tests_test.cc 68 // Creates a job and tries to run a process inside it. The function can be
72 // JOB_OBJECT_LIMIT_BREAKAWAY_OK flag should be set on the job object created
77 HANDLE job = ::CreateJobObject(NULL, NULL); local
78 if (!job)
82 if (!::QueryInformationJobObject(job, JobObjectExtendedLimitInformation,
95 if (!::SetInformationJobObject(job, JobObjectExtendedLimitInformation,
99 if (!::AssignProcessToJobObject(job, ::GetCurrentProcess()))
112 // Terminate the job now.
113 ::TerminateJobObject(job, SBOX_TEST_SUCCEEDED);
267 // Running from inside job that allows us to escape from it should be ok
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-postbuild-fail.py 36 job = subprocess.Popen(['xcodebuild', '-version'], variable
39 out, err = job.communicate()
40 if job.returncode != 0:
42 raise Exception('Error %d running xcodebuild' % job.returncode)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RunInLocale.java 27 protected abstract T job(final Resources res); method in class:RunInLocale
30 * Execute {@link #job(Resources)} method in specified system locale exclusively.
34 * @return the value returned from {@link #job(Resources)}.
46 return job(res);
  /external/chromium/chrome/browser/printing/
print_job_manager.cc 47 // Wait for each job to finish.
49 PrintJob* job = current_jobs[i]; local
50 if (!job)
52 // Wait for 120 seconds for the print job to be spooled.
54 job->FlushJob(120000);
55 job->Stop();
61 void PrintJobManager::QueuePrinterQuery(PrinterQuery* job) {
63 DCHECK(job);
64 queued_queries_.push_back(make_scoped_refptr(job));
65 DCHECK(job->is_valid())
    [all...]
  /external/chromium/net/url_request/
url_request_filter.cc 122 URLRequestJob* job = NULL; local
130 job = i->second(request, scheme);
132 if (!job) {
137 job = i->second(request, scheme);
140 if (job) {
144 return job;
url_request_job_manager.cc 72 URLRequestJob* job = (*i)->MaybeIntercept(request); local
73 if (job)
74 return job;
83 URLRequestJob* job = i->second(request, scheme); local
84 if (job)
85 return job;
91 URLRequestJob* job = (kBuiltinFactories[i].factory)(request, scheme); local
92 DCHECK(job); // The built-in factories are not expected to fail!
93 return job;
118 URLRequestJob* job = (*i)->MaybeInterceptRedirect(request, location) local
138 URLRequestJob* job = (*i)->MaybeInterceptResponse(request); local
    [all...]
  /external/chromium/net/websockets/
websocket_throttle.cc 62 void WebSocketThrottle::PutInQueue(WebSocketJob* job) {
63 queue_.push_back(job);
64 const AddressList& address_list = job->address_list();
79 queue->push_back(job);
82 iter->second->push_back(job);
83 job->SetWaiting();
89 void WebSocketThrottle::RemoveFromQueue(WebSocketJob* job) {
94 if (*iter == job) {
102 const AddressList& address_list = job->address_list();
117 // Job may not be front of queue when job is closed early while waiting
137 WebSocketJob* job = *iter; local
    [all...]
  /external/chromium_org/sandbox/win/src/
job_unittest.cc 5 // This file contains unit tests for the job object.
8 #include "sandbox/win/src/job.h"
13 // Tests the creation and destruction of the job.
15 // Scope the creation of Job.
17 // Create the job.
18 Job job; local
19 ASSERT_EQ(ERROR_SUCCESS, job.Init(JOB_LOCKDOWN, L"my_test_job_name", 0));
21 // check if the job exists.
30 // Check if the job is destroyed when the object goes out of scope
42 Job job; local
74 Job job; local
95 Job job; local
117 Job job; local
125 Job job; local
160 Job job; local
    [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 {
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 48 CDBG_ERROR("%s: NULL current job frames or not matching job ID (%d, %d)",
54 CDBG_ERROR("%s: job %d, status=%d", __func__, jobId, status);
81 mm_jpeg_job_t job; local
92 memset(&job, 0, sizeof(job));
93 job.job_type = JPEG_JOB_TYPE_ENCODE;
94 job.encode_job.session_id = test_obj->current_jpeg_sess_id;
96 job.encode_job.rotation = 0;
99 job.encode_job.rotation = 90
    [all...]
  /external/chromium/chrome/browser/net/
url_request_slow_download_job.cc 51 URLRequestSlowDownloadJob* job = new URLRequestSlowDownloadJob(request); local
53 URLRequestSlowDownloadJob::kPendingRequests.push_back(job);
54 return job;
  /external/chromium/chrome/browser/policy/
device_management_service.cc 131 for (JobFetcherMap::iterator job(pending_jobs_.begin());
132 job != pending_jobs_.end();
133 ++job) {
134 delete job->first;
135 queued_jobs_.push_back(job->second);
145 void DeviceManagementService::AddJob(DeviceManagementJob* job) {
147 StartJob(job);
149 queued_jobs_.push_back(job);
152 void DeviceManagementService::RemoveJob(DeviceManagementJob* job) {
156 if (entry->second == job) {
190 DeviceManagementJob* job = entry->second; local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_whitebox_unittest.cc 68 const SyncerThread::SyncSessionJob& job) {
69 return syncer_thread_->DecideOnJob(job);
81 struct SyncerThread::SyncSessionJob job; local
82 job.purpose = purpose;
83 job.scheduled_start = TimeTicks::Now();
84 return DecideOnJob(job);
218 struct SyncerThread::SyncSessionJob job; local
219 job.purpose = SyncerThread::SyncSessionJob::CONFIGURATION;
220 job.scheduled_start = TimeTicks::Now();
221 job.is_canary_job = true
    [all...]
  /external/chromium/net/http/
http_stream_factory_impl.cc 41 std::set<const Job*> tmp_job_set;
62 Job* alternate_job = NULL;
67 new Job(this, session_, alternate_request_info, ssl_config, net_log);
72 Job* job = new Job(this, session_, request_info, ssl_config, net_log); local
73 request->AttachJob(job);
75 job->WaitFor(alternate_job);
77 // |alternate_job|, otherwise |alternate_job| will not notify |job|
83 // so starting |job| is always safe
96 Job* job = NULL; local
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.cc 14 Job::Job() {
17 Job::~Job() {
163 std::vector<Job>* list) {
185 std::vector<Job> job_list(jobs->GetSize());
187 base::DictionaryValue* job = NULL; local
188 jobs->GetDictionary(idx, &job);
189 if (!job->GetString("id", &job_list[idx].job_id) ||
190 !job->GetString("createTime", &job_list[idx].create_time) |
    [all...]

Completed in 573 milliseconds

1 2 3 4 5 6 7