HomeSort by relevance Sort by last modified time
    Searched refs:job (Results 101 - 125 of 383) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/lge/mako/camera/QCamera/stack/mm-jpeg-interface/src/
mm_jpeg.c 67 /* special queue functions for job queue */
254 int32_t mm_jpeg_omx_config_user_preference(mm_jpeg_obj* my_obj, mm_jpeg_encode_job* job)
262 map_jpeg_format(job->encode_parm.buf_info.src_imgs.src_img[JPEG_SRC_IMAGE_TYPE_MAIN].color_format);
263 if (job->encode_parm.buf_info.src_imgs.src_img_num > 1) {
265 map_jpeg_format(job->encode_parm.buf_info.src_imgs.src_img[JPEG_SRC_IMAGE_TYPE_THUMB].color_format);
276 int32_t mm_jpeg_omx_config_thumbnail(mm_jpeg_obj* my_obj, mm_jpeg_encode_job* job)
284 &(job->encode_parm.buf_info.src_imgs.src_img[JPEG_SRC_IMAGE_TYPE_THUMB]);
382 int32_t mm_jpeg_omx_config_main(mm_jpeg_obj* my_obj, mm_jpeg_encode_job* job)
386 &(job->encode_parm.buf_info.src_imgs.src_img[JPEG_SRC_IMAGE_TYPE_MAIN]);
420 int32_t mm_jpeg_omx_config_common(mm_jpeg_obj* my_obj, mm_jpeg_encode_job* job)
500 mm_jpeg_encode_job* job = &job_entry->job.encode_job; local
    [all...]
mm_jpeg_interface.c 68 static int32_t mm_jpeg_intf_start_job(uint32_t client_hdl, mm_jpeg_job* job, uint32_t* jobId)
73 NULL == job ||
75 CDBG_ERROR("%s: invalid parameters for client_hdl, job or jobId", __func__);
87 rc = mm_jpeg_start_job(g_jpeg_obj, client_hdl, job, jobId);
  /external/chromium_org/components/policy/core/common/cloud/
device_management_service.h 37 // Describes the job type.
56 // Functions for configuring the job. These should only be called before
57 // Start()ing the job, but never afterwards.
65 // A job may automatically retry if it fails due to a temporary condition, or
68 // happens, so that the job's owner can customize the retry request before
72 // Starts the job. |callback| will be invoked on completion.
85 // Fires the job, to be filled in by implementations.
132 // Creates a new device management request job. Ownership is transferred to
160 // Starts a job.
161 void StartJob(DeviceManagementRequestJobImpl* job);
    [all...]
  /external/chromium_org/remoting/host/win/
wts_session_process_delegate.cc 81 // Drains the completion port queue to make sure that all job object
88 // Creates and initializes the job object that will sandbox the launched child
90 void InitializeJob(scoped_ptr<base::win::ScopedHandle> job);
92 // Notified that the job object initialization is complete.
93 void InitializeJobCompleted(scoped_ptr<base::win::ScopedHandle> job);
95 // Called when the number of processes running in the job reaches zero.
104 // The task runner serving job object notifications.
120 // The job object used to control the lifetime of child processes.
176 ScopedHandle job; local
177 job.Set(CreateJobObject(NULL, 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...]
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
ConstraintTest.java 19 import android.app.job.JobScheduler;
  /device/moto/shamu/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);
85 mm_jpeg_job_t job; local
96 memset(&job, 0, sizeof(job));
97 job.job_type = JPEG_JOB_TYPE_ENCODE;
98 job.encode_job.session_id = test_obj->current_jpeg_sess_id;
102 job.encode_job.rotation = 0;
104 job.encode_job.rotation = 270
    [all...]
  /external/chromium_org/content/browser/download/
mhtml_generation_manager.h 49 class Job;
69 // Called on the UI thread when a job has been processed (successfully or
70 // not). Closes the file and removes the job from the job map.
74 // Creates an register a new job.
77 // Called when the render process connected to a job exits.
78 void RenderProcessExited(Job* job);
80 typedef std::map<int, Job*> IDToJobMap;
  /external/chromium_org/content/browser/service_worker/
service_worker_controllee_request_handler_unittest.cc 105 scoped_refptr<net::URLRequestJob> job = local
108 static_cast<ServiceWorkerURLRequestJob*>(job.get());
155 scoped_refptr<net::URLRequestJob> job = local
158 static_cast<ServiceWorkerURLRequestJob*>(job.get());
service_worker_unregister_job.h 37 // Registers a callback to be called when the job completes (whether
44 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE;
  /external/chromium_org/extensions/browser/
content_hash_fetcher.h 61 // Callback for when a job getting content hashes has completed.
62 void JobFinished(ContentHashFetcherJob* job);
content_hash_fetcher.cc 61 // Cancels this job, which will attempt to stop I/O operations sooner than
62 // just waiting for the entire job to complete. Safe to call from any thread.
65 // Checks whether this job has been cancelled. Safe to call from any thread.
68 // Returns whether this job was successful (we have both verified contents
69 // and computed hashes). Even if the job was a success, there might have been
106 // Callback for the job to write the verified contents to the filesystem.
147 // Whether this job succeeded.
444 // Just let the existing job keep running.
447 // Kill the existing non-force job, so we can start a new one below.
461 ContentHashFetcherJob* job local
    [all...]
  /external/chromium_org/net/quic/crypto/
channel_id_chromium.h 48 class Job;
49 typedef std::set<Job*> JobSet;
51 void OnJobComplete(Job* job);
proof_verifier_chromium.h 73 class Job;
74 typedef std::set<Job*> JobSet;
76 void OnJobComplete(Job* job);
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...]
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier.cc 490 CertVerifierJob* job; local
497 job = j->second;
508 job = new CertVerifierJob(
512 delete job;
519 inflight_.insert(std::make_pair(key, job));
522 first_job_ = job;
528 job->AddRequest(request);
599 CertVerifierJob* job = j->second; local
602 if (first_job_ == job) {
607 job->HandleResult(cached_result, is_first_job)
    [all...]
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3PostProc.cpp 223 * DESCRIPTION: function to prepare encoding job information
372 ALOGE("%s: No memory for jpeg job", __func__);
421 ALOGV("%s: meta queue is not empty, do next job", __func__);
432 ALOGE("%s: No memory for jpeg job", __func__);
466 ALOGV("%s: pp queue is not empty, do next job", __func__);
509 qcamera_pp_data_t *job = (qcamera_pp_data_t *)m_ongoingPPQ.dequeue(); local
511 if (job == NULL || job->src_frame == NULL) {
512 ALOGE("%s: Cannot find reprocess job", __func__);
519 ALOGE("%s: No memory for jpeg job", __func__)
555 qcamera_jpeg_data_t * job = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
events_view.css 67 #events-view-source-list-tbody .source-connect-job {
71 #events-view-source-list-tbody .source-host-resolver-impl-job,
101 #events-view-source-list-tbody .source-ipv6-probe-job {
  /external/chromium_org/net/url_request/
url_request_file_job_unittest.cc 63 virtual void OnJobCreated(URLRequestFileJobWithCallbacks* job) = 0;
76 URLRequestFileJobWithCallbacks* job = new URLRequestFileJobWithCallbacks( variable
81 observer_->OnJobCreated(job);
82 return job;
119 virtual void OnJobCreated(URLRequestFileJobWithCallbacks* job) OVERRIDE {
120 jobs_.push_back(job);
155 // runs a URLRequestFileJobWithCallbacks job to get the contents out of it,
  /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...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3PostProc.cpp 246 * DESCRIPTION: function to prepare encoding job information
334 * DESCRIPTION: function to prepare encoding job information
472 CDBG("%s: meta queue is not empty, do next job", __func__);
516 ALOGE("%s: No memory for jpeg job", __func__);
553 CDBG("%s: pp queue is not empty, do next job", __func__);
556 CDBG("%s: pp queue is empty, not calling do next job", __func__);
621 qcamera_hal3_pp_data_t *job = (qcamera_hal3_pp_data_t *)m_ongoingPPQ.dequeue(); local
623 if (job == NULL || ((NULL == job->src_frame) && (NULL == job->fwk_src_frame)))
681 qcamera_hal3_jpeg_data_t * job = NULL; local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3PostProc.cpp 242 * DESCRIPTION: function to prepare encoding job information
376 ALOGV("%s: meta queue is not empty, do next job", __func__);
385 ALOGE("%s: No memory for jpeg job", __func__);
419 ALOGI("%s: pp queue is not empty, do next job", __func__);
422 ALOGI("%s: pp queue is empty, not calling do next job", __func__);
487 qcamera_pp_data_t *job = (qcamera_pp_data_t *)m_ongoingPPQ.dequeue(); local
490 if (job == NULL || job->src_frame == NULL) {
491 ALOGE("%s: Cannot find reprocess job", __func__);
502 ALOGE("%s: No memory for jpeg job", __func__)
540 qcamera_jpeg_data_t * job = NULL; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_test.c 79 mm_jpeg_job_t job; member in struct:__anon2835
171 mm_jpeg_encode_job_t *p_job_params = &p_obj->job.encode_job;
275 &jpeg_obj.job.encode_job.session_id);
276 if (jpeg_obj.job.encode_job.session_id == 0) {
282 jpeg_obj.job.job_type = JPEG_JOB_TYPE_ENCODE;
283 rc = jpeg_obj.ops.start_job(&jpeg_obj.job, &jpeg_obj.job_id[i]);
298 jpeg_obj.ops.destroy_session(jpeg_obj.job.encode_job.session_id);
  /device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_test.c 79 mm_jpeg_job_t job; member in struct:__anon3342
171 mm_jpeg_encode_job_t *p_job_params = &p_obj->job.encode_job;
275 &jpeg_obj.job.encode_job.session_id);
276 if (jpeg_obj.job.encode_job.session_id == 0) {
282 jpeg_obj.job.job_type = JPEG_JOB_TYPE_ENCODE;
283 rc = jpeg_obj.ops.start_job(&jpeg_obj.job, &jpeg_obj.job_id[i]);
298 jpeg_obj.ops.destroy_session(jpeg_obj.job.encode_job.session_id);
  /external/chromium_org/chrome/browser/chromeos/drive/
job_scheduler.cc 24 // throttling or server error. The delay before retrying a job is shared among
213 JobEntry* job = job_map_.Lookup(job_id); local
214 if (job) {
215 if (job->job_info.state == STATE_RUNNING) {
216 // If the job is running an HTTP request, cancel it via |cancel_callback|
219 if (!job->cancel_callback.is_null())
220 job->cancel_callback.Run();
222 AbortNotRunningJob(job, google_apis::GDATA_CANCELLED);
698 JobEntry* job = new JobEntry(type); local
699 job->job_info.job_id = job_map_.Add(job); // Takes the ownership of |job|
740 JobEntry* job = job_map_.Lookup(jobs[i]); local
    [all...]

Completed in 2677 milliseconds

1 2 3 45 6 7 8 91011>>