Home
last modified time | relevance | path

Searched refs:log (Results 1 – 15 of 15) sorted by relevance

/mbedtls-development/scripts/
A Dfootprint.sh56 log() function
67 log ""
68 log "$NAME ($FILE):"
88 log "$( head -n1 "$OUT" )"
89 log "$( tail -n1 "$OUT" )"
98 log "Footprint of standard configurations (minus net_sockets.c, timing.c, fs_io)"
99 log "for bare-metal ARM Cortex-M3/M4 microcontrollers."
110 log ""
111 log "mbed TLS $MBEDTLS_VERSION$GIT_VERSION"
112 log "$( arm-none-eabi-gcc --version | head -n1 )"
[all …]
A Dabi_check.py57 self.log = None
77 self.log = logging.getLogger()
79 self.log.setLevel(logging.DEBUG)
81 self.log.setLevel(logging.INFO)
82 self.log.addHandler(logging.StreamHandler())
95 self.log.debug(
119 self.log.debug(worktree_output.decode("utf-8"))
137 self.log.debug(update_output.decode("utf-8"))
159 self.log.debug(checkout_output.decode("utf-8"))
174 self.log.debug(make_output.decode("utf-8"))
[all …]
/mbedtls-development/tests/scripts/
A Dcheck_names.py219 def __init__(self, log): argument
220 self.log = log
247 self.log.debug(
292 self.log.debug("Found:")
578 self.log.info("Compiling...")
681 self.log = log
691 self.log.info("=============")
706 self.log.info("=============")
715 self.log.info("PASS")
845 log = logging.getLogger()
[all …]
A Danalyze_outcomes.py24 def log(fmt, *args, **kwargs): member in Results
28 self.log('Error: ' + fmt, *args, **kwargs)
32 self.log('Warning: ' + fmt, *args, **kwargs)
A Dpsa_collect_statuses.py52 with open(log_file_name) as log:
53 for line in log:
A Dall.sh577 failure_summary_file=$PWD/all-sh-failures-$$.log
1301 grep -q '^0:psa_crypto_init:' tests/statuses.log
1302 rm -f tests/statuses.log
2761 …ex "$gdb_disable_aslr" -x tests/scripts/test_zeroize.gdb -nw -batch -nx 2>&1 | tee test_zeroize.log
2762 grep "The buffer was correctly zeroized" test_zeroize.log
2763 not grep -i "error" test_zeroize.log
2764 rm -f test_zeroize.log
/mbedtls-development/tests/src/
A Dpsa_crypto_helpers.c109 static FILE *log; in mbedtls_test_record_status() local
110 if( log == NULL ) in mbedtls_test_record_status()
111 log = fopen( STATUS_LOG_FILE_NAME, "a" ); in mbedtls_test_record_status()
112 fprintf( log, "%d:%s:%s:%d:%s\n", (int) status, func, file, line, expr ); in mbedtls_test_record_status()
/mbedtls-development/tests/
A Dcompat.sh148 log() { function
814 log "$SERVER_CMD"
887 log "$CLIENT_CMD"
912 log "$CLIENT_CMD"
937 log "$CLIENT_CMD"
980 cp $SRV_OUT c-srv-${TESTS}.log
981 cp $CLI_OUT c-cli-${TESTS}.log
986 cat c-srv-${TESTS}.log
989 cat c-cli-${TESTS}.log
A D.gitignore9 *.log
A Dssl-opt.sh586 mv $SRV_OUT o-srv-${TESTS}.log
587 mv $CLI_OUT o-cli-${TESTS}.log
589 mv $PXY_OUT o-pxy-${TESTS}.log
595 cat o-srv-${TESTS}.log
598 cat o-cli-${TESTS}.log
602 cat o-pxy-${TESTS}.log
1180 mv $SRV_OUT o-srv-${TESTS}.log
1181 mv $CLI_OUT o-cli-${TESTS}.log
1183 mv $PXY_OUT o-pxy-${TESTS}.log
/mbedtls-development/
A D.pylintrc50 # ``log.info('...'.format(...))``. It insists on ``log.info('...', ...)``.
52 # many messages that use formatting and are below the log level).
55 # and complain about something like ``log.info('{}', foo)`` with
A D.travis.yml49 - tests/scripts/travis-log-failure.sh
A DCMakeLists.txt311 COMMAND ctest -O memcheck.log -D ExperimentalMemCheck
312 COMMAND tail -n1 memcheck.log | grep 'Memory checking results:' > /dev/null
313 COMMAND rm -f memcheck.log
/mbedtls-development/docs/architecture/testing/
A Dtest-framework.md18 …Rationale: make it easy to relate a failure log to the test data. Avoid confusion between cases in…
/mbedtls-development/library/
A Daes.c372 #define MUL(x,y) ( ( (x) && (y) ) ? pow[(log[(x)]+log[(y)]) % 255] : 0 )
380 int log[256]; in aes_gen_tables() local
388 log[x] = i; in aes_gen_tables()
409 x = pow[255 - log[i]]; in aes_gen_tables()

Completed in 26 milliseconds