Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 44) sorted by relevance

12

/tools/test/connectivity/acts_tests/tests/google/tel/etc/
Dmanage_sim.py59 current = active_list[iccid]
60 current['droid_serial'] = droid_device.serial
66 current[
73 current['operator'] = ''
76 current['capability'] = ['voice', 'ims', 'volte', 'vt', 'sms',
84 current['phone_num'] = ''
86 current['phone_num'] = tel_test_utils.phone_number_formatter(
118 current = simconf[iccid]
121 current['operator'] = active_sims[iccid]['operator']
122 current['capability'] = active_sims[iccid]['capability']
[all …]
/tools/asuite/atest/unittest_data/
DVtsAndroidTest.xml.data8 …l-hidl-hash/frameworks/hardware/interfaces/current.txt->/data/local/tmp/frameworks/hardware/interf…
9 …"push" value="hal-hidl-hash/hardware/interfaces/current.txt->/data/local/tmp/hardware/interfaces/c…
10 …ue="hal-hidl-hash/system/hardware/interfaces/current.txt->/data/local/tmp/system/hardware/interfac…
11 …value="hal-hidl-hash/system/libhidl/transport/current.txt->/data/local/tmp/system/libhidl/transpor…
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatLfnDirectory.java269 final FatLfnDirectoryEntry current = in parseLfn() local
272 if (!current.realEntry.isDeleted() && current.isValid()) { in parseLfn()
273 checkUniqueName(current.getName()); in parseLfn()
275 shortNameIndex.put(current.realEntry.getShortName(), current); in parseLfn() local
276 longNameIndex.put(current.getName().toLowerCase(), current); in parseLfn() local
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBatchProcessor.kt127 var current: Iterator<U>? = null in par_map() variable
136 current = next.get().iterator() in par_map()
141 val ret = current!!.next() in par_map()
142 if (!current!!.hasNext()) { in par_map()
143 current = null in par_map()
150 return current != null in par_map()
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/api/
Dcommon.py45 def __init__(self, sample_time, relative_time, current): argument
55 self._current = current
68 def current(self): member in MonsoonDataRecord
114 sample_time, current = map(float, line.split(' '))
119 current)
/tools/metalava/src/main/java/com/android/tools/metalava/model/
DCodebase.kt286 var current = getFirstSubTagByName(doc.documentElement, TAG_PERMISSION) in getPermissionLevel() variable
287 while (current != null) { in getPermissionLevel()
288 val permissionName = current.getAttributeNS(ANDROID_URI, ATTR_NAME) in getPermissionLevel()
289 val protectionLevel = current.getAttributeNS(ANDROID_URI, "protectionLevel") in getPermissionLevel()
291 current = getNextTagByName(current, TAG_PERMISSION) in getPermissionLevel()
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/api/lvpm_stock/
Dmonsoon_proxy.py319 def set_max_initial_current(self, current): argument
321 if current < 0 or current > 8:
323 'range [0, 8].') % current)
324 val = 1023 - int((current / 8) * 1023)
/tools/metalava/src/test/java/com/android/tools/metalava/
DCompatibilityCheckBaselineTest.kt48 fun `Test current-API check, with error message`() { in Test current-API check, with error message()
100 fun `Test current-API check, with global baseline`() { in Test current-API check, with global baseline()
183 fun `Test current-API check, but with compatibility-released baseline`() { in Test current-API check, but with compatibility-released baseline()
DCompatibilityCheckTest.kt3304 val current = getAndroidJar(apiLevel) in Test All Android API levels() constant
3305 if (current == null) { in Test All Android API levels()
3306 … println("Couldn't find $current: Check that pwd for test is correct. Skipping this test.") in Test All Android API levels()
3330 apiJar = current in Test All Android API levels()
3354 apiJar = current in Test All Android API levels()
/tools/dexter/slicer/
DAndroid.bp43 sdk_version: "current",
63 sdk_version: "current",
/tools/test/connectivity/acts/framework/acts/bin/
Dmonsoon.py36 if args.current is not None:
37 mon.set_max_current(args.current)
/tools/metalava/src/main/java/com/android/tools/metalava/
DApiAnalyzer.kt232 current: ConstructorItem, in <lambda>()
235 val currentThrowsCount = current.throwsTypes().size in <lambda>()
239 current in <lambda>()
243 val currentParameterCount = current.parameters().size in <lambda>()
246 current in <lambda>()
DDriver.kt574 val current = in checkCompatibility() constant
584 …if (current is TextCodebase && current.format > FileFormat.V1 && options.outputFormat == FileForma… in checkCompatibility()
640 CompatibilityCheck.checkCompatibility(new, current, releaseType, apiType, oldBase, newBase) in checkCompatibility()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/cellular/
Dcellular_traffic_power_test.py451 current = []
467 current.append(i)
471 print(current)
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
DManifestGenerationExtension.java222 String current = mainAttributes.getValue(attribute); in setMainAttribute() local
223 if (!value.equals(current)) { in setMainAttribute()
/tools/apksig/src/main/java/com/android/apksig/
DDefaultApkSignerEngine.java419 int current = algorithm.getMinSdkVersion(); in getMinSdkFromV3SignatureAlgorithms() local
420 if (current < min) { in getMinSdkFromV3SignatureAlgorithms()
421 if (current <= mMinSdkVersion || current <= AndroidSdkVersion.P) { in getMinSdkFromV3SignatureAlgorithms()
423 return current; in getMinSdkFromV3SignatureAlgorithms()
425 min = current; in getMinSdkFromV3SignatureAlgorithms()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiMethodItem.kt200 var current: UElement = node in <lambda>() variable
202 val tryExpression = current.getParentOfType<UTryExpression>( in <lambda>()
215 current = tryExpression in <lambda>()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/
DPowerBaseTest.py359 current = [sample[1] for sample in samples]
360 average_current = sum(current) * 1000 / len(current)
DPowerGnssBaseTest.py78 power_data = [current * voltage for current in current_data]
/tools/metalava/
DAPI-LINT.md41 current warnings and errors in the codebase. When metalava runs, it looks up the
111 You can view the exact set of existing issues (current APIs that get flagged by
DREADME.md188 inside method bodies to see if you're synchronizing on this or the current
192 records the current set of issues. From that point forward, when metalava
213 in a targeted way. For example, running the analysis on the current version of
344 file and the current set of source folders), and then you "diff" the two.
/tools/test/openhst/docs/
Dcontributing.md12 <https://cla.developers.google.com/> to see your current agreements on file or
/tools/trebuchet/
DCONTRIBUTING.md12 your current agreements on file or to sign a new one.
/tools/external/fat32lib/
DAndroid.bp32 // used in the current project.
/tools/apkzlib/
DAndroid.bp36 // used in the current project.

12