Home
last modified time | relevance | path

Searched refs:manufacture (Results 1 – 8 of 8) sorted by relevance

/base/startup/init/interfaces/innerkits/syspara/
Dparam_comm.c189 const char *manufacture = GetManufacture_(); in GetDevUdid_() local
192 if (manufacture == NULL || model == NULL || sn == NULL) { in GetDevUdid_()
195 int tmpSize = strlen(manufacture) + strlen(model) + strlen(sn) + 1; in GetDevUdid_()
203 if ((strcat_s(tmp, tmpSize, manufacture) != 0) || (strcat_s(tmp, tmpSize, model) != 0) || in GetDevUdid_()
/base/startup/syspara_lite/frameworks/parameter/src/
Dparameter_common.c351 const char *manufacture = GetManufacture(); in GetDevUdid() local
354 if (manufacture == NULL || model == NULL || sn == NULL) { in GetDevUdid()
357 int tmpSize = strlen(manufacture) + strlen(model) + strlen(sn) + 1; in GetDevUdid()
367 if ((strcat_s(tmp, tmpSize, manufacture) != 0) || in GetDevUdid()
/base/startup/syspara_lite/interfaces/kits/js/
D@ohos.deviceInfo.d.ts38 const manufacture: string; constant
/base/startup/init/interfaces/kits/jskits/
D@ohos.deviceInfo.d.ts38 const manufacture: string; constant
/base/startup/syspara_lite/hals/parameter/src/
Dparameter_hal.cpp361 const char *manufacture = HalGetManufacture(); in HalGetDevUdid() local
364 if (manufacture == nullptr || model == nullptr || sn == nullptr) { in HalGetDevUdid()
367 int tmpSize = strlen(manufacture) + strlen(model) + strlen(sn) + 1; in HalGetDevUdid()
377 if ((strcat_s(tmp, tmpSize, manufacture) != 0) || (strcat_s(tmp, tmpSize, model) != 0) || in HalGetDevUdid()
/base/security/device_security_level/common/include/
Ddslm_cred.h46 char manufacture[CRED_INFO_MANU_LEN]; member
/base/security/device_security_level/services/dfx/
Ddslm_hidumper.c193 dprintf(fd, "CRED_MANUFACTURE : %s" END_LINE, info->credInfo.manufacture); in DumpDeviceDetails()
/base/security/device_security_level/oem_property/common/
Ddslm_credential_utils.c501 (void)GetDataFromJson(json, CRED_KEY_MANUFACTURE, credInfo->manufacture, CRED_INFO_MANU_LEN); in CredentialCbToDslmCredInfo()