/ohos5.0/docs/en/application-dev/reference/common/ |
H A D | memory.md | 114 …dify function, which is used for further modification after the purgeable memory data is rebuilt.| 145 …is ready; returns a failure message if purgeable memory has been reclaimed and fails to be rebuilt. 171 …is ready; returns a failure message if purgeable memory has been reclaimed and fails to be rebuilt.
|
/ohos5.0/docs/en/application-dev/database/ |
H A D | data-backup-and-restore.md | 239 …data/js-apis-data-relationalStore.md#storeconfig) to **true**. The newly rebuilt RDB store is empt… 241 …true** before the database is corrupted, the database will be automatically rebuilt when corrupted. 243 …et or is set to **false**, set **allowRebuild** to **true** and open the rebuilt RDB store. <br>Ex… 352 // Open the rebuilt RDB store and create tables.
|
H A D | data-persistence-by-rdb-store.md | 57 If error code 14800011 is reported, the RDB store is corrupted and needs to be rebuilt. For details…
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_store.cpp | 565 int RdbStore::GetRebuilt(RebuiltType &rebuilt) in GetRebuilt() argument 567 (void)rebuilt; in GetRebuilt()
|
H A D | rdb_store_impl.cpp | 2260 int RdbStoreImpl::GetRebuilt(RebuiltType &rebuilt) in GetRebuilt() argument 2262 rebuilt = static_cast<RebuiltType>(rebuild_); in GetRebuilt()
|
/ohos5.0/commonlibrary/memory_utils/ |
H A D | README.md | 65 …overy. When the application is used again, the purgeable memory that has been freed can be rebuilt.
|
/ohos5.0/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/ |
H A D | RdbStoreCorruptJsunit.test.js | 167 expect(rdbStore.rebuilt).assertEqual(data_relationalStore.RebuildType.REBUILT);
|
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/include/ |
H A D | clouddisk_rdbstore_mock.h | 176 MOCK_METHOD1(GetRebuilt, int(RebuiltType &rebuilt));
|
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/mock/ |
H A D | rdb_store_mock.h | 175 MOCK_METHOD1(GetRebuilt, int(RebuiltType &rebuilt));
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/include/ |
H A D | rdb_store_impl.h | 70 int GetRebuilt(RebuiltType &rebuilt) override;
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | arraybuffer-object.md | 9 …yBuffer object. In cross-thread scenarios, only the JS shell needs to be rebuilt, and the native m…
|
/ohos5.0/foundation/bundlemanager/app_domain_verify/test/unittest/mock/include/ |
H A D | mock_rdb.h | 296 int GetRebuilt(RebuiltType& rebuilt) override in GetRebuilt() argument
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/include/ |
H A D | mock_app_provision_info.h | 301 virtual int GetRebuilt(RebuiltType &rebuilt) in GetRebuilt() argument
|
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | rdb_store.h | 661 virtual int GetRebuilt(RebuiltType &rebuilt);
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | rdb_store_impl.h | 135 int GetRebuilt(RebuiltType &rebuilt) override;
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | arkts-rendering-control-lazyforeach.md | 487 …rebuilt. **LazyForEach** compares the keys of all original data items with those of all new data i… 673 When **LazyForEach** is used for UI re-renders, a child component needs to be destroyed and rebuilt… 1182 …stead, all data items generate new keys. As a result, all data items are rebuilt. This method has … 1262 …ause, with the **LazyForEach** update mechanism, the entire list item is rebuilt. As the **Image**… 1793 …hat the data item with the specified index has changed and the child component needs to be rebuilt.
|
H A D | properly-use-state-management-to-develope.md | 1223 …rebuilt. After **message** is changed, the key of the corresponding list item in **LazyForEach** c… 1364 …nd no log is generated, which indicates that the **Text** and **Image** components are not rebuilt.
|
H A D | arkts-custom-components-freeze.md | 233 …hat the data item with the specified index has changed and the child component needs to be rebuilt. 685 …hat the data item with the specified index has changed and the child component needs to be rebuilt. 857 …hat the data item with the specified index has changed and the child component needs to be rebuilt.
|
H A D | arkts-reusable.md | 1173 …hat the data item with the specified index has changed and the child component needs to be rebuilt. 1236 …hat the data item with the specified index has changed and the child component needs to be rebuilt.
|
/ohos5.0/base/notification/distributed_notification_service/services/ans/test/unittest/notification_rdb_data_mgr_test/ |
H A D | notification_rdb_data_mgr_test.cpp | 333 virtual int GetRebuilt(RebuiltType &rebuilt) in GetRebuilt() argument
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_rdb_store.cpp | 1274 auto rebuilt = RebuiltType::NONE; in GetRebuilt() local 1275 rdbStoreProxy->GetInstance()->GetRebuilt(rebuilt); in GetRebuilt() 1276 return JSUtils::Convert2JSValue(env, (uint32_t)rebuilt); in GetRebuilt()
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-mini-appx-code.md | 10 - Clear: The code should be easy to understand, maintain, and rebuilt. Avoid obscure syntax.
|
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/ |
H A D | js-apis-data-relationalStore.md | 803 | NONE | 0 | The RDB store is not rebuilt. … 804 | REBUILT | 1 | The RDB store is rebuilt, and an empty database is created. You need to create t… 2107 | rebuilt<sup>12+</sup> | [RebuildType](#rebuildtype12) | Yes| No| Whether the RDB store has been r… 2138 // Whether the RDB store has been rebuilt. 2139 console.info(`RdbStore rebuilt is ${store.rebuilt}`);
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/ |
H A D | js-apis-router.md | 1027 …s set, the application returns to the previous page, and the page is not rebuilt. The page in the …
|
/ohos5.0/docs/en/contribute/ |
H A D | OpenHarmony-compile-rule.md | 1199 … of the component generated by this method is different from that of the rebuilt components withou…
|