Home
last modified time | relevance | path

Searched refs:job (Results 1 - 25 of 51) sorted by relevance

123

/arkcompiler/ets_frontend/test/scripts/
H A Dentry.py35 job(['python', './utils/flash_image/burn_image.py'])
37 job(['python', './utils/commit_message/get_commit_message.py'])
51 def job(cmd): function
59 job(os.path.join(".", "auto_xts_test", "run.bat"))
60 job(f'python {os.path.join(".", "sdk_test", "entry.py")}')
61 job(f'python {os.path.join(".", "performance_test", "performance_entry.py")}')
62 job(f'python {os.path.join(".", "utils", "send_email", "send_email.py")}')
/arkcompiler/ets_runtime/ecmascript/
H A Djs_finalization_registry.cpp143 JSHandle<job::MicroJobQueue> &job, JSHandle<JSFunction> &func) in DealCallBackOfMap()
153 // if WeakRefTarget have been gc, set callback to job and delete in DealCallBackOfMap()
157 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, func, argv); in DealCallBackOfMap()
176 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in CleanupFinalizationRegistry() local
188 // if WeakRefTarget have been gc, set callback to job and delete in CleanupFinalizationRegistry()
192 job in CleanupFinalizationRegistry()
142 DealCallBackOfMap(JSThread *thread, JSHandle<CellRecordVector> &cellVect, JSHandle<job::MicroJobQueue> &job, JSHandle<JSFunction> &func) DealCallBackOfMap() argument
[all...]
H A Djs_promise.cpp161 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in TriggerPromiseReactions() local
172 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, promiseReactionsJob, arguments); in TriggerPromiseReactions()
/arkcompiler/runtime_core/static_core/verification/absint/
H A Dverification_context.h25 #include "verification/jobs/job.h"
41 VerificationContext(TypeSystem *typeSystem, Job const *job, Type methodClassType) in VerificationContext() argument
43 job_ {job},
46 plugin_ {plugin::GetLanguagePlugin(job->JobMethod()->GetClass()->GetSourceLang())}
48 Method const *method = job->JobMethod();
H A Dabsint.h31 VerificationContext PrepareVerificationContext(TypeSystem *typeSystem, Job const *job);
H A Dabsint.cpp23 #include "verification/jobs/job.h"
59 VerificationContext PrepareVerificationContext(TypeSystem *typeSystem, Job const *job) in PrepareVerificationContext() argument
61 auto *method = job->JobMethod(); in PrepareVerificationContext()
67 VerificationContext verifCtx {typeSystem, job, methodClassType}; in PrepareVerificationContext()
/arkcompiler/ets_frontend/es2panda/util/
H A DworkerQueue.cpp20 void WorkerJob::DependsOn(WorkerJob *job) in DependsOn() argument
22 job->dependants_.push_back(this); in DependsOn()
83 auto &job = *(jobs_[jobsCount_]); in Consume() local
88 job.Run(); in Consume()
H A DworkerQueue.h36 void DependsOn(WorkerJob *job);
/arkcompiler/ets_runtime/ecmascript/jobs/
H A Dpending_job.h30 namespace panda::ecmascript::job { namespace in panda::ecmascript
45 JSHandle<JSTaggedValue> job(thread, pendingJob->GetJob()); in ExecutePendingJob()
46 ASSERT(job->IsCallable()); in ExecutePendingJob()
50 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, job, undefined, undefined, argsLength); in ExecutePendingJob()
76 } // namespace panda::ecmascript::job
H A Dhitrace_scope.h27 namespace panda::ecmascript::job { namespace in panda::ecmascript
34 EnqueueJobScope(const JSHandle<PendingJob> &pendingJob, job::QueueType queueType);
68 } // namespace panda::ecmascript::job
H A Dmicro_job_queue.h25 namespace panda::ecmascript::job { namespace in panda::ecmascript
37 const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv);
48 } // namespace panda::ecmascript::job
H A Dmicro_job_queue.cpp24 namespace panda::ecmascript::job { namespace in panda::ecmascript
33 const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv) in EnqueueJob()
36 // 2. Assert: job is the name of a Job. in EnqueueJob()
37 // 3. Assert: arguments is a List that has the same number of elements as the number of parameters required by job. in EnqueueJob()
42 JSHandle<PendingJob> pendingJob(factory->NewPendingJob(job, argv)); in EnqueueJob()
90 } // namespace panda::ecmascript::job
32 EnqueueJob(JSThread *thread, JSHandle<MicroJobQueue> jobQueue, QueueType queueType, const JSHandle<JSFunction> &job, const JSHandle<TaggedArray> &argv) EnqueueJob() argument
/arkcompiler/toolchain/build/misc/mac/
H A Dfind_sdk.py57 job = subprocess.Popen(['xcode-select', '-print-path'],
60 out, err = job.communicate()
61 if job.returncode != 0:
64 raise Exception('Error %d running xcode-select' % job.returncode)
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A DcompileJob.cpp33 void CompileJob::DependsOn(CompileJob *job) in DependsOn() argument
35 job->dependant_ = this; in DependsOn()
H A DcompileQueue.cpp90 auto &job = jobs_[jobsCount_]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Consume() local
95 job.Run(); in Consume()
H A DcompileJob.h61 void DependsOn(CompileJob *job);
/arkcompiler/ets_frontend/test/scripts/utils/flash_image/
H A Dburn_image.py31 def job(cmd): function
83 job('hdc shell reboot bootloader')
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H A Dbuiltins_finalization_registry_test.cpp179 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
215 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
252 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
286 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
336 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
367 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
395 job::MicroJobQueue::ExecutePendingJob(thread, vm->GetJSThread()->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
H A Dbuiltins_promise_test.cpp376 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
446 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
493 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
535 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
575 job::MicroJobQueue::ExecutePendingJob(thread, microJobQueue); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/scripts/code_style/
H A Dcode_style_check.py98 for job in jobs:
99 if not job.get():
H A Ddoxygen_style_check.py243 for job in jobs:
244 if not job:
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_finalization_registry_test.cpp185 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in RegisterUnRegisterTestCommon()
221 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in RegisterUnRegisterTestCommonTwoTarget()
290 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
336 job::MicroJobQueue::ExecutePendingJob(thread, thread->GetCurrentEcmaContext()->GetMicroJobQueue()); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/verification/
H A Dpublic.cpp23 #include "verification/jobs/job.h"
212 Job job {service, method, verifMethodOptions}; in Verify()
213 bool result = job.DoChecks(processor->GetTypeSystem()); in Verify()
/arkcompiler/ets_runtime/ecmascript/jobs/tests/
H A Dmicro_job_queue_test.cpp28 using MicroJobQueue = ecmascript::job::MicroJobQueue;
29 using PendingJob = ecmascript::job::PendingJob;
30 using QueueType = job::QueueType;
94 * function to enter the "function" and TaggedArray object into the promise job queueof the MicroJobQueue,then
130 * function to enter the "function" and TaggedArray object into the script job queue of the MicroJobQueue,then
177 * value and enter "function" and TaggedArray object into the promise job queue.Calling "ExecutePendingJob"
219 * value and enter the "function" and TaggedArray object into the script job queue and promise job queue.
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_promise_handler.cpp93 JSHandle<job::MicroJobQueue> job = thread->GetCurrentEcmaContext()->GetMicroJobQueue(); in Resolve() local
94 job::MicroJobQueue::EnqueueJob(thread, job, job::QueueType::QUEUE_PROMISE, promiseResolveThenableJob, arguments); in Resolve()

Completed in 11 milliseconds

123