环境:扬帆rk3399  openharmony 3.1 release  api 9

操作: 设置-系统-恢复出厂设置   后,/storage/media/100/files路径下的Pictures文件夹被删除,手动创建该目录并给予读写权限,可以读取图片

调用如下接口写入图片无打印,Pictures没有创建新图片。

没有恢复出厂设置前是可以生成图片的,且用其他环境也是可以的。

问题:如何重新生成Pictures路径允许图片写入,需要哪些操作

import mediaLibrary from '@ohos.multimedia.mediaLibrary'
import fileio from '@ohos.fileio'

async writeFdPath(imageName: string, imageData: ArrayBuffer) {
 hilog.info(0, TAG, 'imageName %s length is %d',imageName, imageData.byteLength)
 const media = mediaLibrary.getMediaLibrary(globalThis.context);
 const publicPath = await media.getPublicDirectory(mediaLibrary.DirectoryType.DIR_IMAGE);
 hilog.info(0, TAG, 'publicPath %s',publicPath)            //执行程序 打印 Pictures/
 // Create image asset.
 const imageAssetInfo = await media.createAsset(
 mediaLibrary.MediaType.IMAGE,
  imageName,
  publicPath
 )
 const imageFd = await imageAssetInfo.open('rw');
 let result = await fileio.write(imageFd, imageData)
 try{
      let result = await fileio.write(imageFd, imageData)
  }catch(err){
      hilog.info(0, TAG, 'result %s', JSON.stringify(err))
  }                                                               //执行程序 没有打印
 await imageAssetInfo.close(imageFd);
 await media.release();

 

 

 

 

 

新增日志

11-27 18:59:50.989 6046-6112/com.example.softbusclient I 00000/Softbusclient: imageName man1_@ai1.jpg length is 98592
11-27 18:59:50.989 6046-6112/com.example.softbusclient D 02b00/MediaLibraryNapi: GetMediaLibraryNewInstance IN
11-27 18:59:50.989 6046-6112/com.example.softbusclient D 01800/SAMGR: GetSystemAbilityWrapper:Waiting for sa 3007,
11-27 18:59:50.989 6046-6112/com.example.softbusclient D 01800/SAMGR: CheckSystemAbility called, ability id is 3007, isExist is 0
11-27 18:59:50.989 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 12, flags= 0
11-27 18:59:50.989 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 3007
11-27 18:59:50.989 200-200/samgr I 01800/SAMGR: found service : 3007.
11-27 18:59:50.989 6046-6112/com.example.softbusclient D 01800/SAMGR: GetSystemAbilityWrapper found sa 3007
11-27 18:59:50.990 6046-6112/com.example.softbusclient I 02200/JsApp: MediaLibrary getMediaLibrary inner
11-27 18:59:50.990 6046-6112/com.example.softbusclient I 02200/JsApp: MediaLibrary getMediaLibrary inner add startMediaSelect
11-27 18:59:50.990 6046-6112/com.example.softbusclient I 03900/NAPI: [native_api.cpp(napi_call_function)] engine: 02931500, nativeRecv: 00000000, nativeFunc: 02E21510, nativeArgv: D9D48CA8, resultValue: 02E0A5C0
11-27 18:59:50.990 6046-6112/com.example.softbusclient I 00000/Softbusclient: [INFO] Ets callback end
11-27 18:59:50.990 6046-6112/com.example.softbusclient W 015c0/dsoftbus_standard: [TRAN]head not enough, recv biz head next time.
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: GetPublicDirectoryCompleteCallback IN
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: GetPublicDirectoryCompleteCallback dirIndex < directoryEnumValues.size()
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod IN
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod promise
11-27 18:59:50.990 6046-6046/com.example.softbusclient I 00000/Softbusclient: publicPath Pictures/
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: GetJSArgsForCreateAsset IN 3
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: displayName = man1_@ai1.jpg
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: relativePath = Pictures/
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: GetJSArgsForCreateAsset END
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: firstDirName substr = Pictures/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: firstDirName = Pictures/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: firstDirName = Pictures/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: directoryEnumValues0 = Camera/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: directoryEnumValues1 = Videos/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: directoryEnumValues2 = Pictures/
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: CheckTypeOfType IN
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod OUT
11-27 18:59:50.990 6046-6124/com.example.softbusclient D 02b00/MediaLibraryNapi: CheckTypeOfType RETURN TRUE
11-27 18:59:50.990 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: GetPublicDirectoryCompleteCallback OUT
11-27 18:59:50.990 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(Insert:536)]DataAbilityHelper::Insert start.
11-27 18:59:50.990 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckUriParam:888)]DataAbilityHelper::CheckUriParam start.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckOhosUri:926)]DataAbilityHelper::CheckOhosUri start.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckOhosUri:944)]DataAbilityHelper::CheckOhosUri end.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckOhosUri:926)]DataAbilityHelper::CheckOhosUri start.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckOhosUri:944)]DataAbilityHelper::CheckOhosUri end.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(CheckUriParam:920)]DataAbilityHelper::CheckUriParam end.
11-27 18:59:50.991 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(Insert:556)]DataAbilityHelper::Insert before dataAbilityProxy->Insert.
11-27 18:59:50.991 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01000/AbilityManagerService: [ability_scheduler_stub.cpp(OnRemoteRequest:79)]AbilitySchedulerStub::OnRemoteRequest, cmd = <private>, flags= <private>
11-27 18:59:50.991 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02200/Ability: [ability_thread.cpp(Insert:1035)]AbilityThread::Insert begin
11-27 18:59:50.991 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02200/Ability: [ability_thread.cpp(Insert:1042)]AbilityThread::Insert before abilityImpl_->Insert
11-27 18:59:50.991 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetBundleNameForUid):387] begin to GetBundleNameForUid of 20010035
11-27 18:59:50.991 335-335/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 6
11-27 18:59:50.991 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:50.991 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.kikakeyboard_100
11-27 18:59:50.992 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02b00/MultiMedia:MediaLibrary: {GetClientBundle:1081} uid 20010035 bundleName is com.example.softbusclient
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02b00/MultiMedia:MediaLibrary: {CheckClientPermission:1104} CheckClientPermission: bundle name: com.example.softbusclient
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(CheckIsSystemAppByUid):564] begin to CheckIsSystemAppByUid of 20010035
11-27 18:59:50.992 335-335/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 12
11-27 18:59:50.992 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:50.992 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.kikakeyboard_100
11-27 18:59:50.992 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02f01/AccessTokenKit: [VerifyAccessToken]:VerifyAccessToken called
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02f01/AccessTokenKit: [VerifyAccessToken]:tokenID=537023064, permissionName=ohos.permission.WRITE_MEDIA
11-27 18:59:50.992 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 02f01/AccessTokenManagerClient: [VerifyAccessToken]:VerifyAccessToken: called!
11-27 18:59:50.992 355-405/accesstoken_ser I 02f01/AccessTokenManagerStub: [OnRemoteRequest]:OnRemoteRequest called, code: 65296
11-27 18:59:50.992 355-405/accesstoken_ser I 02f01/AccessTokenManagerService: [VerifyAccessToken]:VerifyAccessToken called, tokenID: 0x20025258, permissionName: ohos.permission.WRITE_MEDIA
11-27 18:59:50.992 355-405/accesstoken_ser I 02f01/PermissionManager: [VerifyAccessToken]:VerifyAccessToken called, tokenID: 0x20025258, permissionName: ohos.permission.WRITE_MEDIA
11-27 18:59:50.993 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 02f01/AccessTokenManagerProxy: [VerifyAccessToken]:result from server data = 0
11-27 18:59:50.993 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02b00/MultiMedia:MediaLibrary: {Insert:278} operationType = create_asset
11-27 18:59:50.993 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::Query: RdbStoreImpl::Query on called.
11-27 18:59:50.993 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:ACE, ret:8
11-27 18:59:50.993 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::BuildQueryString: sqlStr:SELECT * FROM Files WHERE `data` = ?
11-27 18:59:50.993 334-747/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:rs, connection name:rs, ret:8
11-27 18:59:50.993 334-749/render_service I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:50.993 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:RSVsyncClientOhos_6046_0, ret:8
11-27 18:59:50.993 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:50.993 6046-6067/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:50.993 6046-6046/com.example.softbusclient I 06604/ueaCleint-FrameUiIntf: [BeginFlushAnimation]:start
11-27 18:59:50.993 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/APP_DATA_FWK_NATIVE: CreateSharedBlock into.
11-27 18:59:50.994 334-334/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 1 Queue id: 1434519076864
11-27 18:59:50.994 334-334/render_service I 01400/Bufferqueue: (noname)<351>FlushBuffer: Success [1], Way: OnBufferAvailable Start
11-27 18:59:50.994 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 1 Queue id: 1434519076864
11-27 18:59:50.994 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:50.994 334-334/render_service I 01400/Bufferqueue: (noname)<359>FlushBuffer: Success [1], Way: OnBufferAvailable End
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [SetDisplayClientBuffer@hdi_session.cpp:198]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [SetDisplayClientDamage@hdi_session.cpp:204]
11-27 18:59:50.994 334-334/render_service E 01400/Composer: SetScreenClientInfo: SetScreenClientDamage failed, ret is -5
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [Commit@hdi_session.cpp:231]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:199]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [Apply@hdi_gfx_composition.cpp:176] composer layers size 5
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 86 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 1080
11-27 18:59:50.994 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:50.994 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 86, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:50.994 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::FillSharedBlockOpt: Processed all rows after optimization.
11-27 18:59:50.994 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::GoToNextRow: AbsResultSet::GoToNextRow  return GoToRow::ret is wrong!
11-27 18:59:50.994 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/APP_DATA_FWK_NATIVE: SharedBlock: close ashmem
11-27 18:59:50.994 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:RSVsyncClientOhos_6046_0, rate:0
11-27 18:59:50.994 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 02b00/MultiMedia:MediaLibrary: {CreateAlbumAsset:131} Cannot create album that already exists
11-27 18:59:50.995 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:ACE, rate:0
11-27 18:59:50.995 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread ProcessCommands size: 2
11-27 18:59:50.995 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/APP_DATA_FWK_NATIVE: CreateSharedBlock into.
11-27 18:59:50.995 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread DrawFrame(12068045231829) in GPU
11-27 18:59:50.996 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::FillSharedBlockOpt: Processed all rows after optimization.
11-27 18:59:50.996 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <87>NativeWindowRequestBuffer: NativeWindowRequestBuffer width is 1920, height is 966
11-27 18:59:50.996 334-2091/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 108 Queue id: 1434519076891
11-27 18:59:50.996 334-2091/render_service D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:50.996 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::GoToNextRow: AbsResultSet::GoToNextRow  return GoToRow::ret is wrong!
11-27 18:59:50.997 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/APP_DATA_FWK_NATIVE: SharedBlock: close ashmem
11-27 18:59:50.997 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::Query: RdbStoreImpl::Query on called.
11-27 18:59:50.997 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::BuildQueryString: sqlStr:SELECT * FROM Files WHERE `file_id` = ?
11-27 18:59:50.998 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/APP_DATA_FWK_NATIVE: CreateSharedBlock into.
11-27 18:59:50.998 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::FillSharedBlockOpt: Processed all rows after optimization.
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:50.999 6046-6066/com.example.softbusclient I 01400/OHOS::ROSEN: RSSurfaceOhosGl:RequestFrame, eglsurface is 0x31c0e00, width is 1920, height is 966
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:50.999 6046-6066/com.example.softbusclient W 00000/Drawing: SetUpGrContext: grContext has already created!!
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 77 w:1920 h:966 addr:0x0 fmt:12 stride:7680
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 86 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 966
11-27 18:59:50.999 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:50.999 6046-6066/com.example.softbusclient E 00000/Drawing: AcquireCanvas: CreateCanvas successfully!!! (0362DC50)
11-27 18:59:50.999 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 86, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:50.999 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/APP_DATA_FWK_NATIVE: SharedBlock: close ashmem
11-27 18:59:50.999 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::Query: RdbStoreImpl::Query on called.
11-27 18:59:50.999 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/NativeRDB: ::BuildQueryString: sqlStr:SELECT `data` FROM Files WHERE data = '/storage/media/local/files/Pictures/man1_@ai1.jpg'
11-27 18:59:51.000 6046-6066/com.example.softbusclient W 00000/Drawing: RenderFrame: RenderFrame: Canvas is 0362DC50
11-27 18:59:51.000 1854-5759/com.ohos.medialibrary.MediaLibraryDataA D 01650/APP_DATA_FWK_NATIVE: CreateSharedBlock into.
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/NativeRDB: ::FillSharedBlockOpt: Processed all rows after optimization.
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02b00/MultiMedia:MediaLibrary: {isFileExistInDb:263} count is 0
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 01650/APP_DATA_FWK_NATIVE: SharedBlock: close ashmem
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 02b00/MultiMedia:MediaLibrary: {CreateAsset:314} CreateAsset in
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 02b00/MultiMedia:MediaLibrary: {CreateAsset:340} Output file path could not be created errno 30
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA E 02b00/MultiMedia:MediaLibrary: {SyncPushTable:150} SyncPushTable table = Files
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01650/NativeRDB: AbsRdbPredicates::InAllDevices: enter
11-27 18:59:51.001 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01655/DRDB: RdbServiceProxy::DoAsync: num=39
11-27 18:59:51.002 329-329/distributeddata I 01655/DRDB: RdbServiceStub::OnRemoteRequest: code=4
11-27 18:59:51.002 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client.cpp(BundleMgrClient):27] create BundleMgrClient
11-27 18:59:51.002 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(BundleMgrClientImpl):35] create bundleMgrClientImpl
11-27 18:59:51.002 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(GetBundleNameForUid):45] GetBundleNameForUid begin
11-27 18:59:51.002 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):300] enter
11-27 18:59:51.002 329-329/distributeddata D 01800/SAMGR: GetSystemAbilityWrapper:Waiting for sa 401,
11-27 18:59:51.002 329-329/distributeddata D 01800/SAMGR: CheckSystemAbility called, ability id is 401, isExist is 0
11-27 18:59:51.002 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 12, flags= 0
11-27 18:59:51.002 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 401
11-27 18:59:51.002 200-200/samgr I 01800/SAMGR: found service : 401.
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.003 329-329/distributeddata W 01510/IPCObjectProxy: no databus session attach to this handle, maybe need update
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 72 w:1920 h:48 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 86 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 48
11-27 18:59:51.003 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.003 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 86, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.003 335-335/foundation E 01510/IPCObjectStub: IPCObjectStub::ProcessProto called, type = 0, normal stub object
11-27 18:59:51.004 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <133>NativeWindowFlushBuffer: NativeWindowFlushBuffer damage w is 1920, h is 966, acquire fence: -1
11-27 18:59:51.004 329-329/distributeddata W 01510/IPCObjectProxy: it is normal binder, not dbinder
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.004 329-329/distributeddata D 01800/SAMGR: GetSystemAbilityWrapper found sa 401
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:66 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 86 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 66
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.004 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.004 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 86, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.004 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(BundleMgrProxy):63] create bundle mgr proxy instance
11-27 18:59:51.004 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):318] end
11-27 18:59:51.004 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetBundleNameForUid):387] begin to GetBundleNameForUid of 20010016
11-27 18:59:51.004 334-2091/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 108 Queue id: 1434519076891
11-27 18:59:51.004 334-2091/render_service I 01400/Bufferqueue: (softbusclient0)<351>FlushBuffer: Success [108], Way: OnBufferAvailable Start
11-27 18:59:51.004 334-2091/render_service E 01400/OHOS::ROSEN: RsDebug RSRenderServiceListener::OnBufferAvailable node id:25967372271617
11-27 18:59:51.004 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:rs, rate:0
11-27 18:59:51.004 334-2091/render_service I 01400/Bufferqueue: (softbusclient0)<359>FlushBuffer: Success [108], Way: OnBufferAvailable End
11-27 18:59:51.004 335-335/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 6
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.004 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 66 w:64 h:64 addr:0x0 fmt:12 stride:256
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.004 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 86 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.005 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.kikakeyboard_100
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 64 h: 64
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.005 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 86, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.005 335-335/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.005 6046-6066/com.example.softbusclient W 00000/Drawing: SwapBuffers: SwapBuffers successfully, surface is 031C0E00
11-27 18:59:51.005 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSSurfaceOhosGl: FlushFrame, SwapBuffers eglsurface is 0x31c0e00
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:262] mPlane size: 2 mCompLayers size: 1
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [Apply@hdi_drm_composition.cpp:274] Apply Set OutFence crtc id: 67, fencePropId 19
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:278] mCompLayers size 1
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:280] crtc id 67 connect id 138 encoder id 137
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:220] FindPlaneAndApply mCompLayers.size:1,mPlanes.size: 2
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:232] chenjiayin FindPlaneAndApply GetWinType()=16777216 , GetPlaneMask() 3
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:238] use plane 55 WinType 1000000 crtc 67 PlaneMask 3
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:130]
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:132] set the fence in prop
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:65] set the fb planeid 55, GetPropCrtc_xId 13, crop.x 0
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:70] set the fb planeid 55, GetPropCrtc_yId 14, crop.y 0
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:75] set the fb planeid 55, GetPropCrtc_wId 15, crop.w 1920
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:80] set the fb planeid 55, GetPropCrtc_hId 13, crop.h 1080
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:95] set the fb planeid 55, GetPropSrc_xId 9, displayRect.x 0
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:100] set the fb planeid 55, GetPropSrc_yId 10, displayRect.y 0
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:106] set the fb planeid 55, GetPropCrtc_wId 11, displayRect.w 1920
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:112] set the fb planeid 55, GetPropSrc_hId 12, displayRect.h 1080
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [GetGemBuffer@hdi_drm_layer.cpp:80]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [DrmGemBuffer@hdi_drm_layer.cpp:26]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:37] hdl 0
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [ConvertToDrmFormat@drm_device.cpp:84] fmtIn 12, outFmt 875708993
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:47] mGemHandle 1  mFdId 143
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:50] w: 1920  h: 1080 mDrmFormat : 875708993 gemHandles: 1 pitches: 7680 offsets: 0
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [~DrmGemBuffer@hdi_drm_layer.cpp:56]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [IsValid@hdi_drm_layer.cpp:74]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:160] set the fb planeid 55, propId 17, fbId 143
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:166] set the crtc planeId 55, propId 20, crtcId 67
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:174]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [GetModeBlockFromId@drm_connector.cpp:426] id 0
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [DrmModeBlock@drm_connector.cpp:434]
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [Init@drm_connector.cpp:447] mBlockId 142
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:179] set crtc to active
11-27 18:59:51.005 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:185] set the mode
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:188] set the mode planeId 67, propId 23, GetBlockId: 142
11-27 18:59:51.005 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:193] set the connector id: 138, propId 20, crtcId 67
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [~DrmModeBlock@drm_connector.cpp:453] mBlockId 142
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:202] the release fence is 40
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: 40
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.006 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(GetBundleInfo):59] GetBundleInfo begin
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:153] set the layer fences
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 1 fencefd -1
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 522 fencefd -1
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 484 fencefd -1
11-27 18:59:51.006 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):300] enter
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 485 fencefd -1
11-27 18:59:51.006 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 528 fencefd -1
11-27 18:59:51.006 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):318] end
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 329-329/distributeddata D 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetBundleInfo):198] begin to get bundle info of com.ohos.medialibrary.MediaLibraryDataA
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 106 Queue id: 1434519076891 to free list
11-27 18:59:51.006 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 3 Queue id: 1434519076864 to free list
11-27 18:59:51.006 334-334/render_service D 01400/Composer: Repaint: Repaint: end
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 2
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop end
11-27 18:59:51.006 335-1485/foundation I 01120/BundleMgrService: [bundle_mgr_host.cpp(HandleGetBundleInfo):412] name com.ohos.medialibrary.MediaLibraryDataA, flag 0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop start
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(GetBundleInfo):91] start GetBundleInfo, bundleName : com.ohos.medialibrary.MediaLibraryDataA, flags : 0, userId : -4
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.006 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSRenderServiceVisitor::ProcessDisplayRenderNode: nodeid:[1438814044161] screenid:[0]         isSecurityDisplay:[false] child size:[5] total size:[5]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.distributedcalc_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RSHardwareProcessor::Init screen w:1920, w:1080
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.softbusclient_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6983616823297 available buffer:0 name:[EntryView]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.video_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.isoftstone.swanlink_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.istone.swanlinkos.service_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.callui_0
11-27 18:59:51.006 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6983616823297 name:[EntryView] dst [0 0 1920 1080]SrcRect [1920 1080] rawbuffer [1920 1080] surfaceBuffer [1920 1080] buffaddr:0x1ffcb10, z:0.000000, globalZOrder:0, blendType = 3
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.camera_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:25967372271617 available buffer:2 name:[softbusclient0]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.contacts_0
11-27 18:59:51.006 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 104 Queue id: 1434519076891
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.contactsdataability_0
11-27 18:59:51.006 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.download_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.filepicker_0
11-27 18:59:51.006 334-334/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:rs, rate:0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.launcher_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.medialibrary.MediaLibraryDataA_0
11-27 18:59:51.006 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:25967372271617 name:[softbusclient0] dst [0 48 1920 966]SrcRect [1920 966] rawbuffer [1920 966] surfaceBuffer [1920 966] buffaddr:0x200a490, z:2.000000, globalZOrder:1, blendType = 3
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.medialibrary.MediaScannerAbilityA_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.mms_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981766 available buffer:0 name:[SystemUi_StatusBar]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.note_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.nweb_0
11-27 18:59:51.006 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981766 name:[SystemUi_StatusBar] dst [0 0 1920 48]SrcRect [1920 48] rawbuffer [1920 48] surfaceBuffer [1920 48] buffaddr:0x1ffd540, z:3.000000, globalZOrder:2, blendType = 3
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.permissionmanager_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.photos_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981763 available buffer:0 name:[SystemUi_NavigationBar]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.screenshot_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.settings_0
11-27 18:59:51.006 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981763 name:[SystemUi_NavigationBar] dst [0 1014 1920 66]SrcRect [1920 66] rawbuffer [1920 66] surfaceBuffer [1920 66] buffaddr:0x1ffac30, z:4.000000, globalZOrder:3, blendType = 3
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.settings.faceauth_0
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.telephonydataability_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:906238099459 available buffer:0 name:[pointer window]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.example.shopping_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.airquality_0
11-27 18:59:51.006 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:906238099459 name:[pointer window] dst [1683 78 64 64]SrcRect [64 64] rawbuffer [64 64] surfaceBuffer [64 64] buffaddr:0x200e8e0, z:5.000000, globalZOrder:4, blendType = 3
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.browser_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 1080]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.clock_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 1080]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.distributedmusicplayer_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 48 1920 966]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.ecg_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 48 1920 966]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.flashlight_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 48]
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 48]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.telephony.resources_0
11-27 18:59:51.006 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 1014 1920 66]
11-27 18:59:51.006 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleInfoByUid):1114] the uid(1000) is not exists.
11-27 18:59:51.007 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 1014 1920 66]
11-27 18:59:51.007 335-1485/foundation E 01120/BundleMgrService: [bundle_data_mgr.cpp(GetBundleNameForUid):1078] get innerBundleInfo by uid failed.
11-27 18:59:51.007 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [1683 78 64 64]
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.007 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [1683 78 64 64]
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):495] VerifyCallingPermission permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
11-27 18:59:51.007 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):497] callerToken : 671961009
11-27 18:59:51.007 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.007 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):500] caller tokenType is native, verify success
11-27 18:59:51.007 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(VerifyQueryPermission):1238] verify GET_BUNDLE_INFO_PRIVILEGED success
11-27 18:59:51.007 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(GetBundleInfo):96] verify permission success, bgein to GetBundleInfo
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleUserInfos):2679] get all user info in bundle(com.ohos.medialibrary.MediaLibraryDataA)
11-27 18:59:51.007 334-334/render_service D 01400/Composer: Repaint: Repaint: start
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleInfoWithFlags):1414] GetInnerBundleInfoWithFlags: com.ohos.medialibrary.MediaLibraryDataA
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundleWithAbilities):1767] bundleName:com.ohos.medialibrary.MediaLibraryDataA userid:100
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundeleWithExtension):1783] get bundleInfo with extensionInfo begin
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundeleWithExtension):1793] get bundleInfo with extensionInfo end
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetBundleInfo):942] get bundleInfo(com.ohos.medialibrary.MediaLibraryDataA) successfully in user(100)
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.007 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 522 crop x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 522, zorder 1
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 528 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 528 DirtyRegion x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 528 crop x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 528
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 528, zorder 4
11-27 18:59:51.007 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 484 crop x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 484, zorder 2
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-749/render_service I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-747/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:rs, connection name:rs, ret:8
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.008 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:ACE, ret:8
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 485 crop x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.008 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.008 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:RSVsyncClientOhos_6046_0, ret:8
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 485
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 485, zorder 3
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 1 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 1 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 1 crop x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 1, zorder 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_session.cpp:170]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:170]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:177]  mLayers  size 5 layers size 5
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_layer.cpp:109] id : 0 zorder : 3
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayers@hdi_gfx_composition.cpp:87] layers size 5
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayers@hdi_gfx_composition.cpp:101] composer layers size 5
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [SetLayers@hdi_drm_composition.cpp:50]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_session.cpp:177]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_session.cpp:177]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_display.cpp:133] set the layers and type
11-27 18:59:51.009 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::Redraw flush frame buffer start
11-27 18:59:51.009 334-334/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 3 Queue id: 1434519076864
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [GbmInvalidateCache@display_gralloc_gbm.c:393]
11-27 18:59:51.009 334-334/render_service D 01400/DISP: [DmaBufferSync@display_gralloc_gbm.c:230]
11-27 18:59:51.017 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: 95
11-27 18:59:51.017 334-334/render_service D 01400/DISP: [GbmFlushCache@display_gralloc_gbm.c:399]
11-27 18:59:51.017 334-334/render_service D 01400/DISP: [DmaBufferSync@display_gralloc_gbm.c:230]
11-27 18:59:51.023 334-334/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 3 Queue id: 1434519076864
11-27 18:59:51.023 334-334/render_service I 01400/Bufferqueue: (noname)<351>FlushBuffer: Success [3], Way: OnBufferAvailable Start
11-27 18:59:51.024 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 3 Queue id: 1434519076864
11-27 18:59:51.024 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.024 334-334/render_service I 01400/Bufferqueue: (noname)<359>FlushBuffer: Success [3], Way: OnBufferAvailable End
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [SetDisplayClientBuffer@hdi_session.cpp:198]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [SetDisplayClientDamage@hdi_session.cpp:204]
11-27 18:59:51.024 334-334/render_service E 01400/Composer: SetScreenClientInfo: SetScreenClientDamage failed, ret is -5
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [Commit@hdi_session.cpp:231]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:199]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [Apply@hdi_gfx_composition.cpp:176] composer layers size 5
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 1080
11-27 18:59:51.024 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.024 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 20, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.024 6046-6067/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.024 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.024 6046-6065/com.example.softbusclient E 01130/EventHandler: SendTimingEvent: SendTime is before now systime, change to 0 delaytime Event
11-27 18:59:51.024 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread DrawFrame(12068060701251) in GPU
11-27 18:59:51.024 307-1428/telephony I 02b01/CELLULAR_DATA: [InitCellularDataEnable-(cellular_data_handler.cpp:159)] CellularDataHandler::InitCellularDataEnable = 1
11-27 18:59:51.025 307-1428/telephony I 02b01/CoreService: [Init-(network_state.cpp:30)] NetworkState::Init
11-27 18:59:51.025 307-1428/telephony I 02b01/CoreService: [Init-(network_state.cpp:30)] NetworkState::Init
11-27 18:59:51.025 307-1428/telephony I 02b01/CoreService: [GetPsRegState-(network_search_manager.cpp:349)] NetworkSearchManager::GetPsRegState result=0 slotId:0
11-27 18:59:51.025 6046-6046/com.example.softbusclient I 06604/ueaCleint-FrameUiIntf: [BeginFlushAnimation]:start
11-27 18:59:51.025 307-1428/telephony I 02b01/CoreService: [IsValidSlotId-(sim_manager.cpp:635)] slotId is valid, slotId = 0
11-27 18:59:51.025 307-1428/telephony I 02b01/CoreService: [GetSimState-(sim_state_manager.cpp:86)] SimStateManager::GetSimState()
11-27 18:59:51.025 307-1428/telephony I 02b01/CELLULAR_DATA: [InitCellularDataEnable-(cellular_data_handler.cpp:170)] wait for a mount to try enableCellulardata again
11-27 18:59:51.025 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <87>NativeWindowRequestBuffer: NativeWindowRequestBuffer width is 1920, height is 966
11-27 18:59:51.025 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:ACE, rate:0
11-27 18:59:51.026 334-5591/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 105 Queue id: 1434519076891
11-27 18:59:51.026 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:RSVsyncClientOhos_6046_0, rate:0
11-27 18:59:51.026 334-5591/render_service D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 46 w:1920 h:966 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 966
11-27 18:59:51.028 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:51.028 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 20, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.031 6046-6066/com.example.softbusclient I 01400/OHOS::ROSEN: RSSurfaceOhosGl:RequestFrame, eglsurface is 0x31c0e00, width is 1920, height is 966
11-27 18:59:51.031 6046-6066/com.example.softbusclient W 00000/Drawing: SetUpGrContext: grContext has already created!!
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 66 w:1920 h:48 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 48
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.032 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 20, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 72 w:1920 h:66 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 66
11-27 18:59:51.032 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.032 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 20, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.032 329-329/distributeddata D 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetParcelableInfo):2412] get parcelable info success
11-27 18:59:51.032 329-329/distributeddata D 01611/ZDD: BundleChecker::GetAppId: bundleName:com.ohos.medialibrary.MediaLibraryDataA, uid:20010016, appId:com.ohos.medialibrary.MediaLibraryDataA_BNtg4JBClbl92Rgc3jm/RfcAdrHXaM8F0QOiwVEhnV5ebE5jNIYnAx+weFRT3QTyUjRNdhmc2aAzWyi+5t5CoBM=
11-27 18:59:51.032 6046-6066/com.example.softbusclient E 00000/Drawing: AcquireCanvas: CreateCanvas successfully!!! (03B323C0)
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client.cpp(~BundleMgrClient):33] destory BundleMgrClient
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(~BundleMgrClientImpl):40] destory bundleMgrClientImpl
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 77 w:64 h:64 addr:0x0 fmt:12 stride:256
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(~BundleMgrProxy):68] destroy create bundle mgr proxy instance
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 20 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.033 329-329/distributeddata W 01510/IPCObjectProxy: not databus dbinder, need do nothing
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 64 h: 64
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.033 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 20, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.033 329-329/distributeddata W 01510/IPCObjectProxy: handle = 21 destroyed
11-27 18:59:51.033 329-329/distributeddata I 01655/DRDB: RdbServiceImpl::DoAsync: seq num=39
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:262] mPlane size: 2 mCompLayers size: 1
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [Apply@hdi_drm_composition.cpp:274] Apply Set OutFence crtc id: 67, fencePropId 19
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:278] mCompLayers size 1
11-27 18:59:51.033 329-329/distributeddata D 03d00/utils_base: deregister timer 48 with 60000 ms interval
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:280] crtc id 67 connect id 138 encoder id 137
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:220] FindPlaneAndApply mCompLayers.size:1,mPlanes.size: 2
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:232] chenjiayin FindPlaneAndApply GetWinType()=16777216 , GetPlaneMask() 3
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:238] use plane 55 WinType 1000000 crtc 67 PlaneMask 3
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:130]
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:132] set the fence in prop
11-27 18:59:51.033 329-329/distributeddata D 03d00/utils_base: erase timer 48.
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:65] set the fb planeid 55, GetPropCrtc_xId 13, crop.x 0
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:70] set the fb planeid 55, GetPropCrtc_yId 14, crop.y 0
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:75] set the fb planeid 55, GetPropCrtc_wId 15, crop.w 1920
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:80] set the fb planeid 55, GetPropCrtc_hId 13, crop.h 1080
11-27 18:59:51.033 329-329/distributeddata D 03d00/utils_base: Cancel timer, timerFd: 88.
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:95] set the fb planeid 55, GetPropSrc_xId 9, displayRect.x 0
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:100] set the fb planeid 55, GetPropSrc_yId 10, displayRect.y 0
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:106] set the fb planeid 55, GetPropCrtc_wId 11, displayRect.w 1920
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:112] set the fb planeid 55, GetPropSrc_hId 12, displayRect.h 1080
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [GetGemBuffer@hdi_drm_layer.cpp:80]
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [DrmGemBuffer@hdi_drm_layer.cpp:26]
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:37] hdl 0
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [ConvertToDrmFormat@drm_device.cpp:84] fmtIn 12, outFmt 875708993
11-27 18:59:51.033 329-329/distributeddata D 03d00/utils_base: deregister timer interval: 60000.
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:47] mGemHandle 1  mFdId 140
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:50] w: 1920  h: 1080 mDrmFormat : 875708993 gemHandles: 1 pitches: 7680 offsets: 0
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [~DrmGemBuffer@hdi_drm_layer.cpp:56]
11-27 18:59:51.033 329-329/distributeddata D 03d00/utils_base: register timer 49 with 60000 ms interval.
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [IsValid@hdi_drm_layer.cpp:74]
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:160] set the fb planeid 55, propId 17, fbId 140
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:166] set the crtc planeId 55, propId 20, crtcId 67
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:174]
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [GetModeBlockFromId@drm_connector.cpp:426] id 0
11-27 18:59:51.033 329-329/distributeddata I 01b00/AccountMgrService: [os_account_manager.cpp(GetOsAccountLocalIdFromUid:91)] uid 20010016, os account id 100.
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [DrmModeBlock@drm_connector.cpp:434]
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [Init@drm_connector.cpp:447] mBlockId 139
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:179] set crtc to active
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client.cpp(BundleMgrClient):27] create BundleMgrClient
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:185] set the mode
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:188] set the mode planeId 67, propId 23, GetBlockId: 139
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(BundleMgrClientImpl):35] create bundleMgrClientImpl
11-27 18:59:51.033 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:193] set the connector id: 138, propId 20, crtcId 67
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(GetBundleNameForUid):45] GetBundleNameForUid begin
11-27 18:59:51.033 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):300] enter
11-27 18:59:51.033 329-329/distributeddata D 01800/SAMGR: GetSystemAbilityWrapper:Waiting for sa 401,
11-27 18:59:51.033 329-329/distributeddata D 01800/SAMGR: CheckSystemAbility called, ability id is 401, isExist is 0
11-27 18:59:51.033 6046-6066/com.example.softbusclient W 00000/Drawing: RenderFrame: RenderFrame: Canvas is 03B323C0
11-27 18:59:51.033 334-334/render_service D 01400/DISP: [~DrmModeBlock@drm_connector.cpp:453] mBlockId 139
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:202] the release fence is 29
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: 29
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:153] set the layer fences
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 1 fencefd -1
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 522 fencefd -1
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 484 fencefd -1
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 485 fencefd -1
11-27 18:59:51.034 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 528 fencefd -1
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 12, flags= 0
11-27 18:59:51.034 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 107 Queue id: 1434519076891 to free list
11-27 18:59:51.034 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 401
11-27 18:59:51.034 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 1 Queue id: 1434519076864 to free list
11-27 18:59:51.034 200-200/samgr I 01800/SAMGR: found service : 401.
11-27 18:59:51.034 334-334/render_service D 01400/Composer: Repaint: Repaint: end
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop end
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop start
11-27 18:59:51.034 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSRenderServiceVisitor::ProcessDisplayRenderNode: nodeid:[1438814044161] screenid:[0]         isSecurityDisplay:[false] child size:[5] total size:[5]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RSHardwareProcessor::Init screen w:1920, w:1080
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6983616823297 available buffer:0 name:[EntryView]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.034 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6983616823297 name:[EntryView] dst [0 0 1920 1080]SrcRect [1920 1080] rawbuffer [1920 1080] surfaceBuffer [1920 1080] buffaddr:0x1ffcb10, z:0.000000, globalZOrder:0, blendType = 3
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:25967372271617 available buffer:1 name:[softbusclient0]
11-27 18:59:51.034 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 108 Queue id: 1434519076891
11-27 18:59:51.034 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.034 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:25967372271617 name:[softbusclient0] dst [0 48 1920 966]SrcRect [1920 966] rawbuffer [1920 966] surfaceBuffer [1920 966] buffaddr:0x2010a80, z:2.000000, globalZOrder:1, blendType = 3
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981766 available buffer:0 name:[SystemUi_StatusBar]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.034 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981766 name:[SystemUi_StatusBar] dst [0 0 1920 48]SrcRect [1920 48] rawbuffer [1920 48] surfaceBuffer [1920 48] buffaddr:0x1ffd540, z:3.000000, globalZOrder:2, blendType = 3
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981763 available buffer:0 name:[SystemUi_NavigationBar]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.034 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981763 name:[SystemUi_NavigationBar] dst [0 1014 1920 66]SrcRect [1920 66] rawbuffer [1920 66] surfaceBuffer [1920 66] buffaddr:0x1ffac30, z:4.000000, globalZOrder:3, blendType = 3
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:906238099459 available buffer:0 name:[pointer window]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.034 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:906238099459 name:[pointer window] dst [1683 78 64 64]SrcRect [64 64] rawbuffer [64 64] surfaceBuffer [64 64] buffaddr:0x200e8e0, z:5.000000, globalZOrder:4, blendType = 3
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 1080]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 1080]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 48 1920 966]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 48 1920 966]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 48]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 48]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 1014 1920 66]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 1014 1920 66]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [1683 78 64 64]
11-27 18:59:51.034 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [1683 78 64 64]
11-27 18:59:51.034 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.034 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.034 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.034 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.035 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.035 334-334/render_service D 01400/Composer: Repaint: Repaint: start
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 522 crop x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 522, zorder 1
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 528 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 528 DirtyRegion x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 528 crop x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 528, zorder 4
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.035 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 484 crop x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 484, zorder 2
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 485 crop x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 485, zorder 3
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.036 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 1 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 1 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 1 crop x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 1, zorder 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_session.cpp:170]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:170]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:177]  mLayers  size 5 layers size 5
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_layer.cpp:109] id : 0 zorder : 3
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayers@hdi_gfx_composition.cpp:87] layers size 5
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CanHandle@hdi_gfx_composition.cpp:80]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetDeviceSelect@hdi_layer.h:115] 1
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayers@hdi_gfx_composition.cpp:101] composer layers size 5
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [SetLayers@hdi_drm_composition.cpp:50]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_session.cpp:177]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_session.cpp:177]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_display.cpp:133] set the layers and type
11-27 18:59:51.037 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <133>NativeWindowFlushBuffer: NativeWindowFlushBuffer damage w is 1920, h is 966, acquire fence: -1
11-27 18:59:51.037 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::Redraw flush frame buffer start
11-27 18:59:51.037 334-334/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 1 Queue id: 1434519076864
11-27 18:59:51.037 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [GbmInvalidateCache@display_gralloc_gbm.c:393]
11-27 18:59:51.037 334-334/render_service D 01400/DISP: [DmaBufferSync@display_gralloc_gbm.c:230]
11-27 18:59:51.037 334-5591/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 105 Queue id: 1434519076891
11-27 18:59:51.037 334-5591/render_service I 01400/Bufferqueue: (softbusclient0)<351>FlushBuffer: Success [105], Way: OnBufferAvailable Start
11-27 18:59:51.037 334-5591/render_service E 01400/OHOS::ROSEN: RsDebug RSRenderServiceListener::OnBufferAvailable node id:25967372271617
11-27 18:59:51.037 334-5591/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:rs, rate:0
11-27 18:59:51.037 334-5591/render_service I 01400/Bufferqueue: (softbusclient0)<359>FlushBuffer: Success [105], Way: OnBufferAvailable End
11-27 18:59:51.038 6046-6066/com.example.softbusclient W 00000/Drawing: SwapBuffers: SwapBuffers successfully, surface is 031C0E00
11-27 18:59:51.038 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSSurfaceOhosGl: FlushFrame, SwapBuffers eglsurface is 0x31c0e00
11-27 18:59:51.039 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:ACE, ret:8
11-27 18:59:51.039 334-749/render_service I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.039 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:RSVsyncClientOhos_6046_0, ret:8
11-27 18:59:51.039 334-747/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:rs, connection name:rs, ret:8
11-27 18:59:51.044 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: 95
11-27 18:59:51.044 334-334/render_service D 01400/DISP: [GbmFlushCache@display_gralloc_gbm.c:399]
11-27 18:59:51.044 334-334/render_service D 01400/DISP: [DmaBufferSync@display_gralloc_gbm.c:230]
11-27 18:59:51.051 334-334/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 1 Queue id: 1434519076864
11-27 18:59:51.051 334-334/render_service I 01400/Bufferqueue: (noname)<351>FlushBuffer: Success [1], Way: OnBufferAvailable Start
11-27 18:59:51.051 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 1 Queue id: 1434519076864
11-27 18:59:51.051 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.051 334-334/render_service I 01400/Bufferqueue: (noname)<359>FlushBuffer: Success [1], Way: OnBufferAvailable End
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [SetDisplayClientBuffer@hdi_session.cpp:198]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [SetDisplayClientDamage@hdi_session.cpp:204]
11-27 18:59:51.051 334-334/render_service E 01400/Composer: SetScreenClientInfo: SetScreenClientDamage failed, ret is -5
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [Commit@hdi_session.cpp:231]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:199]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [Apply@hdi_gfx_composition.cpp:176] composer layers size 5
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 72 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 1080
11-27 18:59:51.051 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.051 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 83, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.051 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.051 6046-6065/com.example.softbusclient E 01130/EventHandler: SendTimingEvent: SendTime is before now systime, change to 0 delaytime Event
11-27 18:59:51.051 6046-6067/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.052 6046-6046/com.example.softbusclient I 06604/ueaCleint-FrameUiIntf: [BeginFlushAnimation]:start
11-27 18:59:51.052 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread ProcessCommands size: 1
11-27 18:59:51.052 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread DrawFrame(12068091639720) in GPU
11-27 18:59:51.052 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <87>NativeWindowRequestBuffer: NativeWindowRequestBuffer width is 1920, height is 966
11-27 18:59:51.052 334-5591/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 106 Queue id: 1434519076891
11-27 18:59:51.052 334-2091/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:ACE, rate:0
11-27 18:59:51.053 334-5591/render_service D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.053 329-329/distributeddata W 01510/IPCObjectProxy: no databus session attach to this handle, maybe need update
11-27 18:59:51.053 335-1485/foundation E 01510/IPCObjectStub: IPCObjectStub::ProcessProto called, type = 0, normal stub object
11-27 18:59:51.053 329-329/distributeddata W 01510/IPCObjectProxy: it is normal binder, not dbinder
11-27 18:59:51.053 334-5591/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:RSVsyncClientOhos_6046_0, rate:0
11-27 18:59:51.053 329-329/distributeddata D 01800/SAMGR: GetSystemAbilityWrapper found sa 401
11-27 18:59:51.053 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(BundleMgrProxy):63] create bundle mgr proxy instance
11-27 18:59:51.053 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):318] end
11-27 18:59:51.053 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetBundleNameForUid):387] begin to GetBundleNameForUid of 20010016
11-27 18:59:51.053 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 6
11-27 18:59:51.053 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.053 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.kikakeyboard_100
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.054 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(GetBundleInfo):59] GetBundleInfo begin
11-27 18:59:51.054 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):300] enter
11-27 18:59:51.054 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(Connect):318] end
11-27 18:59:51.054 329-329/distributeddata D 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetBundleInfo):198] begin to get bundle info of com.ohos.medialibrary.MediaLibraryDataA
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host.cpp(OnRemoteRequest):58] bundle mgr host onReceived message, the message code is 2
11-27 18:59:51.054 335-1485/foundation I 01120/BundleMgrService: [bundle_mgr_host.cpp(HandleGetBundleInfo):412] name com.ohos.medialibrary.MediaLibraryDataA, flag 0
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(GetBundleInfo):91] start GetBundleInfo, bundleName : com.ohos.medialibrary.MediaLibraryDataA, flags : 0, userId : -4
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.distributedcalc_0
11-27 18:59:51.054 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.softbusclient_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.example.video_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.isoftstone.swanlink_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.istone.swanlinkos.service_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.callui_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.camera_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.contacts_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.contactsdataability_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.download_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.filepicker_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.launcher_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.medialibrary.MediaLibraryDataA_0
11-27 18:59:51.055 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:ACE, ret:8
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.medialibrary.MediaScannerAbilityA_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.mms_0
11-27 18:59:51.055 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:RSVsyncClientOhos_6046_0, ret:8
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.note_0
11-27 18:59:51.055 6046-6066/com.example.softbusclient I 01400/OHOS::ROSEN: RSSurfaceOhosGl:RequestFrame, eglsurface is 0x31c0e00, width is 1920, height is 966
11-27 18:59:51.055 6046-6066/com.example.softbusclient W 00000/Drawing: SetUpGrContext: grContext has already created!!
11-27 18:59:51.055 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.nweb_0
11-27 18:59:51.055 6046-6066/com.example.softbusclient E 00000/Drawing: AcquireCanvas: CreateCanvas successfully!!! (037FCA10)
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.permissionmanager_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.photos_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.screenshot_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.settings_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.settings.faceauth_0
11-27 18:59:51.055 6046-6067/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user com.ohos.telephonydataability_0
11-27 18:59:51.055 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.example.shopping_0
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.airquality_0
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.browser_0
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.clock_0
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.distributedmusicplayer_0
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 40 w:1920 h:966 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.ecg_0
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.samples.flashlight_0
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 966
11-27 18:59:51.056 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetInnerBundleUserInfo):1962] no this user ohos.telephony.resources_0
11-27 18:59:51.056 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 83, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.056 6046-6046/com.example.softbusclient I 06604/ueaCleint-FrameUiIntf: [BeginFlushAnimation]:start
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleInfoByUid):1114] the uid(1000) is not exists.
11-27 18:59:51.056 335-1485/foundation E 01120/BundleMgrService: [bundle_data_mgr.cpp(GetBundleNameForUid):1078] get innerBundleInfo by uid failed.
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):495] VerifyCallingPermission permission ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):497] callerToken : 671961009
11-27 18:59:51.056 6046-6066/com.example.softbusclient W 00000/Drawing: RenderFrame: RenderFrame: Canvas is 037FCA10
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_permission_mgr.cpp(VerifyCallingPermission):500] caller tokenType is native, verify success
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(VerifyQueryPermission):1238] verify GET_BUNDLE_INFO_PRIVILEGED success
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_mgr_host_impl.cpp(GetBundleInfo):96] verify permission success, bgein to GetBundleInfo
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleUserInfos):2679] get all user info in bundle(com.ohos.medialibrary.MediaLibraryDataA)
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(InnerBundleInfo):296] inner bundle info instance is created
11-27 18:59:51.056 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetInnerBundleInfoWithFlags):1414] GetInnerBundleInfoWithFlags: com.ohos.medialibrary.MediaLibraryDataA
11-27 18:59:51.057 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundleWithAbilities):1767] bundleName:com.ohos.medialibrary.MediaLibraryDataA userid:100
11-27 18:59:51.057 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundeleWithExtension):1783] get bundleInfo with extensionInfo begin
11-27 18:59:51.057 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(GetBundeleWithExtension):1793] get bundleInfo with extensionInfo end
11-27 18:59:51.057 335-1485/foundation D 01120/BundleMgrService: [bundle_data_mgr.cpp(GetBundleInfo):942] get bundleInfo(com.ohos.medialibrary.MediaLibraryDataA) successfully in user(100)
11-27 18:59:51.057 335-1485/foundation D 01120/BundleMgrService: [inner_bundle_info.cpp(~InnerBundleInfo):301] inner bundle info instance is destroyed
11-27 18:59:51.057 334-5591/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:RSVsyncClientOhos_6046_0, rate:0
11-27 18:59:51.057 334-5591/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:ACE, rate:0
11-27 18:59:51.058 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <133>NativeWindowFlushBuffer: NativeWindowFlushBuffer damage w is 1920, h is 966, acquire fence: -1
11-27 18:59:51.059 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.059 334-5591/render_service D 01400/Bufferqueue: <348>FlushBuffer: Success Buffer id: 106 Queue id: 1434519076891
11-27 18:59:51.059 334-5591/render_service I 01400/Bufferqueue: (softbusclient0)<351>FlushBuffer: Success [106], Way: OnBufferAvailable Start
11-27 18:59:51.059 334-5591/render_service E 01400/OHOS::ROSEN: RsDebug RSRenderServiceListener::OnBufferAvailable node id:25967372271617
11-27 18:59:51.059 334-5591/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:rs, rate:0
11-27 18:59:51.059 334-5591/render_service I 01400/Bufferqueue: (softbusclient0)<359>FlushBuffer: Success [106], Way: OnBufferAvailable End
11-27 18:59:51.059 6046-6066/com.example.softbusclient W 00000/Drawing: SwapBuffers: SwapBuffers successfully, surface is 031C0E00
11-27 18:59:51.059 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSSurfaceOhosGl: FlushFrame, SwapBuffers eglsurface is 0x31c0e00
11-27 18:59:51.059 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread ProcessCommands size: 2
11-27 18:59:51.059 6046-6066/com.example.softbusclient D 01400/OHOS::ROSEN: RSRenderThread DrawFrame(12068107107345) in GPU
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 77 w:1920 h:48 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 48
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.060 6046-6066/com.example.softbusclient D 01400/Bufferqueue: <87>NativeWindowRequestBuffer: NativeWindowRequestBuffer width is 1920, height is 966
11-27 18:59:51.060 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 83, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.060 334-5591/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 107 Queue id: 1434519076891
11-27 18:59:51.060 334-5591/render_service D 01400/Bufferqueue: <66>WriteToParcel: write 0
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 66 w:1920 h:66 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 1920 h: 66
11-27 18:59:51.060 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.060 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 83, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:128]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:131] init the src iSurface
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 46 w:64 h:64 addr:0x0 fmt:12 stride:256
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:136] init the dst iSurface
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [InitGfxSurface@hdi_gfx_composition.cpp:119] iSurface fd 83 w:1920 h:1080 addr:0x0 fmt:12 stride:7680
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:140] blendType 3
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:147] src alpha ff
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:150]  the roate type is 0
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:153] crop x: 0 y : 0 w : 64 h: 64
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [BlitLayer@hdi_gfx_composition.cpp:155] displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.061 334-334/render_service E 01400/DISP: [0;32;31m[doFlit@display_gfx.c:356] gfx dst fd 83, w 1920, h 1080, sw 1920 sh 1088 vir 00000000[m
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:262] mPlane size: 2 mCompLayers size: 1
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [Apply@hdi_drm_composition.cpp:274] Apply Set OutFence crtc id: 67, fencePropId 19
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:278] mCompLayers size 1
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [Apply@hdi_drm_composition.cpp:280] crtc id 67 connect id 138 encoder id 137
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:220] FindPlaneAndApply mCompLayers.size:1,mPlanes.size: 2
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:232] chenjiayin FindPlaneAndApply GetWinType()=16777216 , GetPlaneMask() 3
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [FindPlaneAndApply@hdi_drm_composition.cpp:238] use plane 55 WinType 1000000 crtc 67 PlaneMask 3
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:130]
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:132] set the fence in prop
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:65] set the fb planeid 55, GetPropCrtc_xId 13, crop.x 0
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:70] set the fb planeid 55, GetPropCrtc_yId 14, crop.y 0
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:75] set the fb planeid 55, GetPropCrtc_wId 15, crop.w 1920
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetCrtcProperty@hdi_drm_composition.cpp:80] set the fb planeid 55, GetPropCrtc_hId 13, crop.h 1080
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:95] set the fb planeid 55, GetPropSrc_xId 9, displayRect.x 0
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:100] set the fb planeid 55, GetPropSrc_yId 10, displayRect.y 0
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:106] set the fb planeid 55, GetPropCrtc_wId 11, displayRect.w 1920
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [SetSrcProperty@hdi_drm_composition.cpp:112] set the fb planeid 55, GetPropSrc_hId 12, displayRect.h 1080
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [GetGemBuffer@hdi_drm_layer.cpp:80]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [DrmGemBuffer@hdi_drm_layer.cpp:26]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:37] hdl 0
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [ConvertToDrmFormat@drm_device.cpp:84] fmtIn 12, outFmt 875708993
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:47] mGemHandle 1  mFdId 142
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [Init@hdi_drm_layer.cpp:50] w: 1920  h: 1080 mDrmFormat : 875708993 gemHandles: 1 pitches: 7680 offsets: 0
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [~DrmGemBuffer@hdi_drm_layer.cpp:56]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [IsValid@hdi_drm_layer.cpp:74]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:160] set the fb planeid 55, propId 17, fbId 142
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [ApplyPlane@hdi_drm_composition.cpp:166] set the crtc planeId 55, propId 20, crtcId 67
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:174]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [GetModeBlockFromId@drm_connector.cpp:426] id 0
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [DrmModeBlock@drm_connector.cpp:434]
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [Init@drm_connector.cpp:447] mBlockId 143
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:179] set crtc to active
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:185] set the mode
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:188] set the mode planeId 67, propId 23, GetBlockId: 143
11-27 18:59:51.061 334-334/render_service I 01400/DISP: [UpdateMode@hdi_drm_composition.cpp:193] set the connector id: 138, propId 20, crtcId 67
11-27 18:59:51.061 334-334/render_service D 01400/DISP: [~DrmModeBlock@drm_connector.cpp:453] mBlockId 143
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [Commit@hdi_display.cpp:202] the release fence is 86
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: 86
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_session.cpp:224]
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:153] set the layer fences
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 1 fencefd -1
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 522 fencefd -1
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 484 fencefd -1
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 485 fencefd -1
11-27 18:59:51.062 334-334/render_service D 01400/DISP: [GetDisplayReleaseFence@hdi_display.cpp:162] layer id 528 fencefd -1
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 104 Queue id: 1434519076891 to free list
11-27 18:59:51.062 334-334/render_service D 01400/Bufferqueue: <497>ReleaseBuffer: Success push Buffer id: 3 Queue id: 1434519076864 to free list
11-27 18:59:51.062 334-334/render_service D 01400/Composer: Repaint: Repaint: end
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop end
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug mainLoop start
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSRenderServiceVisitor::ProcessDisplayRenderNode: nodeid:[1438814044161] screenid:[0]         isSecurityDisplay:[false] child size:[5] total size:[5]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RSHardwareProcessor::Init screen w:1920, w:1080
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6983616823297 available buffer:0 name:[EntryView]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.062 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6983616823297 name:[EntryView] dst [0 0 1920 1080]SrcRect [1920 1080] rawbuffer [1920 1080] surfaceBuffer [1920 1080] buffaddr:0x1ffcb10, z:0.000000, globalZOrder:0, blendType = 3
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:25967372271617 available buffer:2 name:[softbusclient0]
11-27 18:59:51.062 334-334/render_service D 01400/Bufferqueue: <448>AcquireBuffer: Success Buffer id: 105 Queue id: 1434519076891
11-27 18:59:51.062 334-334/render_service D 01400/SyncFence: SyncFence fenceFd: -1
11-27 18:59:51.062 334-334/render_service I 00000/VsyncDistributor: RequestNextVSync: conn name:rs, rate:0
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.062 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:25967372271617 name:[softbusclient0] dst [0 48 1920 966]SrcRect [1920 966] rawbuffer [1920 966] surfaceBuffer [1920 966] buffaddr:0x2011c00, z:2.000000, globalZOrder:1, blendType = 3
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981766 available buffer:0 name:[SystemUi_StatusBar]
11-27 18:59:52.617 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.062 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981766 name:[SystemUi_StatusBar] dst [0 0 1920 48]SrcRect [1920 48] rawbuffer [1920 48] surfaceBuffer [1920 48] buffaddr:0x1ffd540, z:3.000000, globalZOrder:2, blendType = 3
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:6700148981763 available buffer:0 name:[SystemUi_NavigationBar]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.062 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:6700148981763 name:[SystemUi_NavigationBar] dst [0 1014 1920 66]SrcRect [1920 66] rawbuffer [1920 66] surfaceBuffer [1920 66] buffaddr:0x1ffac30, z:4.000000, globalZOrder:3, blendType = 3
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface start node id:906238099459 available buffer:0 name:[pointer window]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CalculateInfoWithAnimation this node have no effect
11-27 18:59:51.062 334-334/render_service E 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::ProcessSurface surfaceNode id:906238099459 name:[pointer window] dst [1683 78 64 64]SrcRect [64 64] rawbuffer [64 64] surfaceBuffer [64 64] buffaddr:0x200e8e0, z:5.000000, globalZOrder:4, blendType = 3
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 1080]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 1080]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 48 1920 966]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 48 1920 966]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 0 1920 48]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 0 1920 48]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [0 1014 1920 66]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [0 1014 1920 66]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate Before Rotate layer size [1683 78 64 64]
11-27 18:59:51.062 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::OnRotate After Rotate layer size [1683 78 64 64]
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.062 334-334/render_service D 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::CropLayers this layer no need to crop
11-27 18:59:51.062 334-334/render_service D 01400/Composer: Repaint: Repaint: start
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 48 w : 1920 h : 966
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.063 329-329/distributeddata D 01120/BundleMgrService: [bundle_mgr_proxy.cpp(GetParcelableInfo):2412] get parcelable info success
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 522 DirtyRegion x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.063 329-329/distributeddata D 01611/ZDD: BundleChecker::GetAppId: bundleName:com.ohos.medialibrary.MediaLibraryDataA, uid:20010016, appId:com.ohos.medialibrary.MediaLibraryDataA_BNtg4JBClbl92Rgc3jm/RfcAdrHXaM8F0QOiwVEhnV5ebE5jNIYnAx+weFRT3QTyUjRNdhmc2aAzWyi+5t5CoBM=
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client.cpp(~BundleMgrClient):33] destory BundleMgrClient
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_client_impl.cpp(~BundleMgrClientImpl):40] destory bundleMgrClientImpl
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.063 329-329/distributeddata I 01120/BundleMgrService: [bundle_mgr_proxy.cpp(~BundleMgrProxy):68] destroy create bundle mgr proxy instance
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 522 crop x: 0 y : 0 w : 1920 h : 966
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.063 329-329/distributeddata W 01510/IPCObjectProxy: not databus dbinder, need do nothing
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 522, zorder 1
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 522
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.063 329-329/distributeddata W 01510/IPCObjectProxy: handle = 21 destroyed
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 1683 y : 78 w : 64 h : 64
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.063 329-329/distributeddata D 01620/ZDDC: SoftBusAdapter::GetRemoteNodesBasicInfo: begin
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 329-329/distributeddata I 015c0/dsoftbus_standard: [COMM]exist same pkg name
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 528 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 329-329/distributeddata E 015c0/dsoftbus_standard: [COMM]Add CheckPkgNameInfo failed.
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 528 DirtyRegion x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 528 crop x: 0 y : 0 w : 64 h : 64
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 528, zorder 4
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 528
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.063 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 2, flags= 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.063 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 4700
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.063 200-200/samgr I 01800/SAMGR: found service : 4700.
11-27 18:59:51.063 6046-6066/com.example.softbusclient I 01400/OHOS::ROSEN: RSSurfaceOhosGl:RequestFrame, eglsurface is 0x31c0e00, width is 1920, height is 966
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.063 6046-6066/com.example.softbusclient W 00000/Drawing: SetUpGrContext: grContext has already created!!
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.063 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 484 DirtyRegion x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 6046-6066/com.example.softbusclient E 00000/Drawing: AcquireCanvas: CreateCanvas successfully!!! (03869F40)
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 484 crop x: 0 y : 0 w : 1920 h : 48
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 484, zorder 2
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 350-350/softbus_server I 015c0/dsoftbus_standard: [COMM]SoftBusServerStub::OnReceived, code = 142
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 484
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 1014 w : 1920 h : 66
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_layer.cpp:130] TransformType 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_session.cpp:315]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerVisibleRegion@hdi_layer.cpp:146] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 329-329/distributeddata D 01620/ZDDC: SoftBusAdapter::GetRemoteNodesBasicInfo: GetAllNodeDeviceInfo success infoNum=1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 485 DirtyRegion x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_session.cpp:322]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 329-329/distributeddata I 01655/DRDB: RdbSyncer::GetConnectDevices: size=1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.064 329-329/distributeddata I 01655/DRDB: RdbSyncer::GetConnectDevices: 240***f89
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_session.cpp:328]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 329-329/distributeddata I 015c0/dsoftbus_standard: [COMM]exist same pkg name
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 329-329/distributeddata E 015c0/dsoftbus_standard: [COMM]Add CheckPkgNameInfo failed.
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 485 crop x: 0 y : 0 w : 1920 h : 66
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 485, zorder 3
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 485
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_layer.cpp:115]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_session.cpp:295]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerAlpha@hdi_layer.cpp:123] enable alpha 1 galpha 0xff
11-27 18:59:51.064 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 2, flags= 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_session.cpp:270]
11-27 18:59:51.064 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 4700
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.064 200-200/samgr I 01800/SAMGR: found service : 4700.
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerSize@hdi_layer.cpp:93]  displayRect x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetTransformMode@hdi_session.cpp:302]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_session.cpp:308]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerDirtyRegion@hdi_layer.cpp:139] id : 1 DirtyRegion x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [CallLayerFunction@hdi_session.h:48] device Id : 0
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerBuffer@hdi_layer.cpp:152]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [HdiLayerBuffer@hdi_layer.cpp:29]
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [~HdiLayerBuffer@hdi_layer.cpp:39]
11-27 18:59:51.064 350-350/softbus_server I 015c0/dsoftbus_standard: [COMM]SoftBusServerStub::OnReceived, code = 144
11-27 18:59:51.064 334-334/render_service D 01400/DISP: [SetLayerCompositionType@hdi_layer.cpp:162] CompositionType type 1
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_session.cpp:334]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerBlendType@hdi_layer.cpp:169] BlendType type 3
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_session.cpp:276]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [GetHdiLayer@hdi_display.cpp:214] id : 1
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerCrop@hdi_layer.cpp:102] id : 1 crop x: 0 y : 0 w : 1920 h : 1080
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_session.cpp:283]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:67] layerId : 1
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_display.cpp:73] zorder no change layerId 1, zorder 0
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerPreMulti@hdi_session.cpp:289]
11-27 18:59:51.065 329-329/distributeddata I 01655/DRDB: RdbSyncer::NetworkIdToUUID: 240***f89 <--> f4b***bf6
11-27 18:59:51.065 329-329/distributeddata I 01655/DRDB: RdbSyncer::DoAsync: delegate sync
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:170]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [PrepareDisplayLayers@hdi_display.cpp:177]  mLayers  size 5 layers size 5
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayerZorder@hdi_layer.cpp:109] id : 0 zorder : 3
11-27 18:59:51.065 329-329/distributeddata I 01655/DRDB: RdbSyncer::MakeQuery: table=Files
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [SetLayers@hdi_gfx_composition.cpp:87] layers size 5
11-27 18:59:51.065 6046-6066/com.example.softbusclient W 00000/Drawing: RenderFrame: RenderFrame: Canvas is 03869F40
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_session.cpp:177]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [CallDisplayFunction@hdi_session.h:36] device Id : 0
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [GetDisplayCompChange@hdi_display.cpp:133] set the layers and type
11-27 18:59:51.065 334-334/render_service I 01400/OHOS::ROSEN: RsDebug RSHardwareProcessor::Redraw flush frame buffer start
11-27 18:59:51.065 334-334/render_service D 01400/Bufferqueue: <277>ReuseBuffer: RequestBuffer Success Buffer in cache id: 3 Queue id: 1434519076864
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [GbmInvalidateCache@display_gralloc_gbm.c:393]
11-27 18:59:51.065 334-334/render_service D 01400/DISP: [DmaBufferSync@display_gralloc_gbm.c:230]
11-27 18:59:51.065 329-329/distributeddata D 01630/DistributedDB: Get executor[0] from [2d0873], using[1]
11-27 18:59:51.067 329-329/distributeddata D 01630/DistributedDB: Recycle executor[0] for id[2d0873]
11-27 18:59:51.067 329-329/distributeddata I 01630/DistributedDB: [SingleVerRelationalSyncer] SubSyncId 126 create by SyncId 125, hashTableName = abc
11-27 18:59:51.068 329-329/distributeddata D 01630/DistributedDB: [SyncOperation] Init SyncOperation id:126.
11-27 18:59:51.068 329-329/distributeddata I 01630/DistributedDB: [Syncer] GenerateSyncId 126, mode = 0, wait = 0 , label = 2D0873, devices = f4b
11-27 18:59:51.068 329-329/distributeddata D 01630/DistributedDB: [Syncer] AddSyncOperation.
11-27 18:59:51.068 329-329/distributeddata D 01630/DistributedDB: [SyncOperation] SetStatus dev f4b status 0
11-27 18:59:51.068 329-1423/distributeddata I 01630/DistributedDB: [NAdapt][GetTimeout] timeout=5000 ms of target=f4b.
11-27 18:59:51.068 329-1423/distributeddata I 01630/DistributedDB: [SyncTaskContext][copyTarget] mode=6,syncId=126,isAutoSync=0,isRetry=0,dev=f4b
11-27 18:59:51.068 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01655/DRDB: RdbServiceProxy::DoAsync: success
11-27 18:59:51.068 329-1423/distributeddata D 01630/DistributedDB: [SyncStateMachine][SwitchState] tableVer:103, from state 0 move to state 1 with event 1 dev f4b
11-27 18:59:51.068 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01650/NativeRDB: ::Sync: success
11-27 18:59:51.068 329-1423/distributeddata D 01630/DistributedDB: [TimeSync] startTime = 3170611116034861040, dev = f4b
11-27 18:59:51.068 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02200/Ability: [ability_thread.cpp(Insert:1044)]AbilityThread::Insert after abilityImpl_->Insert
11-27 18:59:51.068 329-1423/distributeddata D 01630/DistributedDB: input Type = 2, inMsg type = 1
11-27 18:59:51.068 329-1423/distributeddata D 01630/DistributedDB: input Type = 2, inMsg type = 1
11-27 18:59:51.068 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 02200/Ability: [ability_thread.cpp(Insert:1045)]AbilityThread::Insert end
11-27 18:59:51.068 1854-5759/com.ohos.medialibrary.MediaLibraryDataA I 01000/AbilityManagerService: [ability_scheduler_stub.cpp(InsertInner:261)]AbilitySchedulerStub::InsertInner end
11-27 18:59:51.068 329-1423/distributeddata I 01630/DistributedDB: [CommAggr][Create] Enter, thread=4116741376, target=f4b, type=1, nonBlock=0, timeout=3000, prio=1.
11-27 18:59:51.068 329-1423/distributeddata I 01630/DistributedDB: [CommAggr][Create] Exit ok, thread=4116741376, frameId=206
11-27 18:59:51.068 329-1378/distributeddata I 01630/DistributedDB: [CommAggr][Routine] Send continue.
11-27 18:59:51.068 329-1378/distributeddata I 01630/DistributedDB: [Scheduler][OutTask] dstTarget=f4b, delayFlag=0, taskPrio=1
11-27 18:59:51.068 329-1378/distributeddata I 01620/ZDDC: processCommunication::GetMtuSize: GetMtuSize start
11-27 18:59:51.068 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(Insert:558)]DataAbilityHelper::Insert after dataAbilityProxy->Insert.
11-27 18:59:51.068 329-1378/distributeddata I 015c0/dsoftbus_standard: [COMM]exist same pkg name
11-27 18:59:51.068 6046-6124/com.example.softbusclient I 02200/Ability: [data_ability_helper.cpp(Insert:567)]DataAbilityHelper::Insert end.
11-27 18:59:51.068 329-1378/distributeddata E 015c0/dsoftbus_standard: [COMM]Add CheckPkgNameInfo failed.
11-27 18:59:51.068 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 2, flags= 0
11-27 18:59:51.069 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 4700
11-27 18:59:51.069 200-200/samgr I 01800/SAMGR: found service : 4700.
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: JSCreateAssetCompleteCallback IN
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: JSCreateAssetCompleteCallback context->error -1
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapiUtils: napi_create_error success
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod IN
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod promise
11-27 18:59:51.069 350-350/softbus_server I 015c0/dsoftbus_standard: [COMM]SoftBusServerStub::OnReceived, code = 142
11-27 18:59:51.069 329-1378/distributeddata D 01620/ZDDC: SoftBusAdapter::GetDeviceList: GetAllNodeDeviceInfo success infoNum=1
11-27 18:59:51.069 329-1378/distributeddata I 015c0/dsoftbus_standard: [COMM]exist same pkg name
11-27 18:59:51.069 6046-6046/com.example.softbusclient I 00000/Softbusclient: createAsset result {"code":"-1"}
11-27 18:59:51.069 329-1378/distributeddata E 015c0/dsoftbus_standard: [COMM]Add CheckPkgNameInfo failed.
11-27 18:59:51.069 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 2, flags= 0
11-27 18:59:51.069 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 4700
11-27 18:59:51.069 200-200/samgr I 01800/SAMGR: found service : 4700.
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 00000/MediaLibraryNapiUtils: InvokeJSAsyncMethod OUT
11-27 18:59:51.069 6046-6046/com.example.softbusclient D 02b00/MediaLibraryNapi: JSCreateAssetCompleteCallback OUT
11-27 18:59:51.069 350-350/softbus_server I 015c0/dsoftbus_standard: [COMM]SoftBusServerStub::OnReceived, code = 144
11-27 18:59:51.069 329-1378/distributeddata I 01620/ZDDC: processCommunication::GetMtuSize: GetMtuSize deviceType: 0
11-27 18:59:51.070 329-1378/distributeddata I 01630/DistributedDB: [CommAggr][SendPackets] DoSendBytes, dstTarget=f4b, extendHeadLength=0, totalLength=136.
11-27 18:59:51.070 329-1378/distributeddata I 01630/DistributedDB: [Proto][Display] This is AppLayerFrame, frameId=206.
11-27 18:59:51.070 329-1378/distributeddata I 01630/DistributedDB: [NAdapt][SendBytes] Enter, to=f4b, length=136
11-27 18:59:51.070 329-1378/distributeddata D 01620/ZDDC: AppPipeMgr::SendData: pipeInfo:<private> ,size:<private>
11-27 18:59:51.070 329-1378/distributeddata D 01620/ZDDC: SoftBusAdapter::SendData: [SendData] to f4b***bf6 ,session:distributeddata-default, size:136
11-27 18:59:51.070 329-1378/distributeddata I 015c0/dsoftbus_standard: [TRAN]OpenSession: mySessionName=distributeddata-default, peerSessionName=distributeddata-default
11-27 18:59:51.070 200-200/samgr I 01800/SAMGR: SystemAbilityManagerStub::OnReceived, code = 2, flags= 0
11-27 18:59:51.070 200-200/samgr D 01800/SAMGR: CheckSystemAbility called, systemAbilityId = 4700
11-27 18:59:51.070 200-200/samgr I 01800/SAMGR: found service : 4700.
11-27 18:59:51.070 334-747/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:rs, connection name:rs, ret:8
11-27 18:59:51.070 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:ACE, ret:8
11-27 18:59:51.070 334-748/render_service I 00000/VsyncDistributor: ThreadMain: Distributor name:app, connection name:RSVsyncClientOhos_6046_0, ret:8
11-27 18:59:51.070 334-749/render_service I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.070 6046-6065/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.071 6046-6065/com.example.softbusclient E 01130/EventHandler: SendTimingEvent: SendTime is before now systime, change to 0 delaytime Event
11-27 18:59:51.071 6046-6067/com.example.softbusclient I 00000/VsyncReceiver: OnReadable: retVal:8, cb == nullptr:0
11-27 18:59:51.071 350-350/softbus_server I 015c0/dsoftbus_standard: [COMM]SoftBusServerStub::OnReceived, code = 132
11-27 18:59:51.071 6046-6046/com.example.softbusclient I 06604/ueaCleint-FrameUiIntf: [BeginFlushAnimation]:start

 

 

Logo

社区规范:仅讨论OpenHarmony相关问题。

更多推荐