Searched refs:phase (Results 1 - 25 of 45) 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/base/services/core/java/com/android/server/
H A DBluetoothService.java39 public void onBootPhase(int phase) { argument
40 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
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_COMPLETED} 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) {
/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) {
/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/core/jni/android/graphics/
H A DPathEffect.cpp38 jfloatArray intervalArray, jfloat phase) {
46 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase);
51 jlong shapeHandle, jfloat advance, jfloat phase, jint style) {
54 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase,
37 Dash_constructor(JNIEnv* env, jobject, jfloatArray intervalArray, jfloat phase) argument
50 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.
264 * with filter phase interpolation.
271 * @param coefsP is one phase of the polyphase filter bank of size halfNumCoefs, corresponding
274 * @param coefsN is one phase of the polyphase filter bank of size halfNumCoefs, corresponding
277 * @param coefsP1 is the next phase of coefsP (used for interpolation).
279 * @param coefsN1 is the next phase of coefsN (used for interpolation).
320 * @param phase is the fractional distance between input frames for interpolation:
321 * phase >= 0 && phase < phaseWrapLimi
376 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);
H A DAudioResamplerSinc.cpp393 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, argument
405 uint32_t indexP = ( phase & c.cMask) >> c.cShift;
406 uint32_t lerpP = ( phase & c.pMask) >> c.pShift;
407 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift;
408 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift;
/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/av/include/media/stagefright/
H A DVideoFrameScheduler.h58 // keep current estimate, but restart phase
79 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
/frameworks/base/tools/aapt2/
H A DMain.cpp276 // The phase to process.
277 Phase phase; member in struct:AaptOptions
295 // depending on the phase.
317 // when the phase is DumpStyleGraph.
1075 options.phase = AaptOptions::Phase::Link;
1077 options.phase = AaptOptions::Phase::Compile;
1079 options.phase = AaptOptions::Phase::Dump;
1081 options.phase = AaptOptions::Phase::DumpStyleGraph;
1088 if (options.phase == AaptOptions::Phase::Link) {
1120 if (options.phase
[all...]
/frameworks/base/services/core/java/com/android/server/telecom/
H A DTelecomLoaderService.java168 public void onBootPhase(int phase) { argument
169 if (phase == PHASE_ACTIVITY_MANAGER_READY) {
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbService.java70 public void onBootPhase(int phase) { argument
71 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
73 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) {
/frameworks/av/media/libstagefright/
H A DVideoFrameScheduler.cpp126 nsecs_t phase, nsecs_t period, size_t numSamplesToUse,
150 int64_t y = divRound(time - phase, period >> kPrecision);
260 ALOGV("priming[%zu] phase:%lld period:%lld",
283 // initialize phase to the current render time
304 ALOGV("new phase:%lld period:%lld", (long long)mPhase, (long long)mPeriod);
125 fit( nsecs_t phase, nsecs_t period, size_t numSamplesToUse, int64_t *a, int64_t *b, int64_t *err) argument

Completed in 494 milliseconds

12