Home
last modified time | relevance | path

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

/frameworks/base/tests/GamePerformance/src/android/gameperformance/
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()
DControlsTest.java36 protected void initProbePass(int probe) { in initProbePass() argument
43 initUnits(probe * getUnitScale()); in initProbePass()
DOpenGLTest.java61 protected void initProbePass(int probe) { in initProbePass() argument
69 getView().setFrameDrawer(new ParamFrameDrawer(probe * getUnitScale())); in initProbePass()
/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/av/media/libaudioclient/
DAudioEffect.cpp53 bool probe in AudioEffect() argument
58 mStatus = set(type, uuid, priority, cbf, user, sessionId, io, device, probe); in AudioEffect()
70 bool probe in AudioEffect() argument
94 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io, device, probe); in AudioEffect()
105 bool probe) in set() argument
132 mProbe = probe; in set()
148 probe, &mStatus, &mId, &enabled); in set()
153 if (probe || iEffect == 0 || (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS)) { in set()
157 ALOGE_IF(!probe, "set(): AudioFlinger could not create effect %s / %s, status: %d", in set()
161 if (!probe && iEffect == 0) { in set()
DIAudioFlinger.cpp665 bool probe, in createEffect() argument
693 data.writeInt32(probe ? 1 : 0); in createEffect()
1400 bool probe = data.readInt32() == 1; in onTransact() local
1406 opPackageName, pid, probe, &status, &id, &enabled); in onTransact()
/frameworks/av/media/libaudioclient/include/media/
DAudioEffect.h383 bool probe = false);
397 bool probe = false);
420 bool probe = false);
DIAudioFlinger.h476 bool probe,
/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.
/frameworks/av/services/audioflinger/
DDeviceEffectManager.cpp78 bool probe) { in createEffect_l() argument
84 if (probe || lStatus != NO_ERROR) { in createEffect_l()
DDeviceEffectManager.h40 bool probe);
DAudioFlinger.cpp3439 bool probe, in createEffect() argument
3558 enabled, &lStatus, probe); in createEffect()
3653 &desc, enabled, &lStatus, pinned, probe); in createEffect()
3665 if (!probe && (lStatus == NO_ERROR || lStatus == ALREADY_EXISTS)) { in createEffect()
DAudioFlinger.h243 bool probe,
DThreads.h358 bool probe);
DThreads.cpp1371 bool probe) in createEffect_l() argument
1393 if (probe || lStatus != NO_ERROR) { in createEffect_l()
1439 if (!probe && lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) { in createEffect_l()
/frameworks/base/media/java/android/media/audiofx/
DAudioEffect.java492 int audioSession, @Nullable AudioDeviceAttributes device, boolean probe) in AudioEffect() argument
509 id, desc, ActivityThread.currentOpPackageName(), probe); in AudioEffect()
528 if (!probe) { in AudioEffect()
1376 String opPackageName, boolean probe); in native_setup() argument
/frameworks/base/media/jni/audioeffect/
Dandroid_media_AudioEffect.cpp273 jintArray jId, jobjectArray javadesc, jstring opPackageName, jboolean probe) in android_media_AudioEffect_native_setup() argument
349 probe); in android_media_AudioEffect_native_setup()
394 if (probe) { in android_media_AudioEffect_native_setup()
/frameworks/opt/net/wifi/service/proto/src/
Dmetrics.proto1321 // Link probe was performed
1446 // true if link probe succeeded, false otherwise.
1450 // Elapsed time, in milliseconds, of a successful link probe.
1454 // Failure reason for an unsuccessful link probe.
2312 // Status codes for link probe status
2314 // Link probe status is unknown
2317 // Link probe is not triggered
2320 // Link probe is triggered and the result is success
2323 // Link probe is triggered and the result is failure
2427 // The link probe status since last stats update
[all …]
/frameworks/base/core/proto/android/stats/connectivity/
Dnetwork_stack.proto95 // DNS query for the probe host returned a private IP address
/frameworks/base/cmds/statsd/src/
Datoms.proto7028 // The probe type (http or https, or captive portal API...)
7031 // The latency in microseconds of the probe event
7034 // The result of the probe event
7047 // Record probe event during the validation
7140 // Record each probe event