Home
last modified time | relevance | path

Searched refs:probe (Results 1 – 25 of 70) sorted by relevance

123

/aosp12/frameworks/base/tests/GamePerformance/src/android/gameperformance/
H A DBaseTest.java83 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 DControlsTest.java36 protected void initProbePass(int probe) { in initProbePass() argument
43 initUnits(probe * getUnitScale()); in initProbePass()
H A DOpenGLTest.java61 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 DWifiMetricsTestUtil.java184 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 DMediaPresetReverbTest.java197 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 DMediaEnvReverbTest.java352 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 DHashBase.tcc123 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 DHashIterator.h35 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 Dbuild.rs19 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 Dbuild.rs22 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 DDtmfTransport.java372 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 DFileUtilsTest.java620 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 Dnetwork_stack.proto95 // 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 DSettingsIntelligenceDumpService.java69 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 Dstats.proto39 // 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 DAudioEffect.cpp73 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 DSuggestionParser.java98 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 DDefaultAssistantPickerEntryPreferenceController.java89 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 DDefaultAssistPreferenceController.java73 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 DMediaDocumentsProviderTest.java231 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 Dipconnectivity.proto131 // 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 DCandidateSuggestionFilter.java138 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 DCreateEffectRequest.aidl39 boolean probe;
/aosp12/frameworks/av/media/libaudioclient/include/media/
H A DAudioEffect.h393 bool probe = false,
406 bool probe = false,
/aosp12/packages/modules/DnsResolver/
H A DIPrivateDnsServer.h51 virtual bool probe() = 0;

123