Searched refs:typeName (Results 1 - 9 of 9) sorted by relevance
/drivers/peripheral/audio/hal/hdi_binder/server/src/ |
H A D | hdf_audio_events.c | 27 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 D | ast.cpp | 154 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 D | ast.h | 134 AutoPtr<ASTType> FindType(const std::string &typeName, bool lookImports = true);
|
H A D | ast_struct_type.cpp | 27 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 D | ast_struct_type.h | 54 void AddMember(const AutoPtr<ASTType> &typeName, std::string name);
|
H A D | ast_union_type.h | 52 void AddMember(const AutoPtr<ASTType> &typeName, std::string name);
|
H A D | ast_union_type.cpp | 15 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 D | hdf_audio_events.h | 27 int32_t AudioPnpMsgReadValue(const char *pnpInfo, const char *typeName, uint32_t *value);
|
/drivers/hdf_core/framework/tools/hdi-gen/parser/ |
H A D | parser.cpp | 998 std::string typeName = token.value;
in ParseUserDefType() local 999 AutoPtr<ASTType> type = ast_->FindType(typeName);
in ParseUserDefType()
|
Completed in 8 milliseconds