Home
last modified time | relevance | path

Searched refs:used (Results 1 - 25 of 50) sorted by relevance

12

/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Draw_data_parser.cpp25 size_t used = 0; in ParserRawData() local
28 if (sizeof(ASSET_MAGIC) > length - used) { in ParserRawData()
33 used += sizeof(ASSET_MAGIC); in ParserRawData()
39 if (sizeof(size) > length - used) { in ParserRawData()
42 alignData.assign(data + used, data + used + sizeof(size)); in ParserRawData()
43 used += sizeof(size); in ParserRawData()
45 if (size > length - used) { in ParserRawData()
48 auto rawData = std::string(reinterpret_cast<const char *>(&data[used]), size); in ParserRawData()
53 used in ParserRawData()
59 size_t used = 0; ParserRawData() local
126 auto used = ParserRawData(data, length, res); ParserRawData() local
137 size_t used = 0; ParserRawData() local
181 size_t used = 0; ParserRawData() local
[all...]
H A Drd_connection.cpp32 __attribute__((used))
34 __attribute__((used))
36 __attribute__((used))
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/source/
H A Dtoken_bucket.c26 int used = bucket->used + TOKEN_PRE_MSG; in TB_CheckMessage() local
27 used = (generated > used) ? 0 : (used - (int)generated); in TB_CheckMessage()
28 if (used >= bucket->burst * TOKEN_PRE_MSG) { in TB_CheckMessage()
31 bucket->used = used; in TB_CheckMessage()
H A Dtoken_bucket.h31 int used; // The used buckets. When the rate is TPS, the value is used * TOKEN_PRE_MSG. member
44 bucket->used = 0; in TB_InitBucket()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_cloud_data_translate.cpp80 size_t used = 0; in ParserRawData() local
83 if (sizeof(ASSET_MAGIC) > length - used) { in ParserRawData()
88 used += sizeof(ASSET_MAGIC); in ParserRawData()
93 if (sizeof(size) > length - used) { in ParserRawData()
96 alignData.assign(data + used, data + used + sizeof(size)); in ParserRawData()
97 used += sizeof(size); in ParserRawData()
99 if (size > length - used) { in ParserRawData()
102 auto rawData = std::string(reinterpret_cast<const char *>(&data[used]), size); in ParserRawData()
107 used in ParserRawData()
113 size_t used = 0; ParserRawData() local
[all...]
/foundation/arkui/ui_lite/frameworks/font/
H A Dui_font_allocator.cpp51 chunk->used = false; in SetRamAddr()
56 end_->used = true; in SetRamAddr()
89 if (chunk->used) { in Allocate()
100 chunk2->used = false; in Allocate()
104 chunk->used = true; in Allocate()
111 chunk->used = true; in Allocate()
117 while (cur->used && (cur != end_)) { in Allocate()
138 if (((nextChunk != chunk) && !(nextChunk->used)) && (nextChunk != end_)) { in CombineFree()
147 if ((prevChunk != chunk) && !(prevChunk->used)) { in CombineFree()
170 chunk->used in Free()
[all...]
H A Dui_font_allocator.h29 bool used; member
/foundation/graphic/graphic_3d/lume/LumeEngine/src/
H A Dstatic_plugin_decl.h34 #define PLUGIN_DATA(NAME) __attribute__((used)) constexpr const CORE_NS::IPlugin NAME##_pluginData
58 __attribute__((visibility("hidden"), used)) CORE_NS::IPlugin const* const NAME##_DATA_ref = NAME##_StaticPlugin; \
60 extern __attribute__((visibility("hidden"), used, weak)) CORE_NS::IPlugin const* const static_plugin_list_ref = \
63 extern __attribute__((visibility("hidden"), used, weak)) \
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/communicator/src/
H A Ddata_buffer.cpp57 void DataBuffer::SetBufUsed(size_t used) in SetBufUsed() argument
59 used_ = used; in SetBufUsed()
H A Ddata_buffer.h43 void SetBufUsed(size_t used);
/foundation/communication/netmanager_base/bpf/bpf_progs/
H A Dnet_permission.c19 #define SEC(NAME) __attribute__((section(NAME), used))
H A D464xlat.c19 #define SEC(NAME) __attribute__((section(NAME), used))
H A Doffload.c19 #define SEC(NAME) __attribute__((section(NAME), used))
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/app/src/backup_rule/src/
H A Dscreen_off.cpp23 __attribute__((used)) ScreenOff ScreenOff::instance_;
H A Dcharging.cpp23 __attribute__((used)) Charging Charging::instance_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/screenlock/src/
H A Dscreen_lock.cpp23 __attribute__((used)) static bool g_init =
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/permission/
H A Ddata_checker.cpp24 __attribute__((used)) DataChecker DataChecker::instance_;
/foundation/arkui/ace_engine_lite/frameworks/src/core/context/
H A Dace_ability.h26 #error AceAbility only be used for L1 upper
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/account/src/
H A Daccount_delegate_default_impl.cpp25 __attribute__((used)) static bool g_isInit = AccountDelegateDefaultImpl::Init();
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpasteboard_entry_getter.cpp24 __attribute__((used)) PasteboardEntryGetter::Factory PasteboardEntryGetter::factory_;
/foundation/systemabilitymgr/safwk/interfaces/innerkits/safwk/rust/examples/listen_rust_sa/src/
H A Dlib.rs67 #[used]
/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/netfirewall/
H A Dnetfirewall_map_def.h20 #define SEC(NAME) __attribute__((section(NAME), used))
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dsocket_common.c161 /* This is for socket alloc/initial fail, it is only used before socket created and socket index returned to user */
234 tableIndex = SYS_ARCH_ATOMIC_READ(&table->used); in SpungeAllocFtSock()
254 SYS_ARCH_ATOMIC_INC(&table->used, 1); in SpungeAllocFtSock()
287 if ((sockIndex < 0) || (sockIndex >= SYS_ARCH_ATOMIC_READ(&g_spunge->sockTable->used))) { in SockGetSocket()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvdb_exporter.cpp26 __attribute__((used)) KVDBExporter KVDBExporter::instance_;
/foundation/filemanagement/dfs_service/adapter/cloud_adapter_example/src/
H A Dcloud_file_kit_impl.cpp29 __attribute__((used)) static bool g_isInit =

Completed in 6 milliseconds

12