Lines Matching refs:permissionList
442 getPermissionsStatus(tokenID: number, permissionList: Array<Permissions>): Promise<Array&l…
457 | permissionList | Array<Permissions> | Yes | Permissions whose status is to be obtained. …
495 on(type: 'permissionStateChange', tokenIDList: Array<number>, permissionList: Array<Permis…
499 Multiple callbacks can be registered for the specified **tokenIDList** and **permissionList**.
501 If **tokenIDList** and **permissionList** have common values with the **tokenIDList** and **permiss…
515 | permissionList | Array<Permissions> | Yes | List of permissions to be subscribed to. If …
541 let permissionList: Array<Permissions> = ['ohos.permission.DISTRIBUTED_DATASYNC'];
543 …atManager.on('permissionStateChange', tokenIDList, permissionList, (data: abilityAccessCtrl.Permis…
553 off(type: 'permissionStateChange', tokenIDList: Array<number>, permissionList: Array<Permi…
557 …passed in **atManager.off**, all callbacks for **tokenIDList** and **permissionList** will be unre…
571 | permissionList | Array<Permissions> | Yes | List of permissions. The value must be the s…
596 let permissionList: Array<Permissions> = ['ohos.permission.DISTRIBUTED_DATASYNC'];
598 atManager.off('permissionStateChange', tokenIDList, permissionList);