Home
last modified time | relevance | path

Searched full:bundle_name (Results 1 – 25 of 48) sorted by relevance

12

/arkcompiler/toolchain/test/autotest/aw/
Dapplication.py28 def stop(cls, bundle_name): argument
29 stop_cmd = ['hdc', 'shell', 'aa', 'force-stop', bundle_name]
36 def uninstall(cls, bundle_name): argument
37 uninstall_cmd = ['hdc', 'uninstall', bundle_name]
52 def start(cls, bundle_name, start_mode=None): argument
53 start_cmd = (['hdc', 'shell', 'aa', 'start', '-a', 'EntryAbility', '-b', bundle_name] +
61 def get_pid(cls, bundle_name): argument
66 if bundle_name in line:
67 logging.info(f'pid of {bundle_name}: ' + line)
72 def launch_application(cls, bundle_name, hap_path, start_mode=None): argument
[all …]
Dfport.py29 def fport_connect_server(cls, port, pid, bundle_name): argument
31 cmd = ['hdc', 'fport', f'tcp:{port}', f'ark:{pid}@{bundle_name}']
/arkcompiler/toolchain/test/autotest/scenario_test/
Dconftest.py35 'bundle_name': 'com.example.mainInstance01',
54 'bundle_name': 'com.example.mainInstance02',
73 'bundle_name': 'com.example.mainInstance03',
92 'bundle_name': 'com.example.mainInstance04',
111 'bundle_name': 'com.example.multiWorker08',
131 'bundle_name': 'com.example.multiWorker07',
151 'bundle_name': 'com.example.multiWorker06',
171 'bundle_name': 'com.example.multiWorker05',
191 'bundle_name': 'com.example.multiWorker04',
211 'bundle_name': 'com.example.multiWorker03',
[all …]
Dtest_hot_reload_02.py103 Application.uninstall(self.config['bundle_name'])
152 pid = Application.get_pid(self.config['bundle_name'])
Dtest_hot_reload_01.py87 Application.uninstall(self.config['bundle_name'])
141 pid = Application.get_pid(self.config['bundle_name'])
Dtest_hot_reload_03.py89 Application.uninstall(self.config['bundle_name'])
158 pid = Application.get_pid(self.config['bundle_name'])
Dtest_worker_profiler_heap_sampling.py62 Application.uninstall(self.config['bundle_name'])
84 Application.attach(self.config['bundle_name'])
Dtest_worker_profiler_heap_dump.py62 Application.uninstall(self.config['bundle_name'])
84 Application.attach(self.config['bundle_name'])
Dtest_worker_profiler_allocation_01.py64 Application.uninstall(self.config['bundle_name'])
86 Application.attach(self.config['bundle_name'])
Dtest_worker_profiler_launch.py65 Application.uninstall(self.config['bundle_name'])
Dtest_main_exception_breakpoint_03.py72 Application.uninstall(self.config['bundle_name'])
Dtest_attach_task_pool.py86 Application.uninstall(self.config['bundle_name'])
107 Application.attach(self.config['bundle_name'])
/arkcompiler/toolchain/test/autotest/
DREADME.md125 bundle_name = 'com.example.worker'
130 'bundle_name': bundle_name,
134 pid = Application.launch_application(config['bundle_name'], config['hap_path'], start_mode='-D')
140 Fport.fport_connect_server(config['connect_server_port'], config['pid'], config['bundle_name'])
/arkcompiler/ets_runtime/
Dhisysevent.yaml18 BUNDLE_NAME: {type: STRING, desc: application bundle name}
37 BUNDLE_NAME: {type: STRING, desc: application bundle name}
47 BUNDLE_NAME: {type: STRING, desc: bundleName}
88 BUNDLE_NAME: {type: STRING, desc: Application bundle name}
102 BUNDLE_NAME: {type: STRING, desc: Application bundle name}
/arkcompiler/runtime_core/abc2program/
Dabc2program_compiler.h41 void SetBundleName(std::string bundle_name) in SetBundleName() argument
43 bundle_name_ = bundle_name; in SetBundleName()
/arkcompiler/runtime_core/abc2program/common/
Dabc2program_entity_container.h35 uint32_t class_id, std::string bundle_name) in Abc2ProgramEntityContainer() argument
37 current_class_id_(class_id), bundle_name_(bundle_name) {} in Abc2ProgramEntityContainer()
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dconfig.yaml52 # -bundle_name: the bundle name of the project.
107 bundle_name: com.example.stagedemoemptyability
136 bundle_name: com.example.idefademoemptyability
165 bundle_name: com.example.idecompatible8demoemptyability
194 bundle_name: com.example.idejsdemoemptyability
225 bundle_name: com.example.out
Doptions.py102 self.bundle_name = ''
201 task.bundle_name = hap['bundle_name']
Dutils.py189 …run_cmd(['hdc', 'shell', 'aa', 'start', '-a', f'{task.ability_name}', '-b', f'{task.bundle_name}'])
197 run_cmd(['hdc', 'shell', 'aa', 'force-stop', f'{task.bundle_name}'])
198 run_cmd(['hdc', 'shell', 'bm', 'uninstall', '-n', f'{task.bundle_name}'])
/arkcompiler/ets_runtime/ecmascript/compiler/
Daot_compiler_stats.cpp47 "BUNDLE_NAME", GetBundleName(), in SendSysEvent()
/arkcompiler/ets_runtime/ecmascript/jit/
Djit_dfx.cpp174 "BUNDLE_NAME", ConvertToStdString(GetBundleName()), in SendJitStatsEvent()
214 "BUNDLE_NAME", ConvertToStdString(GetBundleName()), in SendJitBlockUIEvent()
/arkcompiler/ets_runtime/ecmascript/platform/unix/ohos/
Ddfx_hisys_event.cpp38 "BUNDLE_NAME", PGOProfilerManager::GetInstance()->GetBundleName(), in SendLongGCEvent()
/arkcompiler/jsvm/src/platform/
Dplatform_ohos.cpp204 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "BUNDLE_NAME", bundleName); in WriteHisysevent()
/arkcompiler/ets_runtime/ecmascript/mem/
Dgc_key_stats.cpp91 "BUNDLE_NAME", PGOProfilerManager::GetInstance()->GetBundleName(), in SendSysEvent()
/arkcompiler/ets_runtime/test/
Druntest.py508 bundle_name = get_bundle_name(sign_dir)
527 data_load['bundle-info']['bundle-name'] = bundle_name

12