Home
last modified time | relevance | path

Searched refs:root_dir (Results 1 – 4 of 4) sorted by relevance

/mbedtls-3.7.0/programs/
Ddemo_common.sh20 root_dir="${0%/*}"
26 while ! [ -d "$root_dir/programs" ] || ! [ -d "$root_dir/library" ]; do
32 case $root_dir in
33 .) root_dir="..";;
34 ..|?*/..) root_dir="$root_dir/..";;
35 ?*/*) root_dir="${root_dir%/*}";;
36 /*) root_dir="/";;
37 *) root_dir=".";;
43 programs_dir="$root_dir/programs"
/mbedtls-3.7.0/tests/scripts/
Dtest_psa_compliance.py37 root_dir = os.getcwd()
39 in_tf_psa_crypto_repo = build_tree.looks_like_tf_psa_crypto_root(root_dir)
41 crypto_name = build_tree.crypto_library_filename(root_dir)
42 library_subdir = build_tree.crypto_core_directory(root_dir, relative=True)
76 extra_includes = (';{}/drivers/builtin/include'.format(root_dir)
86 '-DPSA_CRYPTO_LIB_FILENAME={}/{}'.format(root_dir,
88 ('-DPSA_INCLUDE_PATHS={}/include' + extra_includes).format(root_dir)
145 os.chdir(root_dir)
Dgenerate_psa_wrappers.py55 root_dir = build_tree.guess_mbedtls_root()
57 header_path = os.path.join(root_dir, 'include', 'psa', header_name)
/mbedtls-3.7.0/programs/test/
Ddlopen_demo.sh14 library_dir="$root_dir/library"