Lines Matching defs:id

129             const sp<SurfaceComposerClient>& client, SurfaceID id);
135 sp<IBinder> getBuiltInDisplay(int32_t id);
137 status_t setPosition(const sp<SurfaceComposerClient>& client, SurfaceID id,
139 status_t setSize(const sp<SurfaceComposerClient>& client, SurfaceID id,
141 status_t setLayer(const sp<SurfaceComposerClient>& client, SurfaceID id,
143 status_t setFlags(const sp<SurfaceComposerClient>& client, SurfaceID id,
146 const sp<SurfaceComposerClient>& client, SurfaceID id,
148 status_t setAlpha(const sp<SurfaceComposerClient>& client, SurfaceID id,
150 status_t setMatrix(const sp<SurfaceComposerClient>& client, SurfaceID id,
153 status_t setCrop(const sp<SurfaceComposerClient>& client, SurfaceID id,
156 SurfaceID id, uint32_t layerStack);
183 sp<IBinder> Composer::getBuiltInDisplay(int32_t id) {
184 return ComposerService::getComposerService()->getBuiltInDisplay(id);
222 const sp<SurfaceComposerClient>& client, SurfaceID id) {
226 s.state.surface = id;
239 SurfaceID id, float x, float y) {
241 layer_state_t* s = getLayerStateLocked(client, id);
251 SurfaceID id, uint32_t w, uint32_t h) {
253 layer_state_t* s = getLayerStateLocked(client, id);
267 SurfaceID id, int32_t z) {
269 layer_state_t* s = getLayerStateLocked(client, id);
278 SurfaceID id, uint32_t flags,
281 layer_state_t* s = getLayerStateLocked(client, id);
292 const sp<SurfaceComposerClient>& client, SurfaceID id,
295 layer_state_t* s = getLayerStateLocked(client, id);
304 SurfaceID id, float alpha) {
306 layer_state_t* s = getLayerStateLocked(client, id);
315 SurfaceID id, uint32_t layerStack) {
317 layer_state_t* s = getLayerStateLocked(client, id);
326 SurfaceID id, float dsdx, float dtdx,
329 layer_state_t* s = getLayerStateLocked(client, id);
343 SurfaceID id, const Rect& crop) {
345 layer_state_t* s = getLayerStateLocked(client, id);
468 sp<IBinder> SurfaceComposerClient::getBuiltInDisplay(int32_t id) {
469 return Composer::getInstance().getBuiltInDisplay(id);
499 status_t SurfaceComposerClient::setCrop(SurfaceID id, const Rect& crop) {
500 return getComposer().setCrop(this, id, crop);
503 status_t SurfaceComposerClient::setPosition(SurfaceID id, float x, float y) {
504 return getComposer().setPosition(this, id, x, y);
507 status_t SurfaceComposerClient::setSize(SurfaceID id, uint32_t w, uint32_t h) {
508 return getComposer().setSize(this, id, w, h);
511 status_t SurfaceComposerClient::setLayer(SurfaceID id, int32_t z) {
512 return getComposer().setLayer(this, id, z);
515 status_t SurfaceComposerClient::hide(SurfaceID id) {
516 return getComposer().setFlags(this, id,
521 status_t SurfaceComposerClient::show(SurfaceID id) {
522 return getComposer().setFlags(this, id,
527 status_t SurfaceComposerClient::setFlags(SurfaceID id, uint32_t flags,
529 return getComposer().setFlags(this, id, flags, mask);
532 status_t SurfaceComposerClient::setTransparentRegionHint(SurfaceID id,
534 return getComposer().setTransparentRegionHint(this, id, transparentRegion);
537 status_t SurfaceComposerClient::setAlpha(SurfaceID id, float alpha) {
538 return getComposer().setAlpha(this, id, alpha);
541 status_t SurfaceComposerClient::setLayerStack(SurfaceID id, uint32_t layerStack) {
542 return getComposer().setLayerStack(this, id, layerStack);
545 status_t SurfaceComposerClient::setMatrix(SurfaceID id, float dsdx, float dtdx,
547 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);