Home
last modified time | relevance | path

Searched refs:nfcInjector (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Nfc/NfcNci/src/com/android/nfc/
DNfcEventLog.java52 public NfcEventLog(Context context, NfcInjector nfcInjector, Looper looper, in NfcEventLog() argument
55 mNfcInjector = nfcInjector; in NfcEventLog()
DNfcInjector.java98 static void setNfcInjector(NfcInjector nfcInjector) { in setNfcInjector() argument
99 sInstance = nfcInjector; in setNfcInjector()
DNfcDispatcher.java134 NfcInjector nfcInjector, in NfcDispatcher() argument
141 mNfcInjector = nfcInjector; in NfcDispatcher()
DNfcService.java1118 public NfcService(Application nfcApplication, NfcInjector nfcInjector) { in NfcService() argument
1121 mNfcInjector = nfcInjector; in NfcService()
/packages/modules/Nfc/NfcNci/src/com/android/nfc/cardemulation/
DWalletRoleObserver.java57 Callback callback, NfcInjector nfcInjector) { in WalletRoleObserver() argument
61 this.mNfcEventLog = nfcInjector.getNfcEventLog(); in WalletRoleObserver()
DCardEmulationManager.java165 public CardEmulationManager(Context context, NfcInjector nfcInjector, in CardEmulationManager() argument
168 mNfcInjector = nfcInjector; in CardEmulationManager()
174 context.getSystemService(RoleManager.class), this, nfcInjector); in CardEmulationManager()
187 new HostEmulationManager(context, Looper.getMainLooper(), mAidCache, nfcInjector); in CardEmulationManager()
196 mNfcEventLog = nfcInjector.getNfcEventLog(); in CardEmulationManager()
200 mStatsdUtils = nfcInjector.getStatsdUtils(); in CardEmulationManager()
223 NfcInjector nfcInjector) { in CardEmulationManager() argument
225 mNfcInjector = nfcInjector; in CardEmulationManager()
DHostEmulationManager.java316 NfcInjector nfcInjector) { in HostEmulationManager() argument
317 this(context, looper, aidCache, nfcInjector.getStatsdUtilsContext() != null ? in HostEmulationManager()
318 new StatsdUtils(StatsdUtils.SE_NAME_HCE, nfcInjector.getStatsdUtilsContext()) : null, in HostEmulationManager()
319 nfcInjector); in HostEmulationManager()
324 StatsdUtils statsdUtils, NfcInjector nfcInjector) { in HostEmulationManager() argument
337 mDeviceConfig = nfcInjector.getDeviceConfigFacade(); in HostEmulationManager()
/packages/modules/Nfc/NfcNci/tests/unit/src/com/android/nfc/handover/
DBluetoothPeripheralHandoverTest.java135 NfcInjector nfcInjector = mock(NfcInjector.class); in setUp() local
136 when(NfcInjector.getInstance()).thenReturn(nfcInjector); in setUp()
137 when(nfcInjector.getDeviceConfigFacade()).thenReturn(mDeviceConfigFacade); in setUp()