Home
last modified time | relevance | path

Searched refs:total_ (Results 1 - 22 of 22) sorted by relevance

/foundation/distributeddatamgr/udmf/framework/common/
H A Dtlv_object.cpp24 total_ += buffer.size(); in TLVObject()
42 total_ = static_cast<size_t>(total); in SetFile()
51 buffer_->resize(total_); in UpdateSize()
61 return total_; in GetTotal()
94 total_ += size; in Count()
101 total_ += size; in Count()
113 total_ += size; in Count()
120 total_ += size; in Count()
127 total_ += size; in Count()
289 total_ in CountHead()
[all...]
H A Dtlv_object.h86 std::size_t total_ = 0; member in OHOS::UDMF::TLVObject
96 total_ += size; in CountBasic()
/foundation/arkui/ace_engine/frameworks/base/memory/
H A Dmemory_monitor.cpp63 total_ -= it->second.size;
82 total_ += size;
95 std::string out = "total = " + std::to_string(total_) + ", count = " + std::to_string(count_);
119 size_t total_ = 0; member in OHOS::Ace::MemoryMonitorImpl
/foundation/arkui/ace_engine/test/unittest/core/pattern/progress/
H A Dprogress_content_modifier_test_ng.cpp224 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
265 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
306 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
347 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
388 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
429 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
470 EXPECT_EQ(config.total_, MAX_VALUE); in HWTEST_F()
511 EXPECT_EQ(config.total_, MIN_VALUE); in HWTEST_F()
552 EXPECT_EQ(config.total_, MIN_VALUE); in HWTEST_F()
593 EXPECT_EQ(config.total_, MIN_VALU in HWTEST_F()
[all...]
H A Dprogress_builder_test_ng.cpp193 EXPECT_EQ(config.total_, MAX_VALUE_OF_PROGRESS); in HWTEST_F()
237 EXPECT_EQ(config.total_, MAX_VALUE_OF_PROGRESS); in HWTEST_F()
281 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
322 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
366 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
410 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
454 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
498 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
542 EXPECT_EQ(config.total_, MAX_NEG_VALUE_OF_PROGRESS); in HWTEST_F()
585 EXPECT_EQ(config.total_, MAX_VALUE_OF_PROGRES in HWTEST_F()
[all...]
/foundation/filemanagement/storage_service/interfaces/innerkits/storage_manager/native/
H A Dstorage_stats.h27 : total_(total), audio_(audio), video_(video), image_(image), file_(file), app_(app) {} in StorageStats()
30 int64_t total_ {0};
/foundation/filemanagement/storage_service/services/storage_manager/innerkits_impl/src/
H A Dstorage_stats.cpp22 if (!parcel.WriteInt64(total_)) { in Marshalling()
52 obj->total_ = parcel.ReadInt64(); in Unmarshalling()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/mock/
H A Dtlv_object_mock.cpp21 total_ += buffer.size(); in TLVObject()
37 buffer_->resize(total_); in UpdateSize()
47 return total_; in GetTotal()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/
H A Dprogress_date.h112 : CommonConfiguration(enabled), value_(value), total_(total) {} in ProgressConfiguration()
114 float total_ = 0.0f; member in OHOS::Ace::NG::ProgressConfiguration
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_async_call.cpp127 record_.total_.times_++; in Call()
128 record_.total_.lastTime_ = std::chrono::duration_cast<std::chrono::milliseconds>( in Call()
156 auto report = (record_.total_.times_.load() - record_.completed_.times_.load()) / EXCEPT_DELTA; in Async()
160 record_.total_.times_.load(), record_.executed_->times_.load(), record_.completed_.times_.load(), in Async()
161 record_.total_.lastTime_, record_.executed_->lastTime_, record_.completed_.lastTime_); in Async()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dconnection_pool.cpp541 if (total_ != count_) { in ConfigLocale()
575 count_, max_, total_, left_, right_); in Acquire()
624 total_++; in ExtendNode()
635 while (count < total_ && cond_.wait_until(lock, time, [this]() { return count_ > 0; })) { in AcquireAll()
642 if (count != total_) { in AcquireAll()
690 total_ = total_ > count_ ? total_ - 1 : count_; in Release()
742 total_ = 0; in Clear()
758 return total_ in IsFull()
[all...]
/foundation/filemanagement/storage_service/services/storage_manager/innerkits_impl/test/
H A Dstorage_stats_test.cpp90 EXPECT_EQ(res.total_, totalSize); in HWTEST_F()
/foundation/distributeddatamgr/pasteboard/framework/tlv/
H A Dtlv_object.h62 TLVObject() : total_(0), cursor_(0) {} in TLVObject()
69 total_ = buffer.size(); in Init()
352 return cursor_ < total_; in IsEnough()
355 size_t total_ = 0; member
H A Dtlv_object.cpp501 total_ = total; in Encode()
509 total_ = total; in Decode()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_async_call.h93 RecordData total_; member
/foundation/filemanagement/storage_service/services/storage_manager/storage/src/
H A Dstorage_status_service.cpp227 storageStats.total_ = totalSize; in GetUserStorageStats()
261 userId, static_cast<long long>(storageStats.total_), static_cast<long long>(storageStats.app_), in GetUserStorageStats()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dconnection_pool.h90 int total_ = 0; member
/foundation/distributedhardware/distributed_camera/services/channel/src/
H A Ddcamera_softbus_adapter.cpp251 uint32_t total_ = sessionTotal_[sessionName]; in DestroySoftbusSessionServer() local
252 if (total_ == 0) { in DestroySoftbusSessionServer()
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpaste_data_entry.cpp177 total_ = buffer.size(); in Unmarshalling()
H A Dpaste_data.cpp493 total_ = buffer.size(); in Decode()
/foundation/filemanagement/storage_service/services/storage_manager/kits_impl/src/
H A Dstorage_statistics_n_exporter.cpp326 totalObject.AddProp("total", NVal::CreateInt64(env, (storageStats->total_)).val_); in GetUserStorageStats()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_progress_bridge.cpp593 panda::NumberRef::New(vm, config.total_), panda::BooleanRef::New(vm, config.enabled_)}; in SetContentModifierBuilder()

Completed in 19 milliseconds