| /arkcompiler/toolchain/test/autotest/aw/ |
| D | application.py | 28 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 …]
|
| D | fport.py | 29 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/ |
| D | conftest.py | 35 '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 …]
|
| D | test_hot_reload_02.py | 103 Application.uninstall(self.config['bundle_name']) 152 pid = Application.get_pid(self.config['bundle_name'])
|
| D | test_hot_reload_01.py | 87 Application.uninstall(self.config['bundle_name']) 141 pid = Application.get_pid(self.config['bundle_name'])
|
| D | test_hot_reload_03.py | 89 Application.uninstall(self.config['bundle_name']) 158 pid = Application.get_pid(self.config['bundle_name'])
|
| D | test_worker_profiler_heap_sampling.py | 62 Application.uninstall(self.config['bundle_name']) 84 Application.attach(self.config['bundle_name'])
|
| D | test_worker_profiler_heap_dump.py | 62 Application.uninstall(self.config['bundle_name']) 84 Application.attach(self.config['bundle_name'])
|
| D | test_worker_profiler_allocation_01.py | 64 Application.uninstall(self.config['bundle_name']) 86 Application.attach(self.config['bundle_name'])
|
| D | test_worker_profiler_launch.py | 65 Application.uninstall(self.config['bundle_name'])
|
| D | test_main_exception_breakpoint_03.py | 72 Application.uninstall(self.config['bundle_name'])
|
| D | test_attach_task_pool.py | 86 Application.uninstall(self.config['bundle_name']) 107 Application.attach(self.config['bundle_name'])
|
| /arkcompiler/toolchain/test/autotest/ |
| D | README.md | 125 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/ |
| D | hisysevent.yaml | 18 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/ |
| D | abc2program_compiler.h | 41 void SetBundleName(std::string bundle_name) in SetBundleName() argument 43 bundle_name_ = bundle_name; in SetBundleName()
|
| /arkcompiler/runtime_core/abc2program/common/ |
| D | abc2program_entity_container.h | 35 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/ |
| D | config.yaml | 52 # -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
|
| D | options.py | 102 self.bundle_name = '' 201 task.bundle_name = hap['bundle_name']
|
| D | utils.py | 189 …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/ |
| D | aot_compiler_stats.cpp | 47 "BUNDLE_NAME", GetBundleName(), in SendSysEvent()
|
| /arkcompiler/ets_runtime/ecmascript/jit/ |
| D | jit_dfx.cpp | 174 "BUNDLE_NAME", ConvertToStdString(GetBundleName()), in SendJitStatsEvent() 214 "BUNDLE_NAME", ConvertToStdString(GetBundleName()), in SendJitBlockUIEvent()
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/ohos/ |
| D | dfx_hisys_event.cpp | 38 "BUNDLE_NAME", PGOProfilerManager::GetInstance()->GetBundleName(), in SendLongGCEvent()
|
| /arkcompiler/jsvm/src/platform/ |
| D | platform_ohos.cpp | 204 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "BUNDLE_NAME", bundleName); in WriteHisysevent()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | gc_key_stats.cpp | 91 "BUNDLE_NAME", PGOProfilerManager::GetInstance()->GetBundleName(), in SendSysEvent()
|
| /arkcompiler/ets_runtime/test/ |
| D | runtest.py | 508 bundle_name = get_bundle_name(sign_dir) 527 data_load['bundle-info']['bundle-name'] = bundle_name
|