Home
last modified time | relevance | path

Searched refs:patch (Results 1 – 25 of 49) sorted by relevance

12

/arkcompiler/ets_runtime/test/quickfix/multi_patch/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 print patch:100 - 200
20 QuickFix start unload patch
21 QuickFix unload patch success
23 QuickFix start load patch
24 QuickFix load patch success
28 QuickFix start unload patch
29 QuickFix unload patch success
31 QuickFix start load patch
[all …]
/arkcompiler/ets_runtime/test/quickfix/closure/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 patch: -1
18 patch: 2
19 patch: 3
20 patch: 4
21 patch: 12
22 patch: 13
23 patch: 14
26 QuickFix start unload patch
[all …]
/arkcompiler/ets_runtime/test/quickfix/class_mem_var/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 print patch str :patch
18 print patch new :a
19 print patch str :base
20 print patch new :undefined
23 QuickFix start unload patch
24 QuickFix unload patch success
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dquick_fix_loader.cpp246 MethodLiteral *patch = item.second; in ReplaceMethod() local
247 auto methodId = patch->GetMethodId(); in ReplaceMethod()
288 ReplaceMethodInner(thread, baseMethod, patch, patchConstpool.GetTaggedValue()); in ReplaceMethod()
314 ReplaceMethodInner(thread, baseMethod, patch, patchConstpool.GetTaggedValue()); in ReplaceMethod()
534 JSTaggedValue patch; in CheckIsModuleMismatch() local
538 patch = patchModule->GetImportEntries(); in CheckIsModuleMismatch()
540 if (CheckImportEntriesMismatch(thread, patch, base)) { in CheckIsModuleMismatch()
545 patch = patchModule->GetLocalExportEntries(); in CheckIsModuleMismatch()
547 if (CheckLocalExportEntriesMismatch(thread, patch, base)) { in CheckIsModuleMismatch()
552 patch = patchModule->GetIndirectExportEntries(); in CheckIsModuleMismatch()
[all …]
Dquick_fix_loader.h72 … static bool CheckImportEntriesMismatch(JSThread *thread, JSTaggedValue patch, JSTaggedValue base);
73 …static bool CheckLocalExportEntriesMismatch(JSThread *thread, JSTaggedValue patch, JSTaggedValue b…
74 …static bool CheckIndirectExportEntriesMismatch(JSThread *thread, JSTaggedValue patch, JSTaggedValu…
75 …static bool CheckStarExportEntriesMismatch(JSThread *thread, JSTaggedValue patch, JSTaggedValue ba…
76 static bool CheckImportEntryMismatch(ImportEntry *patch, ImportEntry *base);
77 static bool CheckLocalExportEntryMismatch(LocalExportEntry *patch, LocalExportEntry *base);
78 …static bool CheckIndirectExportEntryMismatch(IndirectExportEntry *patch, IndirectExportEntry *base…
79 static bool CheckStarExportEntryMismatch(StarExportEntry *patch, StarExportEntry *base);
Dquick_fix_manager.cpp133 MethodLiteral *patch = item.second; in IsQuickFixCausedException() local
134 auto methodId = patch->GetMethodId(); in IsQuickFixCausedException()
/arkcompiler/ets_runtime/test/quickfix/import_export/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 print patch: 100
18 patch foo
21 QuickFix start unload patch
22 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/print_string/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 patch foo
18 anonymous: patch A
21 QuickFix start unload patch
22 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/global_var/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 patch old global var :100
18 patch new global var :undefined
21 QuickFix start unload patch
22 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/class_mem_func/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 print base patch
20 QuickFix start unload patch
21 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/class_name/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
17 print patch str
20 QuickFix start unload patch
21 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/global_func/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
20 QuickFix start unload patch
21 QuickFix unload patch success
/arkcompiler/ets_runtime/test/quickfix/class_inheritance/
Dexpect_output.txt15 QuickFix start load patch
16 QuickFix load patch success
20 QuickFix start unload patch
21 QuickFix unload patch success
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
DBUILD.gn21 "patch/index",
44 "quickfix/multi_file/patch/index.js",
45 "quickfix/multi_file/patch/module.js",
50 _patch_merge_file_ = "$target_out_dir/multi_file/patch/merge.txt"
53 _patch_abc_path_ = "$target_out_dir/multi_file/patch/merge.abc"
80 "//arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/patch/"),
/arkcompiler/runtime_core/scripts/
Dinstall-third-party79 for patch in "${patches[@]}"
81 git apply --ignore-space-change --check "$patch"
82 git am --ignore-space-change "$patch"
/arkcompiler/ets_runtime/test/
Dtest_helper.gni715 "./${_target_name_}/patch/base.js",
716 "./${_target_name_}/patch/module.js",
720 foreach(patch, _extra_patches_) {
722 "./${_target_name_}/${patch}/base.js",
723 "./${_target_name_}/${patch}/module.js",
734 _patch_merge_file_ = "$target_out_dir/${_target_name_}/patch.txt"
739 _patch_abc_path_ = "$target_out_dir/${_target_name_}/patch/merge.abc"
797 "//arkcompiler/ets_runtime/test/quickfix/${_target_name_}/patch/"),
868 foreach(patch, _extra_patches_) {
869 _merge_file_ = "$target_out_dir/${_target_name_}/${patch}.txt"
[all …]
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-export-1/
Dbase_mod.js23 v2 as patch, // modify export variable's name from 'base' to 'patch'
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-export-1/
Dbase_mod.js23 v2 as patch, // modify export variable's name from 'base' to 'patch'
/arkcompiler/runtime_core/docs/
Druntime-debug-api.md9 1. Runtime doesn't patch apps' bytecode on the fly. Instead of it notification about changing bytec…
15 1. As some low-end targets can store bytecode in ROM, runtime cannot patch app's bytecode on the fl…
/arkcompiler/ets_runtime/test/quickfix/check_import/
Dexpect_output.txt15 QuickFix start load patch
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-class-1/
Dexpected.txt15 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-lexenv-3/
Dexpected.txt15 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-lexenv-2/
Dexpected.txt15 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-lexenv-2/
Dexpected.txt15 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-import/
Dexpected.txt15 [Patch] Found unsupported change in file, will not generate patch!

12