Searched refs:log (Results 1 – 15 of 15) sorted by relevance
/mbedtls-development/scripts/ |
A D | footprint.sh | 56 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 D | abi_check.py | 57 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 D | check_names.py | 219 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 D | analyze_outcomes.py | 24 def log(fmt, *args, **kwargs): member in Results 28 self.log('Error: ' + fmt, *args, **kwargs) 32 self.log('Warning: ' + fmt, *args, **kwargs)
|
A D | psa_collect_statuses.py | 52 with open(log_file_name) as log: 53 for line in log:
|
A D | all.sh | 577 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 D | psa_crypto_helpers.c | 109 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 D | compat.sh | 148 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 | .gitignore | 9 *.log
|
A D | ssl-opt.sh | 586 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 | .pylintrc | 50 # ``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.yml | 49 - tests/scripts/travis-log-failure.sh
|
A D | CMakeLists.txt | 311 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 D | test-framework.md | 18 …Rationale: make it easy to relate a failure log to the test data. Avoid confusion between cases in…
|
/mbedtls-development/library/ |
A D | aes.c | 372 #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