Home
last modified time | relevance | path

Searched refs:reportData (Results 1 - 11 of 11) sorted by relevance

/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/
H A Dres_sched_service_mock_test.cpp389 MessageParcel reportData; in HWTEST_F() local
390 reportData.WriteInterfaceToken(resSchedServiceStub_->GetDescriptor()); in HWTEST_F()
391 reportData.WriteUint32(1); in HWTEST_F()
392 reportData.WriteInt64(1); in HWTEST_F()
393 reportData.WriteString("{ { \" uid \" : \" 1 \" } }"); in HWTEST_F()
394 EXPECT_EQ(resSchedServiceStub_->ReportDataInner(reportData, reply), ERR_OK); in HWTEST_F()
414 MessageParcel reportData; in HWTEST_F() local
416 reportData.WriteInterfaceToken(resSchedServiceStub_->GetDescriptor()); in HWTEST_F()
417 reportData.WriteUint32(38); in HWTEST_F()
418 reportData in HWTEST_F()
438 MessageParcel reportData; HWTEST_F() local
460 MessageParcel reportData; HWTEST_F() local
484 MessageParcel reportData; HWTEST_F() local
505 MessageParcel reportData; HWTEST_F() local
[all...]
H A Dres_sched_service_test.cpp579 MessageParcel reportData; in HWTEST_F() local
580 reportData.WriteInterfaceToken(ResSchedServiceStub::GetDescriptor()); in HWTEST_F()
581 reportData.WriteUint32(1); in HWTEST_F()
582 reportData.WriteInt64(1); in HWTEST_F()
583 reportData.WriteString("{ { \" uid \" : \" 1 \" } }"); in HWTEST_F()
615 MessageParcel reportData; in ReportDataInnerTask() local
616 reportData.WriteInterfaceToken(ResSchedServiceStub::GetDescriptor()); in ReportDataInnerTask()
617 reportData.WriteUint32(1); in ReportDataInnerTask()
618 reportData.WriteInt64(1); in ReportDataInnerTask()
619 reportData in ReportDataInnerTask()
[all...]
/foundation/resourceschedule/resource_schedule_service/ressched_executor/test/unittest/
H A Dres_sched_exe_service_test.cpp284 MessageParcel reportData; in HWTEST_F() local
285 reportData.WriteUint32(1); in HWTEST_F()
286 reportData.WriteInt64(1); in HWTEST_F()
287 reportData.WriteString("{ { \" uid \" : \" 1 \" } }"); in HWTEST_F()
288 EXPECT_TRUE(!resSchedExeServiceStub_->ReportRequestInner(reportData, reply)); in HWTEST_F()
300 MessageParcel reportData; in ReportRequestInnerTask() local
301 reportData.WriteUint32(1); in ReportRequestInnerTask()
302 reportData.WriteInt64(1); in ReportRequestInnerTask()
303 reportData.WriteString("{ { \" uid \" : \" 1 \" } }"); in ReportRequestInnerTask()
304 EXPECT_TRUE(!resSchedExeServiceStub_->ReportRequestInner(reportData, repl in ReportRequestInnerTask()
332 MessageParcel reportData; HWTEST_F() local
346 MessageParcel reportData; ReportDebugInnerTask() local
425 MessageParcel reportData; HWTEST_F() local
443 MessageParcel reportData; ParseParcelTask() local
[all...]
/foundation/multimedia/media_library/frameworks/services/media_dfx/src/
H A Ddfx_reporter.cpp442 int32_t DfxReporter::ReportAlbumFusion(const AlbumFusionDfxDataPoint& reportData) in ReportAlbumFusion() argument
448 "ALBUM_FUSION_TAG", reportData.albumFusionTag, in ReportAlbumFusion()
449 "REPORT_TIME_STAMP", reportData.reportTimeStamp, in ReportAlbumFusion()
450 "ALBUM_FUSION_STATE", reportData.albumFusionState, in ReportAlbumFusion()
451 "IMAGE_ASSET_COUNT", reportData.imageAssetCount, in ReportAlbumFusion()
452 "VIDEO_ASSET_COUNT", reportData.videoAssetCount, in ReportAlbumFusion()
453 "NUMBER_OF_SOURCE_ALBUM", reportData.numberOfSourceAlbum, in ReportAlbumFusion()
454 "NUMBER_OF_USER_ALBUM", reportData.numberOfUserAlbum, in ReportAlbumFusion()
455 "TOTAL_ASSETS_IN_SOURCE_ALBUMS", reportData.totalAssetsInSourceAlbums, in ReportAlbumFusion()
456 "TOTAL_ASSETS_IN_USER_ALBUMS", reportData in ReportAlbumFusion()
[all...]
/foundation/multimodalinput/input/frameworks/napi/input_device/src/
H A Djs_event_target.cpp49 void JsEventTarget::EmitAddedDeviceEvent(sptr<JsUtil::ReportData> reportData) in EmitAddedDeviceEvent() argument
53 reportData->DecStrongRef(nullptr); in EmitAddedDeviceEvent()
61 if (item->ref != reportData->ref) { in EmitAddedDeviceEvent()
78 CHKRV_SCOPE_DEL(item->env, napi_create_int32(item->env, reportData->deviceId, &deviceId), CREATE_INT32, scope); in EmitAddedDeviceEvent()
81 BytraceAdapter::StartDevListener(ADD_EVENT, reportData->deviceId); in EmitAddedDeviceEvent()
83 ADD_EVENT.c_str(), reportData->deviceId); in EmitAddedDeviceEvent()
92 void JsEventTarget::EmitRemoveDeviceEvent(sptr<JsUtil::ReportData> reportData) in EmitRemoveDeviceEvent() argument
96 reportData->DecStrongRef(nullptr); in EmitRemoveDeviceEvent()
104 if (item->ref != reportData->ref) { in EmitRemoveDeviceEvent()
114 CHKRV_SCOPE_DEL(item->env, napi_create_int32(item->env, reportData in EmitRemoveDeviceEvent()
148 sptr<JsUtil::ReportData> reportData = new (std::nothrow) JsUtil::ReportData; OnDeviceAdded() local
177 sptr<JsUtil::ReportData> reportData = new (std::nothrow) JsUtil::ReportData; OnDeviceRemoved() local
[all...]
/foundation/multimodalinput/input/frameworks/napi/input_device/include/
H A Djs_event_target.h71 static void EmitAddedDeviceEvent(sptr<JsUtil::ReportData> reportData);
72 static void EmitRemoveDeviceEvent(sptr<JsUtil::ReportData> reportData);
/foundation/multimedia/media_library/frameworks/services/media_dfx/include/
H A Ddfx_reporter.h66 static int32_t ReportAlbumFusion(const AlbumFusionDfxDataPoint& reportData);
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/manager/src/
H A Dsoftbus_broadcast_mgr.c421 static int32_t BuildBcInfoCommon(const SoftBusBcScanResult *reportData, BroadcastReportInfo *bcInfo) in BuildBcInfoCommon() argument
423 bcInfo->eventType = reportData->eventType; in BuildBcInfoCommon()
424 bcInfo->dataStatus = reportData->dataStatus; in BuildBcInfoCommon()
425 bcInfo->primaryPhy = reportData->primaryPhy; in BuildBcInfoCommon()
426 bcInfo->secondaryPhy = reportData->secondaryPhy; in BuildBcInfoCommon()
427 bcInfo->advSid = reportData->advSid; in BuildBcInfoCommon()
428 bcInfo->txPower = reportData->txPower; in BuildBcInfoCommon()
429 bcInfo->rssi = reportData->rssi; in BuildBcInfoCommon()
430 bcInfo->addrType = reportData->addrType; in BuildBcInfoCommon()
432 int32_t ret = memcpy_s(bcInfo->addr.addr, BC_ADDR_MAC_LEN, reportData in BuildBcInfoCommon()
581 BuildBroadcastReportInfo(const SoftBusBcScanResult *reportData, BroadcastReportInfo *bcInfo) BuildBroadcastReportInfo() argument
612 BcReportScanDataCallback(int32_t adapterScanId, const SoftBusBcScanResult *reportData) BcReportScanDataCallback() argument
[all...]
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/include/
H A Dsoftbus_broadcast_adapter_interface.h58 void (*OnReportScanDataCallback)(int32_t scannerId, const SoftBusBcScanResult *reportData);
/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dsoftbus_ble_gatt_test.cpp41 bool Update(int32_t scannerId, const SoftBusBcScanResult *reportData);
42 testing::AssertionResult Expect(int32_t scannerId, const SoftBusBcScanResult *reportData);
76 static void StubOnScanResult(int32_t scannerId, const SoftBusBcScanResult *reportData) in StubOnScanResult() argument
78 SoftbusBleGattTest::scanResultCtx.Update(scannerId, reportData); in StubOnScanResult()
343 static void FakeReportScanDataCallback(int32_t adapterScanld, const SoftBusBcScanResult *reportData) in FakeReportScanDataCallback() argument
346 (void)reportData; in FakeReportScanDataCallback()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/
H A Dpage_router_manager.cpp1426 std::unordered_map<std::string, std::string> reportData { { "pageUrl", target.url } }; in CreatePage()
1427 ResSchedReportScope reportScope("push_page", reportData); in CreatePage()

Completed in 15 milliseconds