Adapt check_names.py

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron 2024-07-02 08:54:06 +02:00
parent 4cc77a1681
commit 0070d0590f

View File

@ -240,8 +240,8 @@ class CodeParser():
"include/psa/*.h", "include/psa/*.h",
"tf-psa-crypto/include/psa/*.h", "tf-psa-crypto/include/psa/*.h",
"tf-psa-crypto/drivers/builtin/include/mbedtls/*.h", "tf-psa-crypto/drivers/builtin/include/mbedtls/*.h",
"3rdparty/everest/include/everest/everest.h", "tf-psa-crypto/drivers/everest/include/everest/everest.h",
"3rdparty/everest/include/everest/x25519.h" "tf-psa-crypto/drivers/everest/include/everest/x25519.h"
]) ])
all_macros["internal"] = self.parse_macros([ all_macros["internal"] = self.parse_macros([
"library/*.h", "library/*.h",
@ -265,8 +265,8 @@ class CodeParser():
"library/*.c", "library/*.c",
"tf-psa-crypto/core/*.c", "tf-psa-crypto/core/*.c",
"tf-psa-crypto/drivers/builtin/src/*.c", "tf-psa-crypto/drivers/builtin/src/*.c",
"3rdparty/everest/include/everest/everest.h", "tf-psa-crypto/drivers/everest/include/everest/everest.h",
"3rdparty/everest/include/everest/x25519.h" "tf-psa-crypto/drivers/everest/include/everest/x25519.h"
]) ])
identifiers, excluded_identifiers = self.parse_identifiers([ identifiers, excluded_identifiers = self.parse_identifiers([
"include/mbedtls/*.h", "include/mbedtls/*.h",
@ -276,9 +276,9 @@ class CodeParser():
"library/*.h", "library/*.h",
"tf-psa-crypto/core/*.h", "tf-psa-crypto/core/*.h",
"tf-psa-crypto/drivers/builtin/src/*.h", "tf-psa-crypto/drivers/builtin/src/*.h",
"3rdparty/everest/include/everest/everest.h", "tf-psa-crypto/drivers/everest/include/everest/everest.h",
"3rdparty/everest/include/everest/x25519.h" "tf-psa-crypto/drivers/everest/include/everest/x25519.h"
], ["3rdparty/p256-m/p256-m/p256-m.h"]) ], ["tf-psa-crypto/drivers/p256-m/p256-m/p256-m.h"])
mbed_psa_words = self.parse_mbed_psa_words([ mbed_psa_words = self.parse_mbed_psa_words([
"include/mbedtls/*.h", "include/mbedtls/*.h",
"include/psa/*.h", "include/psa/*.h",
@ -287,13 +287,13 @@ class CodeParser():
"library/*.h", "library/*.h",
"tf-psa-crypto/core/*.h", "tf-psa-crypto/core/*.h",
"tf-psa-crypto/drivers/builtin/src/*.h", "tf-psa-crypto/drivers/builtin/src/*.h",
"3rdparty/everest/include/everest/everest.h", "tf-psa-crypto/drivers/everest/include/everest/everest.h",
"3rdparty/everest/include/everest/x25519.h", "tf-psa-crypto/drivers/everest/include/everest/x25519.h",
"library/*.c", "library/*.c",
"tf-psa-crypto/core/*.c", "tf-psa-crypto/core/*.c",
"tf-psa-crypto/drivers/builtin/src/*.c", "tf-psa-crypto/drivers/builtin/src/*.c",
"3rdparty/everest/library/everest.c", "tf-psa-crypto/drivers/everest/library/everest.c",
"3rdparty/everest/library/x25519.c" "tf-psa-crypto/drivers/everest/library/x25519.c"
], ["tf-psa-crypto/core/psa_crypto_driver_wrappers.h"]) ], ["tf-psa-crypto/core/psa_crypto_driver_wrappers.h"])
symbols = self.parse_symbols() symbols = self.parse_symbols()