Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/support/platform/test/unittest/common/
H A Dhdf_emmc_test.cpp54 uint8_t cid[EMMC_CID_LEN] = {0}; in TestUserEmmcGetCid()
57 EmmcGetHuid(cid, EMMC_CID_LEN); in TestUserEmmcGetCid()
58 for (i = 0; i < EMMC_CID_LEN; i++) { in TestUserEmmcGetCid()
/ohos5.0/drivers/hdf_core/framework/model/storage/src/mmc/
H A Dmmc_dispatch.c41 uint8_t cid[EMMC_CID_LEN] = {0}; in EmmcCmdGetCid()
48 ret = EmmcDeviceGetCid((struct EmmcDevice *)cntlr->curDev, cid, EMMC_CID_LEN); in EmmcCmdGetCid()
54 if (HdfSbufWriteBuffer(reply, cid, EMMC_CID_LEN) == false) { in EmmcCmdGetCid()
H A Demmc_if.c124 if (cid == NULL || size < EMMC_CID_LEN) { in EmmcGetCid()
/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/common/
H A Demmc_test.c46 uint8_t cid[EMMC_CID_LEN] = {0}; in TestEmmcGetCid()
48 ret = EmmcGetCid(tester->handle, cid, EMMC_CID_LEN); in TestEmmcGetCid()
53 for (i = 0; i < EMMC_CID_LEN; i++) { in TestEmmcGetCid()
/ohos5.0/drivers/hdf_core/framework/include/platform/
H A Demmc_if.h45 #define EMMC_CID_LEN 16 macro
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/storage/
H A Demmc_adapter.c41 if (cid == NULL || size < EMMC_CID_LEN) { in LinuxEmmcGetCid()