Home
last modified time | relevance | path

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

12

/packages/modules/Bluetooth/system/gd/rust/linux/service/
Dbuild.rs16 Config::new().probe("flatbuffers").unwrap(); in main()
17 Config::new().probe("protobuf").unwrap(); in main()
25 Config::new().probe("libchrome").unwrap(); in main()
26 Config::new().probe("libmodp_b64").unwrap(); in main()
27 Config::new().probe("tinyxml2").unwrap(); in main()
28 Config::new().probe("lc3").unwrap(); in main()
29 Config::new().probe("fmt").unwrap(); in main()
33 Config::new().probe("libstructuredmetrics").unwrap(); in main()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
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 …]
/packages/modules/UprobeStats/src/
DConfigResolver.cpp131 ResolvedProbe probe; in resolveProbes() local
132 probe.filename = matched_file_path; in resolveProbes()
133 probe.offset = offset; in resolveProbes()
134 probe.probe_config = probe_config; in resolveProbes()
135 result.push_back(probe); in resolveProbes()
Dconfig.proto11 // A ProbeConfig defines the spec of a single probe, including which BPF to
12 // use and where to place the probe.
24 // would try to place the probe on each of the paths in the order
25 // specified here until the probe is successfully placed.
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/
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()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
DFileUtilsTest.java636 for (String probe : new String[] { in testExtractDisplayName()
643 assertEquals(probe, "foo.bar.baz", extractDisplayName(probe)); in testExtractDisplayName()
649 for (String probe : new String[] { in testExtractFileName()
657 assertEquals(probe, "foo", extractFileName(probe)); in testExtractFileName()
663 for (String probe : new String[] { in testExtractFileName_empty()
670 assertEquals(probe, "", extractFileName(probe)); in testExtractFileName_empty()
676 for (String probe : new String[] { in testExtractFileExtension()
686 assertEquals(probe, "bar", extractFileExtension(probe)); in testExtractFileExtension()
692 for (String probe : new String[] { in testExtractFileExtension_none()
700 assertEquals(probe, null, extractFileExtension(probe)); in testExtractFileExtension_none()
[all …]
/packages/modules/DnsResolver/doh/network/
Ddriver.rs110 if let Err(e) = self.probe(duration).await { in drive()
124 async fn probe(&mut self, probe_timeout: Duration) -> Result<()> { in probe() method
149 let probe = encoding::probe_query()?; in force_probe() localVariable
150 let dns_request = encoding::dns_request(&probe, &self.info.url)?; in force_probe()
Dmod.rs88 pub async fn probe(&mut self, timeout: Duration) -> Result<()> { in probe() method
/packages/modules/NetworkStack/src/com/android/networkstack/metrics/
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
149 // Record each probe event
180 * Logs Neighbor Unreachability Detection probe event.
188 // NUD probe based on IPv4 ARP or IPv6 ND packet.
/packages/modules/DnsResolver/doh/dispatcher/
Ddriver.rs68 Command::Probe { info, timeout } => debug_err(self.probe(info, timeout).await), in drive_once()
104 async fn probe(&mut self, info: ServerInfo, timeout: Duration) -> Result<()> { in probe() method
129 net.probe(timeout).await?; in probe()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/
DMediaDocumentsProviderTest.java256 final Uri.Builder probe = Uri.parse("content://" + MediaDocumentsProvider.AUTHORITY) in assertProbe() local
259 probe.appendPath(path); in assertProbe()
261 try (Cursor c = resolver.query(probe.build(), null, Bundle.EMPTY, null)) { in assertProbe()
293 final Uri.Builder probe = Uri.parse("content://" + MediaDocumentsProvider.AUTHORITY) in assertOpenFile() local
295 try (Cursor c = resolver.query(probe.build(), null, Bundle.EMPTY, null)) { in assertOpenFile()
DMediaProviderTest.java194 final Uri probe = MediaStore.AUTHORITY_URI.buildUpon() in testSchema() local
196 try (Cursor c = sIsolatedResolver.query(probe, null, null, null)) { in testSchema()
200 sIsolatedResolver.getType(probe); in testSchema()
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/
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()
/packages/apps/Settings/src/com/android/settings/applications/assist/
DDefaultAssistPreferenceController.java73 final Intent probe = new Intent(VoiceInteractionService.SERVICE_INTERFACE) in getSettingIntent() local
76 final List<ResolveInfo> services = mPackageManager.queryIntentServices(probe, in getSettingIntent()
/packages/apps/Car/Settings/src/com/android/car/settings/applications/defaultapps/
DDefaultAssistantPickerEntryPreferenceController.java100 Intent probe = ASSISTANT_SERVICE.setPackage(assistantPkgName); in getComponentName() local
102 List<ResolveInfo> services = pm.queryIntentServices(probe, PackageManager.GET_META_DATA); in getComponentName()
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/eligibility/
DCandidateSuggestionFilter.java138 final Intent probe = new Intent(CONTENT_PROVIDER_INTENT_ACTION) in call() local
141 .queryIntentContentProviders(probe, 0 /* flags */); in call()
/packages/modules/Bluetooth/system/gd/rust/linux/client/
Dbuild.rs10 Config::new().probe("dbus-1").unwrap(); in main()
/packages/modules/Bluetooth/system/gd/rust/topshim/
Dbuild.rs11 let libchrome = Config::new().probe("libchrome").unwrap(); in main()
/packages/modules/Bluetooth/system/gd/rust/linux/mgmt/
Dbuild.rs34 Config::new().probe("dbus-1").unwrap(); in main()
/packages/modules/StatsD/tests/src/android/cts/statsd/alert/
DAnomalyDetectionTests.java574 String tracing_on = probe(traceFsPath); in isSystemTracingEnabled()
583 tracing_on = probe(debugFsPath); in isSystemTracingEnabled()
589 private String probe(String path) throws Exception { in probe() method in AnomalyDetectionTests
/packages/modules/Wifi/service/proto/src/
Dmetrics.proto1411 // Link probe was performed
1569 // true if link probe succeeded, false otherwise.
1573 // Elapsed time, in milliseconds, of a successful link probe.
1577 // Failure reason for an unsuccessful link probe.
2524 // Status codes for link probe status
2526 // Link probe status is unknown
2529 // Link probe is not triggered
2532 // Link probe is triggered and the result is success
2535 // Link probe is triggered and the result is failure
2639 // The link probe status since last stats update
[all …]
/packages/modules/Virtualization/pvmfw/testdata/
Dtest_crosvm_dt_base.dtsi17 1,pci-probe-only = <0x01>;
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java3446 for (CaptivePortalProbeResult probe : probes) { in evaluateCapportResult()
3447 if (probe instanceof CapportApiProbeResult) { in evaluateCapportResult()
3448 capportResult = probe; in evaluateCapportResult()
3449 } else if (probe.isConcludedFromHttps()) { in evaluateCapportResult()
3450 if (probe.isSuccessful()) httpsSuccesses++; in evaluateCapportResult()
3453 if (probe.isPortal()) { in evaluateCapportResult()
3465 httpPortalResult = probe; in evaluateCapportResult()
3466 } else if (probe.isSuccessful()) { in evaluateCapportResult()
/packages/modules/Virtualization/pvmfw/
Dplatform.dts59 linux,pci-probe-only = <1>;
/packages/apps/Car/DebuggingRestrictionController/libs/
Dhttpclient-4.5.12.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...

12