/aosp12/frameworks/base/tests/GamePerformance/src/android/gameperformance/ |
H A D | BaseTest.java | 83 protected abstract void initProbePass(int probe); in initProbePass() argument 109 int probe = (lowLimit + upLimit) / 2; in run() local 110 if (probe == lowLimit) { in run() 111 Log.i(TAG, "Test done: " + DOUBLE_FORMATTER.format(probe * getUnitScale()) + in run() 113 return probe * getUnitScale(); in run() 116 Log.i(TAG, "Start probe: " + DOUBLE_FORMATTER.format(probe * getUnitScale()) + " " + in run() 118 initProbePass(probe); in run() 136 Log.i(TAG, "Finish probe: " + DOUBLE_FORMATTER.format(probe * getUnitScale()) + in run() 139 upLimit = probe; in run() 141 lowLimit = probe; in run()
|
H A D | ControlsTest.java | 36 protected void initProbePass(int probe) { in initProbePass() argument 43 initUnits(probe * getUnitScale()); in initProbePass()
|
H A D | OpenGLTest.java | 61 protected void initProbePass(int probe) { in initProbePass() argument 69 getView().setFrameDrawer(new ParamFrameDrawer(probe * getUnitScale())); in initProbePass()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
H A D | WifiMetricsTestUtil.java | 184 StaEvent probe = new StaEvent(); in buildLinkProbeSuccessStaEvent() local 185 probe.type = StaEvent.TYPE_LINK_PROBE; in buildLinkProbeSuccessStaEvent() 186 probe.linkProbeWasSuccess = true; in buildLinkProbeSuccessStaEvent() 187 probe.linkProbeSuccessElapsedTimeMs = elapsedTimeMs; in buildLinkProbeSuccessStaEvent() 188 probe.interfaceName = WifiMetricsTest.TEST_IFACE_NAME; in buildLinkProbeSuccessStaEvent() 189 return probe; in buildLinkProbeSuccessStaEvent() 196 StaEvent probe = new StaEvent(); in buildLinkProbeFailureStaEvent() local 197 probe.type = StaEvent.TYPE_LINK_PROBE; in buildLinkProbeFailureStaEvent() 198 probe.linkProbeWasSuccess = false; in buildLinkProbeFailureStaEvent() 199 probe.linkProbeFailureReason = reason; in buildLinkProbeFailureStaEvent() [all …]
|
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
H A D | MediaPresetReverbTest.java | 197 EnergyProbe probe = null; in test2_0AuxiliarySoundModification() local 209 probe = new EnergyProbe(0); in test2_0AuxiliarySoundModification() 232 int energy1000 = probe.capture(1000); in test2_0AuxiliarySoundModification() 255 if (probe != null) { in test2_0AuxiliarySoundModification() 256 probe.release(); in test2_0AuxiliarySoundModification() 269 EnergyProbe probe = null; in test2_1InsertSoundModification() local 307 probe = new EnergyProbe(0); in test2_1InsertSoundModification() 315 int energy1000 = probe.capture(1000); in test2_1InsertSoundModification() 340 if (probe != null) { in test2_1InsertSoundModification() 341 probe.release(); in test2_1InsertSoundModification()
|
H A D | MediaEnvReverbTest.java | 352 EnergyProbe probe = null; in test2_0AuxiliarySoundModification() local 364 probe = new EnergyProbe(0); in test2_0AuxiliarySoundModification() 389 int energy1000 = probe.capture(1000); in test2_0AuxiliarySoundModification() 412 if (probe != null) { in test2_0AuxiliarySoundModification() 413 probe.release(); in test2_0AuxiliarySoundModification() 426 EnergyProbe probe = null; in test2_1InsertSoundModification() local 466 probe = new EnergyProbe(0); in test2_1InsertSoundModification() 474 int energy1000 = probe.capture(1000); in test2_1InsertSoundModification() 499 if (probe != null) { in test2_1InsertSoundModification() 500 probe.release(); in test2_1InsertSoundModification()
|
/aosp12/frameworks/compile/mclinker/include/mcld/ADT/ |
H A D | HashBase.tcc | 123 const unsigned int probe = 1; in lookUpBucketFor() local 150 index += probe; in lookUpBucketFor() 166 const unsigned int probe = 1; in findKey() local 181 index += probe; in findKey() 225 const unsigned int probe = 1; in doRehash() local 227 new_bucket += probe; in doRehash()
|
H A D | HashIterator.h | 35 const unsigned int probe = 1; in ChainIteratorBase() local 46 m_Index += probe; in ChainIteratorBase() 105 const unsigned int probe = 1; in advance() local 107 m_Index += probe; in advance()
|
/aosp12/system/bt/gd/rust/linux/adapter/ |
H A D | build.rs | 19 Config::new().probe("libchrome").unwrap(); in main() 20 Config::new().probe("libmodp_b64").unwrap(); in main() 21 Config::new().probe("tinyxml2").unwrap(); in main()
|
/aosp12/system/bt/gd/rust/linux/service/ |
H A D | build.rs | 22 Config::new().probe("libchrome").unwrap(); in main() 23 Config::new().probe("libmodp_b64").unwrap(); in main() 24 Config::new().probe("tinyxml2").unwrap(); in main()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/d2d/ |
H A D | DtmfTransport.java | 372 String probe; in handleProbeMessage() local 374 probe = mProbeDigits.toString(); in handleProbeMessage() 381 if (probe.startsWith(String.valueOf(DTMF_MESSAGE_START)) in handleProbeMessage() 382 && probe.endsWith(String.valueOf(DTMF_MESSAGE_DELIMITER)) in handleProbeMessage() 383 && probe.length() > 2) { in handleProbeMessage() 384 mProtocolVersion = probe.substring(1,probe.length() - 1); in handleProbeMessage() 386 probe); in handleProbeMessage() 389 Log.i(this, "handleProbeMessage: got invalid probe %s - negotiation failed.", probe); in handleProbeMessage()
|
/aosp12/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/ |
H A D | FileUtilsTest.java | 620 for (String probe : new String[] { in testExtractDisplayName() 627 assertEquals(probe, "foo.bar.baz", extractDisplayName(probe)); in testExtractDisplayName() 633 for (String probe : new String[] { in testExtractFileName() 641 assertEquals(probe, "foo", extractFileName(probe)); in testExtractFileName() 647 for (String probe : new String[] { in testExtractFileName_empty() 654 assertEquals(probe, "", extractFileName(probe)); in testExtractFileName_empty() 660 for (String probe : new String[] { in testExtractFileExtension() 670 assertEquals(probe, "bar", extractFileExtension(probe)); in testExtractFileExtension() 676 for (String probe : new String[] { in testExtractFileExtension_none() 684 assertEquals(probe, null, extractFileExtension(probe)); in testExtractFileExtension_none() [all …]
|
/aosp12/frameworks/proto_logging/stats/enums/stats/connectivity/ |
H A D | network_stack.proto | 95 // DNS query for the probe host returned a private IP address 189 // Forced nud probe after roaming from IpReachabilityMonitor, neighbor is unreachable; 191 // Forced nud probe after roaming from IpReachabilityMonitor, neighbor is unreachable and 194 // Forced nud probe after receiving CMD_CONFIRM from IpReachabilityMonitor, neighbor is 197 // Forced nud probe after receiving CMD_CONFIRM from IpReachabilityMonitor, neighbor is 204 // NUD probe failure due to neighbor's MAC address has changed.
|
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/ |
H A D | SettingsIntelligenceDumpService.java | 69 final Intent probe = new Intent(Intent.ACTION_MAIN); in dumpSuggestions() local 70 probe.addCategory(category.getCategory()); in dumpSuggestions() 72 .queryIntentActivities(probe, PackageManager.GET_META_DATA); in dumpSuggestions()
|
/aosp12/packages/modules/NetworkStack/src/com/android/networkstack/metrics/ |
H A D | stats.proto | 39 // The probe type (http or https, or captive portal API...) 42 // The latency in microseconds of the probe event 45 // The result of the probe event 53 // Record probe event during the validation 146 // Record each probe event
|
/aosp12/frameworks/av/media/libaudioclient/ |
H A D | AudioEffect.cpp | 73 bool probe, in set() argument 101 mProbe = probe; in set() 127 request.probe = probe; in set() 145 if (probe || iEffect == 0 || (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS)) { in set() 149 ALOGE_IF(!probe, "set(): AudioFlinger could not create effect %s / %s, status: %d", in set() 153 if (!probe && iEffect == 0) { in set() 199 bool probe, in set() argument 218 device, probe, notifyFramesProcessed); in set()
|
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ |
H A D | SuggestionParser.java | 98 final Intent probe = new Intent(Intent.ACTION_MAIN); in readSuggestions() local 99 probe.addCategory(category.getCategory()); in readSuggestions() 101 .queryIntentActivities(probe, PackageManager.GET_META_DATA); in readSuggestions()
|
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/applications/defaultapps/ |
H A D | DefaultAssistantPickerEntryPreferenceController.java | 89 Intent probe = ASSISTANT_SERVICE.setPackage(cn.getPackageName()); in getSettingIntent() local 91 List<ResolveInfo> services = pm.queryIntentServices(probe, PackageManager.GET_META_DATA); in getSettingIntent()
|
/aosp12/packages/apps/Settings/src/com/android/settings/applications/assist/ |
H A D | DefaultAssistPreferenceController.java | 73 final Intent probe = new Intent(VoiceInteractionService.SERVICE_INTERFACE) in getSettingIntent() local 76 final List<ResolveInfo> services = mPackageManager.queryIntentServices(probe, in getSettingIntent()
|
/aosp12/packages/providers/MediaProvider/tests/src/com/android/providers/media/ |
H A D | MediaDocumentsProviderTest.java | 231 final Uri.Builder probe = Uri.parse("content://" + MediaDocumentsProvider.AUTHORITY) in assertProbe() local 234 probe.appendPath(path); in assertProbe() 236 try (Cursor c = resolver.query(probe.build(), null, Bundle.EMPTY, null)) { in assertProbe()
|
/aosp12/frameworks/base/proto/src/ |
H A D | ipconnectivity.proto | 131 // Logs IpReachabilityMonitor probe events and NUD_FAILED events. 135 // The interface name (wlan, rmnet, lo, ...) on which the probe was sent. 139 // The event type code of the probe, represented by constants defined in 168 // The id of the network for which the probe was sent. 172 // The time it took for that probe to complete or time out. 175 // The type of portal probe, represented by PROBE_* constants defined in 179 // The http code result of the probe test. 438 // The interface name (wlan, rmnet, lo, ...) on which the probe was sent. 577 // An IP reachability probe event. 600 // A network validation probe event.
|
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/eligibility/ |
H A D | CandidateSuggestionFilter.java | 138 final Intent probe = new Intent(CONTENT_PROVIDER_INTENT_ACTION) in call() local 141 .queryIntentContentProviders(probe, 0 /* flags */); in call()
|
/aosp12/frameworks/av/media/libaudioclient/aidl/android/media/ |
H A D | CreateEffectRequest.aidl | 39 boolean probe;
|
/aosp12/frameworks/av/media/libaudioclient/include/media/ |
H A D | AudioEffect.h | 393 bool probe = false, 406 bool probe = false,
|
/aosp12/packages/modules/DnsResolver/ |
H A D | IPrivateDnsServer.h | 51 virtual bool probe() = 0;
|