Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/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 return probe; in buildLinkProbeSuccessStaEvent()
195 StaEvent probe = new StaEvent(); in buildLinkProbeFailureStaEvent() local
196 probe.type = StaEvent.TYPE_LINK_PROBE; in buildLinkProbeFailureStaEvent()
197 probe.linkProbeWasSuccess = false; in buildLinkProbeFailureStaEvent()
198 probe.linkProbeFailureReason = reason; in buildLinkProbeFailureStaEvent()
199 return probe; in buildLinkProbeFailureStaEvent()
/frameworks/compile/mclinker/include/mcld/ADT/
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()
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()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
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()
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()
/frameworks/base/proto/src/
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.
Dwifi.proto975 // Link probe was performed
1100 // true if link probe succeeded, false otherwise.
1104 // Elapsed time, in milliseconds, of a successful link probe.
1108 // Failure reason for an unsuccessful link probe.
1904 // Status codes for link probe status
1906 // Link probe status is unknown
1909 // Link probe is not triggered
1912 // Link probe is triggered and the result is success
1915 // Link probe is triggered and the result is failure
2019 // The link probe status since last stats update
[all …]
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java23404 final File probe = new File(pkg.codePath);
23405 final File probeOat = new File(probe, "oat");
23406 if (!probe.isDirectory() || !probeOat.isDirectory()) {