Lines Matching refs:hapFilePaths

157 install(hapFilePaths: Array<string>, installParam: InstallParam, callback: AsyncCallback<v…
182 | hapFilePaths | Array<string> | 是 | 存储应用程序包的路径。路径应该是当前应用程…
205 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
224 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
233 data.install(hapFilePaths, installParam, (err: BusinessError) => {
249 install(hapFilePaths: Array<string>, callback: AsyncCallback<void>): void
274 | hapFilePaths | Array<string> | 是 | 存储应用程序包的路径。路径应该是当前应用程…
295 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
314 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
318 data.install(hapFilePaths, (err: BusinessError) => {
336 install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<void\>
361 | hapFilePaths | Array\<string\> | 是 | 存储应用程序包的路径。路径应该是当前应用程序中存放HAP的数据目录。当传入的路径是一个目…
389 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
408 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
417 data.install(hapFilePaths, installParam)
1075 updateBundleForSelf(hapFilePaths: Array\<string\>, installParam: InstallParam, callback: AsyncCallb…
1077 以异步方法更新当前应用,仅限企业设备上的企业MDM应用调用,且传入的hapFilePaths中的hap必须都属于当前应用,使用callback形式返回结果。
1089 | hapFilePaths | Array&lt;string&gt; | 是 | 存储应用程序包的路径。路径应该是当前应用程…
1110 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
1127 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
1136 data.updateBundleForSelf(hapFilePaths, installParam, (err: BusinessError) => {
1154 updateBundleForSelf(hapFilePaths: Array\<string\>, callback: AsyncCallback\<void\>): void
1156 以异步方法更新当前应用,仅限企业设备上的企业MDM应用调用,且传入的hapFilePaths中的hap必须都属于当前应用,使用callback形式返回结果。
1168 | hapFilePaths | Array&lt;string&gt; | 是 | 存储应用程序包的路径。路径应该是当前应用程…
1187 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
1204 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
1208 data.updateBundleForSelf(hapFilePaths, (err: BusinessError) => {
1226 updateBundleForSelf(hapFilePaths: Array\<string\>, installParam?: InstallParam): Promise\<void\>
1228 以异步方法更新当前应用,仅限企业设备上的企业MDM应用调用,且传入的hapFilePaths中的hap必须都属于当前应用,使用promise形式返回结果。
1240 | hapFilePaths | Array&lt;string&gt; | 是 | 存储应用程序包的路径。路径应该是当前应用程…
1266 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths
1283 let hapFilePaths = ['/data/storage/el2/base/haps/entry/files/'];
1292 data.updateBundleForSelf(hapFilePaths, installParam)