Lines Matching refs:id
102 const sp<SurfaceComposerClient>& client, SurfaceID id);
106 status_t setPosition(const sp<SurfaceComposerClient>& client, SurfaceID id,
108 status_t setSize(const sp<SurfaceComposerClient>& client, SurfaceID id,
110 status_t setLayer(const sp<SurfaceComposerClient>& client, SurfaceID id,
112 status_t setFlags(const sp<SurfaceComposerClient>& client, SurfaceID id,
115 const sp<SurfaceComposerClient>& client, SurfaceID id,
117 status_t setAlpha(const sp<SurfaceComposerClient>& client, SurfaceID id,
119 status_t setMatrix(const sp<SurfaceComposerClient>& client, SurfaceID id,
122 const sp<SurfaceComposerClient>& client, SurfaceID id,
154 const sp<SurfaceComposerClient>& client, SurfaceID id) { in getLayerStateLocked() argument
158 s.state.surface = id; in getLayerStateLocked()
171 SurfaceID id, float x, float y) { in setPosition() argument
173 layer_state_t* s = getLayerStateLocked(client, id); in setPosition()
183 SurfaceID id, uint32_t w, uint32_t h) { in setSize() argument
185 layer_state_t* s = getLayerStateLocked(client, id); in setSize()
195 SurfaceID id, int32_t z) { in setLayer() argument
197 layer_state_t* s = getLayerStateLocked(client, id); in setLayer()
206 SurfaceID id, uint32_t flags, in setFlags() argument
209 layer_state_t* s = getLayerStateLocked(client, id); in setFlags()
220 const sp<SurfaceComposerClient>& client, SurfaceID id, in setTransparentRegionHint() argument
223 layer_state_t* s = getLayerStateLocked(client, id); in setTransparentRegionHint()
232 SurfaceID id, float alpha) { in setAlpha() argument
234 layer_state_t* s = getLayerStateLocked(client, id); in setAlpha()
243 SurfaceID id, float dsdx, float dtdx, in setMatrix() argument
246 layer_state_t* s = getLayerStateLocked(client, id); in setMatrix()
260 SurfaceID id, uint32_t tint) { in setFreezeTint() argument
262 layer_state_t* s = getLayerStateLocked(client, id); in setFreezeTint()
384 status_t SurfaceComposerClient::setFreezeTint(SurfaceID id, uint32_t tint) { in setFreezeTint() argument
385 return getComposer().setFreezeTint(this, id, tint); in setFreezeTint()
388 status_t SurfaceComposerClient::setPosition(SurfaceID id, float x, float y) { in setPosition() argument
389 return getComposer().setPosition(this, id, x, y); in setPosition()
392 status_t SurfaceComposerClient::setSize(SurfaceID id, uint32_t w, uint32_t h) { in setSize() argument
393 return getComposer().setSize(this, id, w, h); in setSize()
396 status_t SurfaceComposerClient::setLayer(SurfaceID id, int32_t z) { in setLayer() argument
397 return getComposer().setLayer(this, id, z); in setLayer()
400 status_t SurfaceComposerClient::hide(SurfaceID id) { in hide() argument
401 return getComposer().setFlags(this, id, in hide()
406 status_t SurfaceComposerClient::show(SurfaceID id, int32_t) { in show() argument
407 return getComposer().setFlags(this, id, in show()
412 status_t SurfaceComposerClient::freeze(SurfaceID id) { in freeze() argument
413 return getComposer().setFlags(this, id, in freeze()
418 status_t SurfaceComposerClient::unfreeze(SurfaceID id) { in unfreeze() argument
419 return getComposer().setFlags(this, id, in unfreeze()
424 status_t SurfaceComposerClient::setFlags(SurfaceID id, uint32_t flags, in setFlags() argument
426 return getComposer().setFlags(this, id, flags, mask); in setFlags()
429 status_t SurfaceComposerClient::setTransparentRegionHint(SurfaceID id, in setTransparentRegionHint() argument
431 return getComposer().setTransparentRegionHint(this, id, transparentRegion); in setTransparentRegionHint()
434 status_t SurfaceComposerClient::setAlpha(SurfaceID id, float alpha) { in setAlpha() argument
435 return getComposer().setAlpha(this, id, alpha); in setAlpha()
438 status_t SurfaceComposerClient::setMatrix(SurfaceID id, float dsdx, float dtdx, in setMatrix() argument
440 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy); in setMatrix()