Lines Matching refs:window
134 ACameraWindowType* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionOutput_create() argument
136 if (window == nullptr || out == nullptr) { in ACaptureSessionOutput_create()
138 __FUNCTION__, window, out); in ACaptureSessionOutput_create()
141 *out = new ACaptureSessionOutput(window, false); in ACaptureSessionOutput_create()
147 ACameraWindowType* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionSharedOutput_create() argument
149 if (window == nullptr || out == nullptr) { in ACaptureSessionSharedOutput_create()
151 __FUNCTION__, window, out); in ACaptureSessionSharedOutput_create()
154 *out = new ACaptureSessionOutput(window, true); in ACaptureSessionSharedOutput_create()
160 ACameraWindowType* window, const char* physicalId, in ACaptureSessionPhysicalOutput_create() argument
163 if (window == nullptr || physicalId == nullptr || out == nullptr) { in ACaptureSessionPhysicalOutput_create()
165 __FUNCTION__, window, physicalId, out); in ACaptureSessionPhysicalOutput_create()
168 *out = new ACaptureSessionOutput(window, false, physicalId); in ACaptureSessionPhysicalOutput_create()
174 ACameraWindowType* window) { in ACaptureSessionSharedOutput_add() argument
176 if ((window == nullptr) || (out == nullptr)) { in ACaptureSessionSharedOutput_add()
178 __FUNCTION__, window, out); in ACaptureSessionSharedOutput_add()
186 if (areWindowTypesEqual(out->mWindow, window)) { in ACaptureSessionSharedOutput_add()
192 auto insert = out->mSharedWindows.insert(window); in ACaptureSessionSharedOutput_add()
199 ACameraWindowType* window) { in ACaptureSessionSharedOutput_remove() argument
201 if ((window == nullptr) || (out == nullptr)) { in ACaptureSessionSharedOutput_remove()
203 __FUNCTION__, window, out); in ACaptureSessionSharedOutput_remove()
211 if (areWindowTypesEqual(out->mWindow, window)) { in ACaptureSessionSharedOutput_remove()
217 auto remove = out->mSharedWindows.erase(window); in ACaptureSessionSharedOutput_remove()