Lines Matching refs:composite
507 ndk::ScopedAStatus Vibrator::compose(const std::vector<CompositeEffect> &composite, in compose() argument
509 VFTRACE(composite, callback); in compose()
516 if (composite.size() > COMPOSE_SIZE_MAX || composite.empty()) { in compose()
523 nextEffectDelay = composite.front().delayMs; in compose()
530 size = composite.size() + 1; in compose()
532 size = composite.size(); in compose()
544 for (uint32_t i_curr = 0, i_next = 1; i_curr < composite.size(); i_curr++, i_next++) { in compose()
545 auto &e_curr = composite[i_curr]; in compose()
566 if (i_next < composite.size()) { in compose()
567 auto &e_next = composite[i_next]; in compose()
1053 ndk::ScopedAStatus Vibrator::composePwle(const std::vector<PrimitivePwle> &composite, in composePwle() argument
1055 VFTRACE(composite, callback); in composePwle()
1067 if (composite.empty() || composite.size() > COMPOSE_PWLE_SIZE_MAX_DEFAULT) { in composePwle()
1087 for (auto &e : composite) { in composePwle()