/frameworks/base/core/java/android/view/inputmethod/ |
D | ImeTracker.java | 392 void onProgress(@Nullable Token token, @Phase int phase); in onProgress() argument 400 void onFailed(@Nullable Token token, @Phase int phase); in onFailed() argument 408 void onTodo(@Nullable Token token, @Phase int phase); in onTodo() argument 416 void onCancelled(@Nullable Token token, @Phase int phase); in onCancelled() argument 534 public void onProgress(@Nullable Token token, @Phase int phase) { 536 IInputMethodManagerGlobalInvoker.onProgress(token.mBinder, phase); 539 Log.i(TAG, token.mTag + ": onProgress at " + Debug.phaseToString(phase)); 544 public void onFailed(@Nullable Token token, @Phase int phase) { 546 IInputMethodManagerGlobalInvoker.onFailed(token, phase); 548 Log.i(TAG, token.mTag + ": onFailed at " + Debug.phaseToString(phase)); [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | DashPathEffect.java | 34 public DashPathEffect(float intervals[], float phase) { in DashPathEffect() argument 38 native_instance = nativeCreate(intervals, phase); in DashPathEffect() 41 private static native long nativeCreate(float intervals[], float phase); in nativeCreate() argument
|
D | PathDashPathEffect.java | 42 public PathDashPathEffect(Path shape, float advance, float phase, in PathDashPathEffect() argument 44 native_instance = nativeCreate(shape.readOnlyNI(), advance, phase, in PathDashPathEffect() 49 float phase, int native_style); in nativeCreate() argument
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | RefocusFilter.java | 31 public void logTiming(String implementation, String phase, long time) { in logTiming() argument 32 logTiming(implementation, phase, time, "ns"); in logTiming() 35 public void logTiming(String implementation, String phase, long time, String unit) { in logTiming() argument 36 timings.add(Pair.create(phase + " (" + unit + ")", Long.valueOf(time))); in logTiming() 37 Log.d(implementation, phase + ":" + time + " " + unit); in logTiming()
|
/frameworks/av/media/libaaudio/src/flowgraph/resampler/ |
D | MultiChannelResampler.cpp | 136 double phase = 0.0; // ranges from 0.0 to 1.0, fraction between samples in generateCoefficients() local 144 float tapPhase = phase - numTapsHalf; in generateCoefficients() 160 phase += phaseIncrement; in generateCoefficients() 161 while (phase >= 1.0) { in generateCoefficients() 162 phase -= 1.0; in generateCoefficients()
|
D | LinearResampler.cpp | 35 float phase = (float) getIntegerPhase() / mDenominator; in readFrame() local 40 *frame++ = f0 + (phase * (f1 - f0)); in readFrame()
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
D | IImeTracker.aidl | 50 oneway void onProgress(in IBinder binder, int phase); in onProgress() argument 58 oneway void onFailed(in ImeTracker.Token statsToken, int phase); in onFailed() argument 66 oneway void onCancelled(in ImeTracker.Token statsToken, int phase); in onCancelled() argument
|
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | ImeTrackerService.java | 100 public void onProgress(@NonNull IBinder binder, @ImeTracker.Phase int phase) { in onProgress() argument 105 entry.mPhase = phase; in onProgress() 110 public void onFailed(@NonNull ImeTracker.Token statsToken, @ImeTracker.Phase int phase) { in onFailed() argument 112 mHistory.setFinished(statsToken, ImeTracker.STATUS_FAIL, phase); in onFailed() 117 public void onCancelled(@NonNull ImeTracker.Token statsToken, @ImeTracker.Phase int phase) { in onCancelled() argument 119 mHistory.setFinished(statsToken, ImeTracker.STATUS_CANCEL, phase); in onCancelled() 236 @ImeTracker.Status int status, @ImeTracker.Phase int phase) { in setFinished() argument 245 + ImeTracker.Debug.phaseToString(phase) + " with " in setFinished() 254 if (phase != ImeTracker.PHASE_NOT_SET) { in setFinished() 255 entry.mPhase = phase; in setFinished()
|
/frameworks/av/media/libaudioprocessing/ |
D | AudioResamplerFirProcess.h | 377 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument 389 uint32_t indexP = phase >> coefShift; in fir() 390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir() 402 uint32_t indexP = phase >> coefShift; in fir() 403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir() 423 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir() 428 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir() 429 >> ((sizeof(phase)-sizeof(*coefs))*8 + 1); in fir()
|
/frameworks/base/services/flags/java/com/android/server/flags/ |
D | FeatureFlagsService.java | 69 public void onBootPhase(int phase) { in onBootPhase() argument 70 super.onBootPhase(phase); in onBootPhase() 72 if (phase == PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/av/media/libaaudio/tests/ |
D | test_resampler.cpp | 71 double phase = 0.0; in checkResampler() local 73 inputBuffer[i] = sin(phase * M_PI); in checkResampler() 74 phase += kPhaseIncrement; in checkResampler() 75 while (phase > 1.0) { in checkResampler() 76 phase -= 2.0; in checkResampler()
|
/frameworks/base/libs/hwui/jni/ |
D | PathEffect.cpp | 35 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument 39 SkPathEffect* effect = SkDashPathEffect::Make(intervals, count, phase).release(); in Dash_constructor() 44 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument 47 SkPathEffect* effect = SkPath1DPathEffect::Make(*shape, advance, phase, in OneD_constructor()
|
/frameworks/base/services/core/java/com/android/server/os/ |
D | NativeTombstoneManagerService.java | 45 public void onBootPhase(int phase) { in onBootPhase() argument 46 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | RippleShader.java | 157 public void setNoisePhase(float phase) { in setNoisePhase() argument 158 setFloatUniform("in_noisePhase", phase * 0.001f); in setNoisePhase() 163 final float turbulencePhase = phase; in setNoisePhase()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DesktopModeLaunchParamsModifier.java | 69 @Nullable ActivityOptions options, @Nullable ActivityStarter.Request request, int phase, in onCalculate() argument 74 int result = calculate(task, layout, activity, source, options, request, phase, in onCalculate() 82 @Nullable ActivityOptions options, @Nullable ActivityStarter.Request request, int phase, in calculate() argument 99 if (phase < PHASE_WINDOWING_MODE) { in calculate() 117 if (phase == PHASE_WINDOWING_MODE) { in calculate()
|
/frameworks/base/services/core/java/com/android/server/rollback/ |
D | RollbackManagerService.java | 53 public void onBootPhase(int phase) { in onBootPhase() argument 54 if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/tv/ |
D | TvRemoteService.java | 60 public void onBootPhase(int phase) { in onBootPhase() argument 62 if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|
/frameworks/base/services/fakes/java/com/android/server/example/ |
D | RedManagerService.java | 47 public void onBootPhase(int phase) { in onBootPhase() argument 48 if (phase == PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetService.java | 46 public void onBootPhase(int phase) { in onBootPhase() argument 47 if (phase == PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/ |
D | ContextHubSystemService.java | 49 public void onBootPhase(int phase) { in onBootPhase() argument 50 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
D | SensorNotificationService.java | 70 public void onBootPhase(int phase) { in onBootPhase() argument 71 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase() 82 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioCapability.java | 132 public RadioCapability(int phoneId, int session, int phase, in RadioCapability() argument 137 mPhase = phase; in RadioCapability()
|
/frameworks/proto_logging/stats/atoms/credentials/ |
D | credentials_extension_atoms.proto | 41 // Indicates a successful query phase 43 // Indicates a successful final phase 47 // Indicates general failure during our final phase 92 * Logs when a CredentialManager api is called before the query phase. 212 // The timestamp, normalized from call began as '0' when the query phase starts 214 // The timestamp when the query phase ends 216 // The timestamp when the ui phase is invoked 218 // The timestamp when the ui phase ends 220 // The timestamp when the final phase ends (returned to client) 224 // Reveals if there was an exception in the final phase from the chosen provider [all …]
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | VSyncPredictor.cpp | 465 const auto phase = Duration(mPastExpectedPresentTimes.back() - expectedPresentTime); in ensureMinFrameDurationIsKept() local 466 if (phase > 0ns) { in ensureMinFrameDurationIsKept() 468 timeline.shiftVsyncSequence(phase); in ensureMinFrameDurationIsKept() 471 return phase; in ensureMinFrameDurationIsKept() 510 const auto phase = ensureMinFrameDurationIsKept(expectedPresentTime, lastConfirmedPresentTime); in onFrameBegin() local 511 if (phase > 0ns) { in onFrameBegin() 527 const auto phase = ensureMinFrameDurationIsKept(expectedPresentTime, lastConfirmedPresentTime); in onFrameMissed() local 528 if (phase > 0ns) { in onFrameMissed() 753 void VSyncPredictor::VsyncTimeline::shiftVsyncSequence(Duration phase) { in shiftVsyncSequence() argument 755 ATRACE_FORMAT_INSTANT("adjusting vsync by %.2f", static_cast<float>(phase.ns()) / 1e6f); in shiftVsyncSequence() [all …]
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_angle_platform.cpp | 65 PlatformMethods* /**platform*/, char phase, const unsigned char* /*category_group_enabled*/, in addTraceEvent() argument 69 switch (phase) { in addTraceEvent()
|