Home | History | Annotate | Download | only in nfc

Lines Matching refs:pkg

225     public void enforceNfceeAdminPerm(String pkg) {
226 if (pkg == null) {
230 if (!mNfceeAccessControl.check(Binder.getCallingUid(), pkg)) {
232 " denies NFCEE access to " + pkg);
760 public INfcAdapterExtras getNfcAdapterExtrasInterface(String pkg) {
761 NfcService.this.enforceNfceeAdminPerm(pkg);
1189 public Bundle open(String pkg, IBinder b) throws RemoteException {
1190 NfcService.this.enforceNfceeAdminPerm(pkg);
1233 public Bundle close(String pkg, IBinder binder) throws RemoteException {
1234 NfcService.this.enforceNfceeAdminPerm(pkg);
1247 public Bundle transceive(String pkg, byte[] in) throws RemoteException {
1248 NfcService.this.enforceNfceeAdminPerm(pkg);
1279 public int getCardEmulationRoute(String pkg) throws RemoteException {
1280 NfcService.this.enforceNfceeAdminPerm(pkg);
1285 public void setCardEmulationRoute(String pkg, int route) throws RemoteException {
1286 NfcService.this.enforceNfceeAdminPerm(pkg);
1292 public void authenticate(String pkg, byte[] token) throws RemoteException {
1293 NfcService.this.enforceNfceeAdminPerm(pkg);
1667 for (PackageInfo pkg : packages) {
1668 if (pkg != null && pkg.applicationInfo != null) {
1669 if (mNfceeAccessControl.check(pkg.applicationInfo)) {
1670 intent.setPackage(pkg.packageName);