Lines Matching refs:extensionName
1450 const char* extensionName, in ANeuralNetworksDevice_getExtensionSupport() argument
1452 if (device == nullptr || extensionName == nullptr || isExtensionSupported == nullptr) { in ANeuralNetworksDevice_getExtensionSupport()
1460 [extensionName](const auto& supportedExtension) { in ANeuralNetworksDevice_getExtensionSupport()
1461 return supportedExtension.name == extensionName; in ANeuralNetworksDevice_getExtensionSupport()
1468 const char* extensionName, in ANeuralNetworksModel_getExtensionOperandType() argument
1472 if (!model || !extensionName || !type) { in ANeuralNetworksModel_getExtensionOperandType()
1477 return m->getExtensionType(extensionName, operandCodeWithinExtension, type); in ANeuralNetworksModel_getExtensionOperandType()
1481 const char* extensionName, in ANeuralNetworksModel_getExtensionOperationType() argument
1485 if (!model || !extensionName || !type) { in ANeuralNetworksModel_getExtensionOperationType()
1490 return m->getExtensionType(extensionName, operationCodeWithinExtension, type); in ANeuralNetworksModel_getExtensionOperationType()
1800 const char** extensionName) { in SL_ANeuralNetworksDevice_getVendorExtensionName() argument
1801 if (extensionName) *extensionName = nullptr; in SL_ANeuralNetworksDevice_getVendorExtensionName()
1803 if (device == nullptr || extensionName == nullptr) { in SL_ANeuralNetworksDevice_getVendorExtensionName()
1819 *extensionName = extension.name.c_str(); in SL_ANeuralNetworksDevice_getVendorExtensionName()