/developtools/ace_js2bundle/ace-loader/src/ |
H A D | genBin-plugin.js | 9 * Unless required by applicable law or agreed to in writing, software 81 console.error('\u001b[31m', `Failed to convert file ${jsBundleFile} to bin. ${output} is lost`, '\u001b[39m') 98 console.error('\u001b[31m', `Failed to convert file ${inputPath} to bin`, '\u001b[39m') 104 console.error('\u001b[31m', `Failed to convert file ${inputPath} to bin. ${inputPath} is lost`, '\u001b[39m') 120 console.error('\u001b[31m', `Failed to clean file ${filePath}.`, '\u001b[39m')
|
H A D | gen-abc.js | 9 * Unless required by applicable law or agreed to in writing, software 36 console.debug(red, `ERROR Failed to convert file ${input} to abc. Error message: ${e}`, reset);
|
H A D | genAbc-plugin.js | 9 * Unless required by applicable law or agreed to in writing, software 210 console.debug(red, `ERROR Failed to convert file ${jsBundleFile} to bin. ${output} is lost`, reset); 279 console.debug(red, `ERROR failed to generate abc. Error message: ${e} `, reset); 452 Please make sure switch to non-root user before runing "npm install" for safity requirements and try re-run "npm install" under ${arkEntryPath}`, reset); 552 `${maxFilePathLength()}. Please try moving the project folder to avoid deeply nested file path and try again`); 590 console.debug(red, "ERROR failed to execute es2abc", reset); 609 console.debug(red, `ERROR failed to generate abc with filesInfo ${filesInfoPath}. Error message: ${e} `, reset); 768 logger.error(red, `ArkTS:ERROR Failed to write bundle build info.`, reset);
|
/developtools/integration_verification/tools/fotff/pkg/gitee_common/ |
H A D | steps_ci.go | 9 * Unless required by applicable law or agreed to in writing, software 55 func (m *Manager) stepsFromCI(from, to string) (pkgs []string, err error) { 60 endTime, err := parseTime(to) 67 func (m *Manager) getAllStepsFromTags(from, to time.Time) (pkgs []string, err error) { 68 tags, err := m.getAllTags(from, to) 82 func (m *Manager) getAllTags(from, to time.Time) (ret []*Tag, err error) { 91 EndTime: to.Local().Format("2006-01-02"), 116 if date.After(from) && date.Before(to) {
|
H A D | common.go | 9 * Unless required by applicable law or agreed to in writing, software 95 // Flash function implements pkg.Manager. Flash images in the 'pkg' directory to the given device. 101 func (m *Manager) Steps(from, to string) (pkgs []string, err error) { 102 if from == to { 103 return nil, fmt.Errorf("steps err: 'from' %s and 'to' %s are the same", from, to) 105 if c, found := utils.CacheGet(fmt.Sprintf("%s_steps", m.Component), from+"__to__"+to); found { 106 logrus.Infof("steps from %s to %s are cached", from, to) 110 if pkgs, err = m.stepsFromGitee(from, to); er [all...] |
H A D | steps_gitee.go | 9 * Unless required by applicable law or agreed to in writing, software 52 func (m *Manager) stepsFromGitee(from, to string) (pkgs []string, err error) { 53 updates, err := m.getRepoUpdates(from, to) 61 endTime, err := parseTime(to) 65 logrus.Infof("find %d repo updates from %s to %s", len(updates), from, to) 70 logrus.Infof("find total %d steps from %s to %s", len(steps), from, to) 85 func (m *Manager) getRepoUpdates(from, to string) (updates []vcs.ProjectUpdate, err error) { 90 m2, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, to, "manifest_ta [all...] |
/developtools/hdc/hdc_rust/src/cffi/ |
H A D | usb_ffs.h | 9 * Unless required by applicable law or agreed to in writing, software 49 struct usb_endpoint_descriptor_no_audio to; member 84 struct usb_endpoint_descriptor_no_audio to; member 111 .to = { 112 .bLength = sizeof(config3.to), 143 .to = { 144 .bLength = sizeof(config1.to), 170 .to = { 171 .bLength = sizeof(config2.to),
|
/developtools/hdc/src/daemon/ |
H A D | usb_ffs.h | 9 * Unless required by applicable law or agreed to in writing, software 48 struct usb_endpoint_descriptor_no_audio to; member 83 struct usb_endpoint_descriptor_no_audio to; member 110 .to = { 111 .bLength = sizeof(config3.to), 142 .to = { 143 .bLength = sizeof(config1.to), 169 .to = { 170 .bLength = sizeof(config2.to),
|
/developtools/integration_verification/tools/fotff/pkg/mock/ |
H A D | mock.go | 9 * Unless required by applicable law or agreed to in writing, software 40 func (m *Manager) Steps(from, to string) ([]string, error) { 43 ret[i] = fmt.Sprintf("%s-%s-%s", from, to, ret[i]) 59 logrus.Infof("Flash: flashing %s to %s, mock implementation returns OK unconditionally", pkg, device)
|
/developtools/integration_verification/tools/fotff/pkg/ |
H A D | pkg.go | 9 * Unless required by applicable law or agreed to in writing, software 25 // Flash download given package to the device. 27 // LastIssue returns the last issue URL related to the package. 30 Steps(from, to string) ([]string, error)
|
/developtools/ace_ets2bundle/compiler/ |
H A D | webpack.config.js | 9 * Unless required by applicable law or agreed to in writing, software 287 to: path.resolve(__dirname, projectConfig.buildPath), 295 to: path.resolve(__dirname, projectConfig.buildPath, BUILD_SHARE_PATH), 310 to: path.resolve(__dirname, projectConfig.buildPath) 315 to: path.resolve(__dirname, projectConfig.buildPath) 323 to: path.resolve(__dirname, projectConfig.cachePath)
|
/developtools/integration_verification/tools/fotff/vcs/gitee/ |
H A D | compare.go | 9 * Unless required by applicable law or agreed to in writing, software 79 func GetBetweenTimeMRs(owner, repo, branch string, from, to time.Time) (ret []*Commit, err error) { 85 toStr := to.UTC().Format(time.RFC3339)
|
/developtools/global_resource_tool/src/ |
H A D | reference_parser.cpp | 9 * Unless required by applicable law or agreed to in writing, software 154 bool ReferenceParser::ParseRefJson(const string &from, const string &to) in ParseRefJson() argument 173 if (!ResourceUtil::CreateDirs(FileEntry::FilePath(to).GetParent().GetPath())) { in ParseRefJson() 177 if (!ResourceUtil::SaveToJsonFile(to, root_)) { in ParseRefJson()
|
/developtools/hdc/hdc_rust/src/common/ |
H A D | forward.rs | 9 * Unless required by applicable law or agreed to in writing, software 216 crate::error!("TcpWriteStreamMap failed to get id {:#?}", id); 558 crate::error!("payload to String failed. {err}"); 753 "update context to task is none session_id={:#?},channel_id={:#?}", 847 crate::error!("begin to free forward context cid. cid = {cid}"); 864 crate::error!("Abstract begin to free forward close fd = {:#?}", ctx.fd); 1459 crate::error!("dev write bufer to file fail:{:#?}", e);
|
/developtools/hiperf/test/fuzztest/resource/ |
H A D | send_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
/developtools/profiler/device/plugins/native_daemon/test/unittest/resource/ |
H A D | send_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
H A D | send_dwarf_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
/developtools/ace_js2bundle/ace-loader/test/rich/ |
H A D | test.js | 9 * Unless required by applicable law or agreed to in writing, software 62 expect(components).to.include.keys($app_bootstrap$.firstCall.args[0]);
|
/developtools/global_resource_tool/include/ |
H A D | reference_parser.h | 9 * Unless required by applicable law or agreed to in writing, software 37 bool ParseRefJson(const std::string &from, const std::string &to);
|
/developtools/hiperf/test/unittest/resource/ |
H A D | send_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
H A D | send_report_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
H A D | send_dwarf_to_device.bat | 8 @rem Unless required by applicable law or agreed to in writing, software
|
/developtools/packing_tool/packing_tool/frameworks/src/ |
H A D | utils.cpp | 9 * Unless required by applicable law or agreed to in writing, software 82 std::string Utils::ReplaceAll(std::string str, const std::string& from, const std::string& to) in ReplaceAll() argument 86 str.replace(startPos, from.length(), to); in ReplaceAll() 87 startPos += to.length(); in ReplaceAll() 162 // Convert hash to hex string in GetSha256Str() 191 // Convert hash to hex string in GetSha256File() 218 // Convert hash to hex string in GetSha256Folder()
|
/developtools/packing_tool/packing_tool/frameworks/test/unittest/utils_Test/ |
H A D | utils_test.cpp | 9 * Unless required by applicable law or agreed to in writing, software 151 std::string to = {"AAA"}; in HWTEST_F() local 152 str = OHOS::AppPackingTool::Utils::ReplaceAll(str, from, to); in HWTEST_F() 153 EXPECT_NE(str.find(to), 0); in HWTEST_F()
|
/developtools/ace_js2bundle/ace-loader/plugin/templater/ |
H A D | rich_component_map.js | 9 * Unless required by applicable law or agreed to in writing, software 734 to: {}, 763 to: {}, 793 to: {},
|