/packages/modules/Uwb/generic_ranging/src/com/android/ranging/generic/ranging/ |
D | PrecisionRangingImpl.java | 237 for (RangingTechnology technology : config.getRangingTechnologiesToRangeWith()) { in PrecisionRangingImpl() 238 switch (technology) { in PrecisionRangingImpl() 240 adapters.put(technology, lazyUwbAdapter.get()); in PrecisionRangingImpl() 263 for (RangingTechnology technology : config.getRangingTechnologiesToRangeWith()) { in start() 265 rangingAdaptersStateMap.put(technology, State.STARTING); in start() 267 var listener = new RangingAdapterListener(technology); in start() 268 rangingAdapterListeners.put(technology, listener); in start() 271 var adapter = rangingAdapters.get(technology); in start() 275 + technology); in start() 486 for (RangingTechnology technology : config.getRangingTechnologiesToRangeWith()) { in stopPrecisionRanging() [all …]
|
/packages/apps/Nfc/src/com/android/nfc/ |
D | DeviceHost.java | 34 public void onHostCardEmulationActivated(int technology); in onHostCardEmulationActivated() argument 35 public void onHostCardEmulationData(int technology, byte[] data); in onHostCardEmulationData() argument 36 public void onHostCardEmulationDeactivated(int technology); in onHostCardEmulationDeactivated() argument 56 boolean connect(int technology); in connect() argument 165 public boolean setTimeout(int technology, int timeout); in setTimeout() argument 167 public int getTimeout(int technology); in getTimeout() argument 171 boolean canMakeReadOnly(int technology); in canMakeReadOnly() argument 173 int getMaxTransceiveLength(int technology); in getMaxTransceiveLength() argument
|
D | NfcService.java | 483 public void onHostCardEmulationActivated(int technology) { in onHostCardEmulationActivated() argument 485 mCardEmulationManager.onHostCardEmulationActivated(technology); in onHostCardEmulationActivated() 490 public void onHostCardEmulationData(int technology, byte[] data) { in onHostCardEmulationData() argument 492 mCardEmulationManager.onHostCardEmulationData(technology, data); in onHostCardEmulationData() 497 public void onHostCardEmulationDeactivated(int technology) { in onHostCardEmulationDeactivated() argument 499 mCardEmulationManager.onHostCardEmulationDeactivated(technology); in onHostCardEmulationDeactivated() 2758 public int connect(int nativeHandle, int technology) throws RemoteException { in connect() argument 2784 if (tag.connect(technology)) { in connect()
|
/packages/modules/Uwb/generic_ranging/src/com/android/ranging/generic/ |
D | RangingTechnology.java | 46 for (RangingTechnology technology : RangingTechnology.values()) { in parseByte() 47 if (bitset.get(technology.value)) { in parseByte() 48 technologies.add(technology); in parseByte() 59 for (RangingTechnology technology : technologies) { in toBitmap() 60 bitset.set(technology.value); in toBitmap()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/ |
D | TbsService.java | 259 int technology, in registerBearer() argument 264 token, callback, uci, uriSchemes, capabilities, providerName, technology); in registerBearer() 334 int ccid, String providerName, int technology, AttributionSource source) { in networkStateChanged() argument 337 service.networkStateChanged(ccid, providerName, technology); in networkStateChanged() 352 int technology) { in registerBearer() argument 357 token, callback, uci, uriSchemes, capabilities, providerName, technology); in registerBearer() 418 void networkStateChanged(int ccid, String providerName, int technology) { in networkStateChanged() argument 426 + technology); in networkStateChanged() 428 mTbsGeneric.networkStateChanged(ccid, providerName, technology); in networkStateChanged()
|
D | BluetoothLeCallControlProxy.java | 69 int technology, in registerBearer() argument 73 uci, uriSchemes, featureFlags, provider, technology, executor, callback); in registerBearer() 104 public void networkStateChanged(String providerName, int technology) { in networkStateChanged() argument 105 mBluetoothLeCallControl.networkStateChanged(providerName, technology); in networkStateChanged()
|
D | TbsGeneric.java | 101 int technology; field in TbsGeneric.Bearer 111 int technology, in Bearer() argument 118 this.technology = technology; in Bearer() 320 int technology) { in addBearer() argument 334 + technology); in addBearer() 353 technology, in addBearer() 719 public synchronized void networkStateChanged(int ccid, String providerName, int technology) { in networkStateChanged() argument 727 + technology); in networkStateChanged() 744 boolean technologyChanged = bearer.technology != technology; in networkStateChanged() 746 bearer.technology = technology; in networkStateChanged() [all …]
|
D | TbsGatt.java | 338 int technology, in init() argument 342 mBearerTechnologyCharacteristic.setValue(new byte[] {(byte) (technology & 0xFF)}); in init() 737 public boolean setBearerTechnology(int technology) { in setBearerTechnology() argument 739 technology, BluetoothGattCharacteristic.FORMAT_UINT8, 0); in setBearerTechnology()
|
/packages/apps/Dialer/java/com/android/dialer/speeddial/database/ |
D | SpeedDialEntry.java | 95 return technology() == IMS_VIDEO || technology() == DUO; in isVideoTechnology() 111 public abstract @Technology int technology(); in technology() method in SpeedDialEntry.Channel 129 public abstract Builder setTechnology(@Technology int technology); in setTechnology() argument
|
D | SpeedDialEntryDatabaseHelper.java | 253 values.put(PHONE_TECHNOLOGY, entry.defaultChannel().technology()); in buildContentValues()
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcManager.java | 290 public int getMaxTransceiveLength(int technology) { in getMaxTransceiveLength() argument 291 switch (technology) { in getMaxTransceiveLength() 371 private void notifyHostEmuActivated(int technology) { in notifyHostEmuActivated() argument 372 mListener.onHostCardEmulationActivated(technology); in notifyHostEmuActivated() 375 private void notifyHostEmuData(int technology, byte[] data) { in notifyHostEmuData() argument 376 mListener.onHostCardEmulationData(technology, data); in notifyHostEmuData() 379 private void notifyHostEmuDeactivated(int technology) { in notifyHostEmuDeactivated() argument 380 mListener.onHostCardEmulationDeactivated(technology); in notifyHostEmuDeactivated()
|
D | NativeNfcTag.java | 155 public synchronized int connectWithStatus(int technology) { in connectWithStatus() argument 161 if (mTechList[i] == technology) { in connectWithStatus() 191 if ((technology == TagTechnology.NDEF) in connectWithStatus() 192 || (technology == TagTechnology.NDEF_FORMATABLE)) { in connectWithStatus() 213 public synchronized boolean connect(int technology) { in connect() argument 214 return connectWithStatus(technology) == 0; in connect()
|
/packages/apps/Nfc/nci/jni/ |
D | RoutingManager.h | 65 void handleData(uint8_t technology, const uint8_t* data, uint32_t dataLen, 67 void notifyActivated(uint8_t technology); 68 void notifyDeactivated(uint8_t technology);
|
D | RoutingManager.cpp | 452 void RoutingManager::notifyActivated(uint8_t technology) { in notifyActivated() argument 462 (int)technology); in notifyActivated() 469 void RoutingManager::notifyDeactivated(uint8_t technology) { in notifyDeactivated() argument 480 (int)technology); in notifyDeactivated() 487 void RoutingManager::handleData(uint8_t technology, const uint8_t* data, in handleData() argument 531 (int)technology, dataJavaArray.get()); in handleData()
|
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
D | CardEmulationManager.java | 215 public void onHostCardEmulationActivated(int technology) { in onHostCardEmulationActivated() argument 223 if (technology == NFC_HCE_APDU) { in onHostCardEmulationActivated() 227 } else if (technology == NFC_HCE_NFCF) { in onHostCardEmulationActivated() 234 public void onHostCardEmulationData(int technology, byte[] data) { in onHostCardEmulationData() argument 235 if (technology == NFC_HCE_APDU) { in onHostCardEmulationData() 237 } else if (technology == NFC_HCE_NFCF) { in onHostCardEmulationData() 241 if (mPowerManager != null && !(technology == NFC_HCE_APDU && isSkipAid(data))) { in onHostCardEmulationData() 248 public void onHostCardEmulationDeactivated(int technology) { in onHostCardEmulationDeactivated() argument 249 if (technology == NFC_HCE_APDU) { in onHostCardEmulationDeactivated() 252 } else if (technology == NFC_HCE_NFCF) { in onHostCardEmulationDeactivated() [all …]
|
/packages/modules/Bluetooth/framework/java/android/bluetooth/ |
D | BluetoothLeCallControl.java | 484 int technology, in registerBearer() argument 520 technology, in registerBearer() 713 public void networkStateChanged(@NonNull String provider, int technology) { in networkStateChanged() argument 715 Log.d(TAG, "networkStateChanged: provider=" + provider + ", technology=" + technology); in networkStateChanged() 728 service.networkStateChanged(mCcid, provider, technology, mAttributionSource); in networkStateChanged()
|
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/ |
D | IBluetoothLeCallControl.aidl | 31 …in int capabilities, in String provider, in int technology, in AttributionSource attributionSource… in registerBearer() argument 45 …void networkStateChanged(in int ccid, in String provider, in int technology, in AttributionSource … in networkStateChanged() argument
|
/packages/apps/Dialer/java/com/android/dialer/speeddial/ |
D | SpeedDialFragment.java | 386 if (channel.technology() == Channel.DUO) { in onClick() 396 .setIsDuoCall(channel.technology() == Channel.DUO)); in onClick() 439 if (channel.technology() == Channel.DUO) { in placeCall() 449 .setIsDuoCall(channel.technology() == Channel.DUO)); in placeCall() 542 if (channel.technology() == Channel.DUO) { in onRowClicked() 552 .setIsDuoCall(channel.technology() == Channel.DUO)); in onRowClicked()
|
D | DisambigDialog.java | 181 if (channel.technology() == Channel.DUO) { in onVideoOptionClicked() 192 .setIsDuoCall(channel.technology() == Channel.DUO)); in onVideoOptionClicked()
|
/packages/apps/SafetyRegulatoryInfo/ |
D | LICENSE | 16 "MPEG Layer-3 audio coding technology licensed from Fraunhofer IIS and Thomson." 18 "mp3 Surround audio coding technology licensed from Fraunhofer lIS, Agere Systems and Thomson."
|
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/ |
D | CardEmulationManagerTest.java | 1357 String technology = "DH"; in testCardEmulationOverrideRoutingTable_callerNotForeground() local 1360 .overrideRoutingTable(USER_ID, protocol, technology)); in testCardEmulationOverrideRoutingTable_callerNotForeground() 1396 String technology = "DH"; in testCardEmulationOverrideRoutingTable_callerForegroundRouteDH() local 1399 .overrideRoutingTable(USER_ID, protocol, technology)); in testCardEmulationOverrideRoutingTable_callerForegroundRouteDH() 1418 String technology = "eSE1"; in testCardEmulationOverrideRoutingTable_callerForegroundRouteeSE() local 1421 .overrideRoutingTable(USER_ID, protocol, technology)); in testCardEmulationOverrideRoutingTable_callerForegroundRouteeSE() 1440 String technology = "SIM1"; in testCardEmulationOverrideRoutingTable_callerForegroundRouteSIM() local 1443 .overrideRoutingTable(USER_ID, protocol, technology)); in testCardEmulationOverrideRoutingTable_callerForegroundRouteSIM()
|
/packages/apps/Dialer/java/com/android/dialer/speeddial/loader/ |
D | SpeedDialUiItem.java | 270 && currentChannel.technology() == Channel.VOICE) { in getDefaultVoiceChannel()
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/tbs/ |
D | TbsGenericTest.java | 127 int technology = 0x02; in prepareTestBearer() local 137 technology)) in prepareTestBearer()
|
/packages/modules/Bluetooth/system/gd/proto/bluetooth/metrics/ |
D | bluetooth.proto | 84 // Type of technology used in the connection.
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | SupplicantStaIfaceHalHidlImpl.java | 3219 private @WifiStandard int getWifiStandard(int technology) { in getWifiStandard() argument 3220 switch(technology) { in getWifiStandard() 3364 capOut.wifiStandard = getWifiStandard(cap.technology); in getConnectionCapabilities_1_3() 3398 capOut.wifiStandard = getWifiStandard(cap.V1_3.technology); in getConnectionCapabilities_1_4()
|