Searched defs:phase (Results 1 - 25 of 35) 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/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/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 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/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/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/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 DDockObserver.java89 public void onBootPhase(int phase) { argument
90 if (phase == PHASE_ACTIVITY_MANAGER_READY) {
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 DUiModeManagerService.java301 public void onBootPhase(int phase) { argument
302 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
H A DBatteryService.java185 public void onBootPhase(int phase) { argument
186 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/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/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.cpp643 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, argument
655 uint32_t indexP = ( phase & c.cMask) >> c.cShift;
656 uint32_t lerpP = ( phase & c.pMask) >> c.pShift;
657 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift;
658 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift;
/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/av/media/libmediaplayerservice/
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/core/java/com/android/server/job/
H A DJobSchedulerService.java287 public void onBootPhase(int phase) { argument
288 if (PHASE_SYSTEM_SERVICES_READY == phase) {
297 } else if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) {
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerService.java90 public void onBootPhase(int phase) { argument
91 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) {
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java106 public void onBootPhase(int phase) { argument
107 if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) {

Completed in 557 milliseconds

12