/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | DashPathEffect_Delegate.java | 76 /*package*/ static long nativeCreate(float intervals[], float phase) { in nativeCreate() argument 77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase); in nativeCreate() 83 private DashPathEffect_Delegate(float intervals[], float phase) { in DashPathEffect_Delegate() argument 86 mPhase = phase; in DashPathEffect_Delegate()
|
D | PathDashPathEffect_Delegate.java | 65 /*package*/ static long nativeCreate(long native_path, float advance, float phase, in nativeCreate() argument
|
/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/base/services/core/java/com/android/server/ |
D | BluetoothService.java | 35 public void onBootPhase(int phase) { in onBootPhase() argument 36 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase() 39 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
|
D | ContextHubSystemService.java | 37 public void onBootPhase(int phase) { in onBootPhase() argument 38 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
D | SystemServiceManager.java | 129 public void startBootPhase(final int phase) { in startBootPhase() argument 130 if (phase <= mCurrentPhase) { in startBootPhase() 133 mCurrentPhase = phase; in startBootPhase() 137 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "OnBootPhase " + phase); in startBootPhase()
|
D | SensorNotificationService.java | 51 public void onBootPhase(int phase) { in onBootPhase() argument 52 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|
D | SystemService.java | 126 public void onBootPhase(int phase) {} in onBootPhase() argument
|
/frameworks/av/services/audioflinger/ |
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()
|
D | AudioResamplerSinc.cpp | 400 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, in filterCoefficient() argument 412 uint32_t indexP = ( phase & c.cMask) >> c.cShift; in filterCoefficient() 413 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient() 414 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient() 415 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
|
/frameworks/native/services/surfaceflinger/ |
D | DispSync.cpp | 78 void updateModel(nsecs_t period, nsecs_t phase, nsecs_t referenceTime) { in updateModel() argument 82 mPhase = phase; in updateModel() 180 status_t addEventListener(const char* name, nsecs_t phase, in addEventListener() argument 193 listener.mPhase = phase; in addEventListener() 303 nsecs_t phase = mPhase + listener.mPhase; in computeListenerNextEventTimeLocked() local 304 ALOGV("[%s] Phase = %" PRId64, mName, ns2us(phase)); in computeListenerNextEventTimeLocked() 305 baseTime -= phase; in computeListenerNextEventTimeLocked() 322 nsecs_t t = (numPeriods + 1) * mPeriod + phase; in computeListenerNextEventTimeLocked() 502 status_t DispSync::addEventListener(const char* name, nsecs_t phase, in addEventListener() argument 505 return mThread->addEventListener(name, phase, callback); in addEventListener() [all …]
|
D | DispSync.h | 114 status_t addEventListener(const char* name, nsecs_t phase,
|
/frameworks/base/core/jni/android/graphics/ |
D | PathEffect.cpp | 36 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument 44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase); in Dash_constructor() 49 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument 52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase, in OneD_constructor()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/ |
D | WifiNanService.java | 40 public void onBootPhase(int phase) { in onBootPhase() argument 41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pService.java | 40 public void onBootPhase(int phase) { in onBootPhase() argument 41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetService.java | 40 public void onBootPhase(int phase) { in onBootPhase() argument 41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiService.java | 41 public void onBootPhase(int phase) { in onBootPhase() argument 42 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetService.java | 42 public void onBootPhase(int phase) { in onBootPhase() argument 43 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioCapability.java | 127 public RadioCapability(int phoneId, int session, int phase, in RadioCapability() argument 131 mPhase = phase; in RadioCapability()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/ |
D | WifiScanningService.java | 50 public void onBootPhase(int phase) { in onBootPhase() argument 51 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/ |
D | SoundTriggerService.java | 74 public void onBootPhase(int phase) { in onBootPhase() argument 75 if (PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase() 78 } else if (PHASE_THIRD_PARTY_APPS_CAN_START == phase) { in onBootPhase()
|
/frameworks/base/services/core/java/com/android/server/lights/ |
D | LightsService.java | 171 public void onBootPhase(int phase) { in onBootPhase() argument 172 if (phase == PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/frameworks/av/include/media/stagefright/ |
D | VideoFrameScheduler.h | 79 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
|
/frameworks/base/services/core/java/com/android/server/twilight/ |
D | TwilightService.java | 117 public void onBootPhase(int phase) { in onBootPhase() argument 118 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()
|