Home
last modified time | relevance | path

Searched refs:ashmemName (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/common/src/
H A Dshared_block.cpp86 std::string ashmemName = "SharedBlock:" + name; in Create() local
88 sptr<Ashmem> ashmem = Ashmem::CreateAshmem(ashmemName.c_str(), size); in Create()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/appdatafwk/src/
H A Dshared_block.cpp83 std::string ashmemName = "SharedBlock:" + ashmemPath + std::to_string(identifier.fetch_add(1)); in Create() local
85 sptr<Ashmem> ashmem = Ashmem::CreateAshmem(ashmemName.c_str(), size); in Create()
/ohos5.0/foundation/communication/ipc/ipc/test/moduletest/native/common/
H A Dipc_core_module_test.cpp56 std::string ashmemName = "AshmemIpc"; member in IPCNativeFrameworkTest
550 sptr<Ashmem> ashmem = Ashmem::CreateAshmem(ashmemName.c_str(), rawData10K);
670 sptr<Ashmem> ashmem = Ashmem::CreateAshmem(ashmemName.c_str(), 1024);
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/
H A Dbundle_mgr_host.h869 T &parcelable, const char *ashmemName, MessageParcel &reply);
873 T &parcelable, const char *ashmemName, MessageParcel &reply);
/ohos5.0/foundation/communication/ipc/ipc/native/src/napi_common/source/
H A Dnapi_ashmem.cpp947 std::string ashmemName = stringValue; in Ashmem_JS_Constructor() local
951 sptr<Ashmem> nativeAshmem = Ashmem::CreateAshmem(ashmemName.c_str(), ashmemSize); in Ashmem_JS_Constructor()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp3571 T &parcelable, const char *ashmemName, MessageParcel &reply) in WriteParcelableIntoAshmem() argument
3574 if (ashmemName == nullptr) { in WriteParcelableIntoAshmem()
3596 (ashmemName + std::to_string(AllocatAshmemNum())).c_str(), totalSize); in WriteParcelableIntoAshmem()
3637 ErrCode BundleMgrHost::WriteBigParcelable(T &parcelable, const char *ashmemName, MessageParcel &rep… in WriteBigParcelable() argument
3648 if (!WriteParcelableIntoAshmem(parcelable, ashmemName, reply)) { in WriteBigParcelable()