/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_defconfig_patch.py | 37 def add_module(self, path, files, codetype):
41 self.find_file(new_path, files, codetype)
43 self.add_module(path=new_path, files=files, codetype=codetype)
44 return files
77 def find_file(self, path, files, codetype):
80 files.append(path)
85 return files
|
H A D | hdf_model_enable_operation.py | 198 for roots, dirs, files in os.walk(patch):
201 lambda x: x.split(split_sign)[-1] == endswitch, files))
203 files_list = list(filter(lambda x: x == endswitch, files))
|
H A D | hdf_add_handler.py | 160 # create files in the module under the adapter 276 files = [] 277 patch_list = defconfig_patch.add_module(config_path, files=files, codetype=None) 280 defconfig_list = defconfig_patch.add_module(config_path, files=files1, codetype=None) 289 # create user build.gn files
|
H A D | hdf_linux_scann.py | 89 for roots, dirs, files in os.walk(config_path):
90 for file_name in files:
117 for root_path, dirs, files in os.walk(path):
118 for file_name in files:
|
H A D | hdf_get_handler.py | 132 for root_path, dirs, files in os.walk(drv_dir): 133 for file_name in files:
|
/drivers/hdf_core/framework/tools/hdi-gen/test/unittest/ |
H A D | unit_test.py | 53 for files in common_files:
54 if not compare_file("{}{}".format(first_file_path, files), "{}{}.txt".format(second_file_path, files)):
55 print("file ", "{}{}".format(first_file_path, files), "{}{}.txt".format(second_file_path, files), \
|
/drivers/peripheral/audio/test/sample/tools/gen_cr_by_pr/ |
H A D | gen_cr_by_pr.py | 113 # Read the file diff from the files.json of the PR 116 path = f'{repo_name}{mix}files.json' 118 files = open(f'{repo_name}{mix}files.json', 'r', encoding='utf-8') 119 json_obj = json.loads(files.read()) 180 files_url = f'{pr}/files.json' 181 files_target_path = f'{repo_name}{mix}files.json' 187 print(f"��ȡ{repo_name}�ֿ��filesʧ��")
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | Generator.js | 122 mergeObj(files) { 124 for (let i in files) { 125 objList.push(files[i]);
|
H A D | ModifyNode.js | 35 ModifyNode.modifyName = function (files, root, node, name) { 45 ModifyNode.modifyNodeType = function (files, root, node, type) {
|
/drivers/hdf_core/framework/tools/hdi-gen/util/ |
H A D | options.cpp | 195 std::set<std::string> files = File::FindFiles(dir); in AddSourcesByDir() local 196 if (!files.empty()) { in AddSourcesByDir() 198 sourceFiles.insert(files.begin(), files.end()); in AddSourcesByDir() 260 Logger::E(TAG, "no idl files."); in CheckOptions() 286 " -p, --package <package name> Set package of idl files\n" in ShowUsage() 288 " --hash Generate hash info of idl files\n" in ShowUsage()
|
H A D | file.cpp | 298 std::set<std::string> files; in CreateParentDir() local 318 files.insert(filePath); in CreateParentDir() 330 return files; in CreateParentDir()
|
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/driver_add/ |
H A D | hdf_add_driver.py | 45 config_path, files=pat_files, codetype=None)
49 config_path, files=def_files, codetype=None)
144 files = []
146 config_path, files=files, codetype=None)
150 config_path, files=files1, codetype=None)
|
/drivers/peripheral/intelligent_voice/passthrough/engine/ |
H A D | intell_voice_engine_manager.cpp | 53 int32_t GetUploadFiles(int32_t maxNum, std::vector<UploadHdiFile> &files) override
|
/drivers/peripheral/intelligent_voice/hdi_service/engine/ |
H A D | intell_voice_engine_manager_impl.h | 68 int32_t GetUploadFiles(int32_t numMax, std::vector<UploadHdiFile> &files) override;
|
H A D | intell_voice_engine_manager_impl.cpp | 300 int32_t IntellVoiceEngineManagerImpl::GetUploadFiles(int32_t numMax, std::vector<UploadHdiFile> &files) in GetUploadFiles() argument 307 if (inst_->GetUploadFiles(numMax, files) != 0) { in GetUploadFiles()
|
/drivers/hdf_core/framework/tools/hc-gen/test/ |
H A D | update_case.py | 230 for root, dirs, files in list_dirs: 231 for file in files:
|
/drivers/peripheral/intelligent_voice/interfaces/ |
H A D | i_engine.h | 83 virtual int32_t GetUploadFiles(int32_t maxNum, std::vector<UploadHdiFile> &files) = 0;
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/ |
H A D | AttrEditor.js | 35 setFiles(files) {
36 this.files_ = files;
|