Home
last modified time | relevance | path

Searched refs:LIMIT_PARCEL_SIZE (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_mgr_stub.cpp29 const int32_t LIMIT_PARCEL_SIZE = 1024; variable
34 size_t splitSize = (source.size() / LIMIT_PARCEL_SIZE); in SplitString()
35 if ((source.size() % LIMIT_PARCEL_SIZE) != 0) { in SplitString()
40 size_t start = LIMIT_PARCEL_SIZE * i; in SplitString()
41 strings.emplace_back(source.substr(start, LIMIT_PARCEL_SIZE)); in SplitString()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp38 const int16_t LIMIT_PARCEL_SIZE = 1024; variable
53 int splitSize = (source.size() / LIMIT_PARCEL_SIZE); in SplitString()
54 if ((source.size() % LIMIT_PARCEL_SIZE) != 0) { in SplitString()
59 int32_t start = LIMIT_PARCEL_SIZE * i; in SplitString()
60 strings.emplace_back(source.substr(start, LIMIT_PARCEL_SIZE)); in SplitString()