Searched refs:chip (Results 1 – 25 of 34) sorted by relevance
12
41 import com.google.android.material.chip.Chip;282 Chip chip = (Chip) inflater.inflate(R.layout.search_chip_item, mChipGroup, false); in addChipToGroup() local283 bindChip(chip, data); in addChipToGroup()284 group.addView(chip); in addChipToGroup()316 Chip chip = (Chip) mChipGroup.getChildAt(i); in onMirrorChipClick() local317 if (chip.getTag().equals(data)) { in onMirrorChipClick()318 chip.setChecked(!chip.isChecked()); in onMirrorChipClick()319 onChipClick(chip); in onMirrorChipClick()334 private static void setChipChecked(Chip chip, boolean isChecked) { in setChipChecked() argument335 chip.setChecked(isChecked); in setChipChecked()[all …]
356 mInOrder = inOrder(mWifiMock, chipMock.chip, mManagerStatusListenerMock); in testCacheMismatchError()438 mInOrder = inOrder(mWifiMock, chipMock.chip, mManagerStatusListenerMock); in testStartHalRetryUponNotAvailableFailure()455 mInOrder = inOrder(mWifiMock, chipMock.chip); in testStartHalRetryFailUponMultipleNotAvailableFailures()472 mInOrder = inOrder(mWifiMock, chipMock.chip); in testStartHalRetryFailUponTrueFailure()491 mInOrder = inOrder(mWifiMock, chipMock.chip, mManagerStatusListenerMock); in testAndTriggerRttLifecycleCallbacksRegBeforeChipConfig()510 verify(chipMock.chip).createRttController(); in testAndTriggerRttLifecycleCallbacksRegBeforeChipConfig()547 mInOrder = inOrder(mWifiMock, chipMock.chip, mManagerStatusListenerMock); in testAndTriggerRttLifecycleCallbacksMultiModeChip()559 mInOrder.verify(chipMock.chip, times(0)).createRttController(); in testAndTriggerRttLifecycleCallbacksMultiModeChip()564 verify(chipMock.chip).createRttController(); in testAndTriggerRttLifecycleCallbacksMultiModeChip()572 verify(chipMock.chip, times(1)).createRttController(); in testAndTriggerRttLifecycleCallbacksMultiModeChip()[all …]
54 WifiChipSpy(android.hardware.wifi.V1_0.IWifiChip chip) { in WifiChipSpy() argument55 super(chip, mContextMock, mSsidTranslatorMock); in WifiChipSpy()58 WifiChipSpy(android.hardware.wifi.IWifiChip chip) { in WifiChipSpy() argument59 super(chip, mContextMock, mSsidTranslatorMock); in WifiChipSpy()64 @NonNull android.hardware.wifi.V1_0.IWifiChip chip, in createWifiChipHidlImplMockable()71 @NonNull android.hardware.wifi.IWifiChip chip, in createWifiChipAidlImplMockable()84 @NonNull android.hardware.wifi.IWifiChip chip, in createWifiChipAidlImplMockable()
201 for (PrivacyItemsChip chip : mChips) { in TvPrivacyChipsController()202 hasVisibleChip = hasVisibleChip || chip.getVisibility() == View.VISIBLE; in TvPrivacyChipsController()203 hasExpandedChip = hasExpandedChip || chip.isExpanded(); in TvPrivacyChipsController()281 for (PrivacyItemsChip.ChipConfig chip : CHIPS) { in isPrivacyTypeShown()282 if (chip.privacyTypes.contains(type)) { in isPrivacyTypeShown()336 mChips.forEach(chip -> chip.expandForTypes(activePrivacyTypes)); in updateChips()355 for (PrivacyItemsChip chip : mChips) { in collapseChips()356 hasExpandedChip |= chip.isExpanded(); in collapseChips()361 for (PrivacyItemsChip chip : mChips) { in collapseChips()362 chip.collapse(); in collapseChips()[all …]
300 public Set<Integer> getSupportedIfaceTypes(WifiChip chip) { in getSupportedIfaceTypes() argument301 return getSupportedIfaceTypesInternal(chip); in getSupportedIfaceTypes()473 return (cacheEntry == null) ? null : cacheEntry.chip; in getChip()512 WifiChip chip = getChip(iface); in getCachedSupportedBandCombinations() local513 if (chip == null) return null; in getCachedSupportedBandCombinations()514 info.radioCombinations = getChipSupportedRadioCombinations(chip); in getCachedSupportedBandCombinations()1019 public WifiChip chip; field in HalDeviceManager.InterfaceCacheEntry1052 public WifiChip chip; field in HalDeviceManager.WifiChipInfo1191 WifiChip chip = mWifiHal.getChip(chipId); in getAllChipInfo() local1192 if (chip == null) { in getAllChipInfo()[all …]
852 WifiChip chip = mHalDeviceManager.getChip(iface); in getCachedWifiChipInfo()853 if (chip == null) return null; in getCachedWifiChipInfo()855 return mCachedWifiChipInfos.get(chip.getId()); in getCachedWifiChipInfo()863 private void cacheWifiChipInfo(@NonNull WifiChip chip) { in cacheWifiChipInfo() argument864 if (mCachedWifiChipInfos.contains(chip.getId())) return; in cacheWifiChipInfo()866 wifiChipInfo.capabilities = chip.getWifiChipCapabilities(); in cacheWifiChipInfo()867 mCachedWifiChipInfos.put(chip.getId(), wifiChipInfo); in cacheWifiChipInfo()
506 public WifiChip(@NonNull android.hardware.wifi.V1_0.IWifiChip chip, in WifiChip() argument508 mWifiChip = createWifiChipHidlImplMockable(chip, context, ssidTranslator); in WifiChip()511 public WifiChip(@NonNull android.hardware.wifi.IWifiChip chip, in WifiChip() argument513 mWifiChip = createWifiChipAidlImplMockable(chip, context, ssidTranslator); in WifiChip()517 @NonNull android.hardware.wifi.V1_0.IWifiChip chip, in createWifiChipHidlImplMockable()519 return new WifiChipHidlImpl(chip, context, ssidTranslator); in createWifiChipHidlImplMockable()523 @NonNull android.hardware.wifi.IWifiChip chip, in createWifiChipAidlImplMockable()525 return new WifiChipAidlImpl(chip, context, ssidTranslator); in createWifiChipAidlImplMockable()
75 IWifiChip chip = mWifi.getChip(chipId); in getChip()76 return new WifiChip(chip, mContext, mSsidTranslator); in getChip()
192 mWifi.getChip(chipId, (status, chip) -> { in getChipInternal()194 chipResp.value = new WifiChip(chip, mContext, mSsidTranslator); in getChipInternal()
96 public WifiChipAidlImpl(@NonNull android.hardware.wifi.IWifiChip chip, in WifiChipAidlImpl() argument98 mWifiChip = chip; in WifiChipAidlImpl()
85 public WifiChipHidlImpl(@NonNull android.hardware.wifi.V1_0.IWifiChip chip, in WifiChipHidlImpl() argument87 mWifiChip = chip; in WifiChipHidlImpl()
146 for (ChipInfo chip : chips) { in readConfigurationFile()147 String chipId = chip.getId(); in readConfigurationFile()148 Coordinates position = chip.getPosition(); in readConfigurationFile()
210 val chip = in <lambda>() constant222 unusedAppsMap[period]!!.put(key, chip) in <lambda>()
19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
118 params to the bluetooth chip.
70 // Number of repeated background scans that were scheduled to the chip.2575 // The total number of tx success counted from the last radio chip reset2578 // The total number of MPDU data packet retries counted from the last radio chip reset2581 // The total number of tx bad counted from the last radio chip reset2584 // The total number of rx success counted from the last radio chip reset2587 // The total time the wifi radio is on in ms counted from the last radio chip reset2590 // The total time the wifi radio is doing tx in ms counted from the last radio chip reset2593 // The total time the wifi radio is doing rx in ms counted from the last radio chip reset2596 // The total time spent on all types of scans in ms counted from the last radio chip reset2599 // The total time spent on nan scans in ms counted from the last radio chip reset[all …]
254 final Checkable chip = (Checkable) v; in onCreate()255 if (chip.isChecked()) { in onCreate()
1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ...
1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...