Searched refs:phase (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DDashPathEffect.java24 * specifying the "off" intervals. phase is an offset into the intervals
32 * @param phase offset into the intervals array
34 public DashPathEffect(float intervals[], float phase) { argument
38 native_instance = nativeCreate(intervals, phase);
41 private static native long nativeCreate(float intervals[], float phase); argument
H A DPathDashPathEffect.java39 * @param phase amount to offset before the first shape is stamped
42 public PathDashPathEffect(Path shape, float advance, float phase, argument
44 native_instance = nativeCreate(shape.ni(), advance, phase,
49 float phase, int native_style);
48 nativeCreate(long native_path, float advance, float phase, int native_style) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DDashPathEffect_Delegate.java76 /*package*/ static long nativeCreate(float intervals[], float phase) { argument
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) { argument
86 mPhase = phase;
H A DPathDashPathEffect_Delegate.java65 /*package*/ static long nativeCreate(long native_path, float advance, float phase, argument
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetService.java42 public void onBootPhase(int phase) { argument
43 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) {
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetService.java40 public void onBootPhase(int phase) { argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pService.java40 public void onBootPhase(int phase) { argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiScanningService.java44 public void onBootPhase(int phase) { argument
45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
H A DWifiService.java44 public void onBootPhase(int phase) { argument
45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
H A DRttService.java436 public void onBootPhase(int phase) { argument
437 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRadioCapability.java119 * @param phase the request phase id
127 public RadioCapability(int phoneId, int session, int phase, argument
131 mPhase = phase;
166 * get radio capability phase.
/frameworks/base/services/core/java/com/android/server/telecom/
H A DTelecomLoaderService.java83 public void onBootPhase(int phase) { argument
84 if (phase == PHASE_ACTIVITY_MANAGER_READY) {
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp36 jfloatArray intervalArray, jfloat phase) {
44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase);
49 jlong shapeHandle, jfloat advance, jfloat phase, jint style) {
52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase,
35 Dash_constructor(JNIEnv* env, jobject, jfloatArray intervalArray, jfloat phase) argument
48 OneD_constructor(JNIEnv* env, jobject, jlong shapeHandle, jfloat advance, jfloat phase, jint style) argument
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirProcess.h173 * ProcessL() calls ProcessBase() with TFUNC = InterpNull, for fixed/locked phase.
174 * Process() calls ProcessBase() with TFUNC = InterpCompute, for interpolated phase.
282 * @param phase is the fractional distance between input frames for interpolation:
283 * phase >= 0 && phase < phaseWrapLimit. It can be thought of as a rational fraction
284 * of phase/phaseWrapLimit.
289 * @param coefShift gives the bit alignment of the polyphase index in the phase parameter.
314 * In between calls to filterCoefficient, the phase is incremented by phaseIncrement, where
317 * The filter polyphase index is given by indexP = phase >> coefShift. Due to
323 * lerpP = phase << 3
338 fir(TO* const out, const uint32_t phase, const uint32_t phaseWrapLimit, const int coefShift, const int halfNumCoefs, const TC* const coefs, const TI* const samples, const TO* const volumeLR) argument
[all...]
H A DAudioResamplerSinc.h55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp39 // vsync event model or phase issues.
64 void updateModel(nsecs_t period, nsecs_t phase) { argument
67 mPhase = phase;
147 status_t addEventListener(nsecs_t phase, const sp<DispSync::Callback>& callback) { argument
157 listener.mPhase = phase;
249 nsecs_t phase = mPhase + listener.mPhase; local
250 nsecs_t t = (((ref - phase) / mPeriod) + 1) * mPeriod + phase;
302 // Even if we're just ignoring the fences, the zero-phase tracing is
385 status_t DispSync::addEventListener(nsecs_t phase, argument
[all...]
H A DDispSync.h29 // sync framework, or if all phase offsets are zero. The latter is useful
31 // phase-offset VSYNC events.
45 // display and uses that model to execute period callbacks at specific phase
114 // given phase offset from the hardware vsync events. The callback is
117 status_t addEventListener(nsecs_t phase, const sp<Callback>& callback);
148 // mPhase is the phase offset of the modeled vsync events. It is the
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java118 * Starts the specified boot phase for all system services that have been started up to
121 * @param phase The boot phase to start.
123 public void startBootPhase(final int phase) { argument
124 if (phase <= mCurrentPhase) {
125 throw new IllegalArgumentException("Next phase must be larger than previous");
127 mCurrentPhase = phase;
129 Slog.i(TAG, "Starting phase " + mCurrentPhase);
139 + ": onBootPhase threw an exception during phase "
215 builder.append("Current phase
[all...]
H A DSystemService.java37 * until {@link #PHASE_BOOT_COMPLETE} is sent, which is the last boot phase. Each phase
54 * After receiving this boot phase, services can obtain lock settings data.
59 * After receiving this boot phase, services can safely call into core system services
65 * After receiving this boot phase, services can broadcast Intents.
70 * After receiving this boot phase, services can start/bind to third party apps.
76 * After receiving this boot phase, services can allow user interaction with the device.
77 * This phase occurs when boot has completed and the home application has started.
78 * System services may prefer to listen to this phase rather than registering a
107 * TODO: we should define in which phase thi
126 onBootPhase(int phase) argument
[all...]
H A DDockObserver.java89 public void onBootPhase(int phase) { argument
90 if (phase == PHASE_ACTIVITY_MANAGER_READY) {
H A DUiModeManagerService.java301 public void onBootPhase(int phase) { argument
302 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
/frameworks/av/media/libmediaplayerservice/
H A DVideoFrameScheduler.h55 // keep current estimate, but restart phase
75 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
H A DVideoFrameScheduler.cpp127 nsecs_t phase, nsecs_t period, size_t numSamplesToUse,
151 int64_t y = divRound(time - phase, period >> kPrecision);
261 ALOGV("priming[%zu] phase:%lld period:%lld", numSamplesToUse, mPhase, mPeriod);
283 // initialize phase to the current render time
304 ALOGV("new phase:%lld period:%lld", (long long)mPhase, (long long)mPeriod);
126 fit( nsecs_t phase, nsecs_t period, size_t numSamplesToUse, int64_t *a, int64_t *b, int64_t *err) argument
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbService.java63 public void onBootPhase(int phase) { argument
64 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java138 public void onBootPhase(int phase) { argument
143 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
146 } else if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) {
149 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) {

Completed in 1167 milliseconds

12