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

123

/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/services/core/java/com/android/server/
H A DBluetoothService.java35 public void onBootPhase(int phase) { argument
36 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
39 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
H A DContextHubSystemService.java37 public void onBootPhase(int phase) { argument
38 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
H A DSensorNotificationService.java51 public void onBootPhase(int phase) { argument
52 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) {
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 DSystemServiceManager.java124 * Starts the specified boot phase for all system services that have been started up to
127 * @param phase The boot phase to start.
129 public void startBootPhase(final int phase) { argument
130 if (phase <= mCurrentPhase) {
131 throw new IllegalArgumentException("Next phase must be larger than previous");
133 mCurrentPhase = phase;
135 Slog.i(TAG, "Starting phase " + mCurrentPhase);
137 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "OnBootPhase " + phase);
146 + ": onBootPhase threw an exception during phase "
[all...]
H A DDockObserver.java89 public void onBootPhase(int phase) { argument
90 if (phase == PHASE_ACTIVITY_MANAGER_READY) {
/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/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/
H A DWifiService.java41 public void onBootPhase(int phase) { argument
42 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
H A DWifiNanService.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/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/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/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningService.java50 public void onBootPhase(int phase) { argument
51 if (phase == SystemService.PHASE_SYSTEM_SERVICES_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.
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);
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp45 // vsync event model or phase issues.
48 // Setting this to true adds a zero-phase tracer for correlating with hardware
78 void updateModel(nsecs_t period, nsecs_t phase, nsecs_t referenceTime) { argument
82 mPhase = phase;
180 status_t addEventListener(const char* name, nsecs_t phase, argument
193 listener.mPhase = phase;
303 nsecs_t phase = mPhase + listener.mPhase; local
304 ALOGV("[%s] Phase = %" PRId64, mName, ns2us(phase));
305 baseTime -= phase;
306 ALOGV("[%s] baseTime - phase
633 nsecs_t phase = mReferenceTime + mPhase; local
[all...]
H A DDispSync.h42 // display and uses that model to execute period callbacks at specific phase
111 // given phase offset from the hardware vsync events. The callback is
114 status_t addEventListener(const char* name, nsecs_t phase,
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/services/voiceinteraction/java/com/android/server/soundtrigger/
H A DSoundTriggerService.java74 public void onBootPhase(int phase) { argument
75 if (PHASE_SYSTEM_SERVICES_READY == phase) {
78 } else if (PHASE_THIRD_PARTY_APPS_CAN_START == phase) {
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DMetricsLoggerService.java53 public void onBootPhase(int phase) { argument
54 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {

Completed in 334 milliseconds

123