Home
last modified time | relevance | path

Searched refs:typeName (Results 1 - 9 of 9) sorted by relevance

/drivers/peripheral/audio/hal/hdi_binder/server/src/
H A Dhdf_audio_events.c27 int32_t AudioPnpMsgReadValue(const char *pnpInfo, const char *typeName, uint32_t *value) in AudioPnpMsgReadValue() argument
33 if (pnpInfo == NULL || typeName == NULL || value == NULL) { in AudioPnpMsgReadValue()
34 AUDIO_FUNC_LOGE("pnpInfo || typeName || value is null!"); in AudioPnpMsgReadValue()
37 if (strlen(pnpInfo) > AUDIO_PNP_MSG_LEN_MAX || strlen(typeName) > AUDIO_PNP_MSG_LEN_MAX) { in AudioPnpMsgReadValue()
38 AUDIO_FUNC_LOGE("pnpInfo or typeName length error!"); in AudioPnpMsgReadValue()
47 if (!strncmp(typeNameTepm, typeName, strlen(typeName))) { in AudioPnpMsgReadValue()
48 typeNameTepm += strlen(typeName) + 1; // 1 is "=" in AudioPnpMsgReadValue()
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast.cpp154 AutoPtr<ASTType> AST::FindType(const std::string &typeName, bool lookImports) in FindType() argument
156 if (typeName.empty()) { in FindType()
161 if ((typeName.find('.') == std::string::npos && type.second->GetName() == typeName) || in FindType()
162 type.first == typeName) { in FindType()
167 auto basicTypePair = basicTypes_.find(typeName); in FindType()
178 type = importPair.second->FindType(typeName, false); in FindType()
H A Dast.h134 AutoPtr<ASTType> FindType(const std::string &typeName, bool lookImports = true);
H A Dast_struct_type.cpp27 void ASTStructType::AddMember(const AutoPtr<ASTType> &typeName, std::string name) in AddMember() argument
34 members_.push_back(std::make_tuple(name, typeName)); in AddMember()
36 if (!typeName->IsPod()) { in AddMember()
H A Dast_struct_type.h54 void AddMember(const AutoPtr<ASTType> &typeName, std::string name);
H A Dast_union_type.h52 void AddMember(const AutoPtr<ASTType> &typeName, std::string name);
H A Dast_union_type.cpp15 void ASTUnionType::AddMember(const AutoPtr<ASTType> &typeName, std::string name) in AddMember() argument
22 members_.push_back(std::make_tuple(name, typeName)); in AddMember()
/drivers/peripheral/audio/hal/hdi_binder/server/include/
H A Dhdf_audio_events.h27 int32_t AudioPnpMsgReadValue(const char *pnpInfo, const char *typeName, uint32_t *value);
/drivers/hdf_core/framework/tools/hdi-gen/parser/
H A Dparser.cpp998 std::string typeName = token.value; in ParseUserDefType() local
999 AutoPtr<ASTType> type = ast_->FindType(typeName); in ParseUserDefType()

Completed in 8 milliseconds