コード例 #1
0
ファイル: code2.c プロジェクト: swwangyang/screencapture_log
        virtual bool handler() {


   LOGI("handler()");
            Mutex::Autolock _l(flinger->mStateLock);

            // if we have secure windows, never allow the screen capture
            if (flinger->mSecureFrameBuffer)
                return true;

            result = flinger->captureScreenImplLocked(dpy,
                    heap, w, h, f, sw, sh);

            return true;
        }
コード例 #2
0
ファイル: Client.cpp プロジェクト: aurorarom/JsonUtil
 virtual bool handler() {
     result = flinger->createLayer(name, client, w, h, format, flags,
             handle, gbp);
     return true;
 }
コード例 #3
0
 virtual bool handler() {
     result = flinger->createLayer(params, name, client,
             w, h, format, flags);
     return true;
 }
コード例 #4
0
ファイル: Client.cpp プロジェクト: MIPS/frameworks-native
 virtual bool handler() {
     result = flinger->createLayer(name, client, w, h, format, flags,
             windowType, ownerUid, handle, gbp, parent);
     return true;
 }