Lines Matching refs:id

134             const sp<SurfaceComposerClient>& client, const sp<IBinder>& id);
141 sp<IBinder> getBuiltInDisplay(int32_t id);
143 status_t setPosition(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
145 status_t setSize(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
147 status_t setLayer(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
149 status_t setFlags(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
152 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
154 status_t setAlpha(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
156 status_t setMatrix(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
159 status_t setCrop(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
162 const sp<IBinder>& id, const Rect& crop);
164 const sp<IBinder>& id, uint32_t layerStack);
166 const sp<IBinder>& id, const sp<IBinder>& handle,
169 const sp<IBinder>& id, int32_t overrideScalingMode);
171 const sp<IBinder>& id);
208 sp<IBinder> Composer::getBuiltInDisplay(int32_t id) {
209 return ComposerService::getComposerService()->getBuiltInDisplay(id);
262 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id) {
266 s.state.surface = id;
279 const sp<IBinder>& id, float x, float y) {
281 layer_state_t* s = getLayerStateLocked(client, id);
291 const sp<IBinder>& id, uint32_t w, uint32_t h) {
293 layer_state_t* s = getLayerStateLocked(client, id);
307 const sp<IBinder>& id, uint32_t z) {
309 layer_state_t* s = getLayerStateLocked(client, id);
318 const sp<IBinder>& id, uint32_t flags,
321 layer_state_t* s = getLayerStateLocked(client, id);
336 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
339 layer_state_t* s = getLayerStateLocked(client, id);
348 const sp<IBinder>& id, float alpha) {
350 layer_state_t* s = getLayerStateLocked(client, id);
359 const sp<IBinder>& id, uint32_t layerStack) {
361 layer_state_t* s = getLayerStateLocked(client, id);
370 const sp<IBinder>& id, float dsdx, float dtdx,
373 layer_state_t* s = getLayerStateLocked(client, id);
387 const sp<IBinder>& id, const Rect& crop) {
389 layer_state_t* s = getLayerStateLocked(client, id);
398 const sp<IBinder>& id, const Rect& crop) {
400 layer_state_t* s = getLayerStateLocked(client, id);
410 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
413 layer_state_t* s = getLayerStateLocked(client, id);
425 const sp<IBinder>& id, int32_t overrideScalingMode) {
427 layer_state_t* s = getLayerStateLocked(client, id);
452 const sp<IBinder>& id) {
454 layer_state_t* s = getLayerStateLocked(client, id);
603 sp<IBinder> SurfaceComposerClient::getBuiltInDisplay(int32_t id) {
604 return Composer::getInstance().getBuiltInDisplay(id);
657 status_t SurfaceComposerClient::setCrop(const sp<IBinder>& id, const Rect& crop) {
658 return getComposer().setCrop(this, id, crop);
661 status_t SurfaceComposerClient::setFinalCrop(const sp<IBinder>& id,
663 return getComposer().setFinalCrop(this, id, crop);
666 status_t SurfaceComposerClient::setPosition(const sp<IBinder>& id, float x, float y) {
667 return getComposer().setPosition(this, id, x, y);
670 status_t SurfaceComposerClient::setSize(const sp<IBinder>& id, uint32_t w, uint32_t h) {
671 return getComposer().setSize(this, id, w, h);
674 status_t SurfaceComposerClient::setLayer(const sp<IBinder>& id, uint32_t z) {
675 return getComposer().setLayer(this, id, z);
678 status_t SurfaceComposerClient::hide(const sp<IBinder>& id) {
679 return getComposer().setFlags(this, id,
684 status_t SurfaceComposerClient::show(const sp<IBinder>& id) {
685 return getComposer().setFlags(this, id,
690 status_t SurfaceComposerClient::setFlags(const sp<IBinder>& id, uint32_t flags,
692 return getComposer().setFlags(this, id, flags, mask);
695 status_t SurfaceComposerClient::setTransparentRegionHint(const sp<IBinder>& id,
697 return getComposer().setTransparentRegionHint(this, id, transparentRegion);
700 status_t SurfaceComposerClient::setAlpha(const sp<IBinder>& id, float alpha) {
701 return getComposer().setAlpha(this, id, alpha);
704 status_t SurfaceComposerClient::setLayerStack(const sp<IBinder>& id, uint32_t layerStack) {
705 return getComposer().setLayerStack(this, id, layerStack);
708 status_t SurfaceComposerClient::setMatrix(const sp<IBinder>& id, float dsdx, float dtdx,
710 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);
713 status_t SurfaceComposerClient::deferTransactionUntil(const sp<IBinder>& id,
715 return getComposer().deferTransactionUntil(this, id, handle, frameNumber);
719 const sp<IBinder>& id, int32_t overrideScalingMode) {
721 this, id, overrideScalingMode);
725 const sp<IBinder>& id) {
726 return getComposer().setGeometryAppliesWithResize(this, id);
784 status_t SurfaceComposerClient::setActiveConfig(const sp<IBinder>& display, int id) {
785 return ComposerService::getComposerService()->setActiveConfig(display, id);