Home
last modified time | relevance | path

Searched refs:tempType (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/base/hiviewdfx/hilog_lite/frameworks/js/builtin/src/
H A Dhilog_vector.cpp79 ValueType *tempType = static_cast<ValueType*>( in Push() local
82 if (tempStr != nullptr && tempType != nullptr) { in Push()
84 vector->type = tempType; in Push()
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
H A Dmemory_util.cpp56 string tempType = ""; in GetTypeValue() local
57 bool getSuccess = GetTypeAndValue(str, tempType, value); in GetTypeValue()
63 auto iter = find(tags.begin(), tags.end(), tempType); in GetTypeValue()
70 type = tempType; in GetTypeValue()
/ohos5.0/drivers/peripheral/user_auth/test/unittest/service_test/src/
H A Dsignature_operation.cpp130 int32_t tempType = type; in WriteTlvHead() local
131 …(buf->buf + buf->contentSize, buf->maxSize - buf->contentSize, &tempType, sizeof(tempType)) != EOK… in WriteTlvHead()
135 buf->contentSize += sizeof(tempType); in WriteTlvHead()
/ohos5.0/drivers/peripheral/bluetooth/audio/hal/hdi_binder/proxy/src/
H A Daudio_proxy_common.cpp153 uint32_t tempType = 0; in AudioProxyReadSapmleAttrbutes() local
154 if (!HdfSbufReadUint32(reply, &tempType)) { in AudioProxyReadSapmleAttrbutes()
157 attrs->type = (AudioCategory)tempType; in AudioProxyReadSapmleAttrbutes()
H A Daudio_proxy_render.cpp808 uint32_t tempType = (uint32_t)(uintptr_t)type; in AudioProxyRenderDrainBuffer() local
809 if (!HdfSbufWriteUint32(data, tempType)) { in AudioProxyRenderDrainBuffer()
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/lattice_napi/
H A Djs_lattice.cpp133 napi_value tempType = nullptr; in GetLatticeRectTypes() local
134 napi_get_element(env, rectTypesArray, i, &tempType); in GetLatticeRectTypes()
136 if (napi_get_value_int32(env, tempType, &rectType) != napi_ok || in GetLatticeRectTypes()
/ohos5.0/commonlibrary/ets_utils/js_api_module/url/
H A Dnative_module_url.cpp42 std::string tempType = ""; in UrlStructor() local
62 tempType.reserve(tempTypeSize); in UrlStructor()
63 tempType.resize(tempTypeSize); in UrlStructor()
64 if (napi_get_value_string_utf8(env, argv[1], tempType.data(), in UrlStructor()
69 std::string base = tempType; in UrlStructor()
/ohos5.0/base/startup/init/services/init/
H A Dinit_service_manager.c406 unsigned int tempType = 0; in ParseSocketOption() local
422 tempType |= SOCK_CLOEXEC; in ParseSocketOption()
424 tempType |= SOCK_NONBLOCK; in ParseSocketOption()
427 if (tempType != 0) { in ParseSocketOption()
428 sockopt->type |= tempType; in ParseSocketOption()
/ohos5.0/drivers/peripheral/bluetooth/audio/hal/hdi_binder/server/src/
H A Dhdf_audio_server_render.cpp956 uint32_t tempType = 0; in HdiServiceRenderDrainBuffer() local
957 if (!HdfSbufReadUint32(data, &tempType)) { in HdiServiceRenderDrainBuffer()
960 type = (AudioDrainNotifyType)tempType; in HdiServiceRenderDrainBuffer()
/ohos5.0/drivers/peripheral/audio/hal/hdi_binder/server/src/
H A Dhdf_audio_server_render.c1151 uint32_t tempType = 0; in HdiServiceRenderDrainBuffer() local
1152 if (!HdfSbufReadUint32(data, &tempType)) { in HdiServiceRenderDrainBuffer()
1155 type = (enum AudioDrainNotifyType)tempType; in HdiServiceRenderDrainBuffer()
/ohos5.0/base/security/dlp_permission_service/services/dlp_permission/sa/test/unittest/src/
H A Ddlp_permission_service_test.cpp1044 AccountType tempType; variable
1045 encDataJson.at(ENC_ACCOUNT_TYPE).get_to(tempType);
1052 decDataJson[ENC_ACCOUNT_TYPE] = tempType;
/ohos5.0/base/security/huks/frameworks/huks_standard/main/common/src/
H A Dhks_base_check.c1987 uint32_t tempType = 0; in HksCheckAuthAccessTypeByUserAuthType() local
1991 … HasValidAuthAccessType(checker.allowAuthAccessTypes, authAccessType, &tempType) == HKS_SUCCESS) { in HksCheckAuthAccessTypeByUserAuthType()
1992 validAuthAccessType |= tempType; in HksCheckAuthAccessTypeByUserAuthType()