Home
last modified time | relevance | path

Searched full:head (Results 1 – 7 of 7) sorted by relevance

/mcuboot-latest/boot/mynewt/boot_uart/src/
Dboot_uart.c29 #define CONSOLE_HEAD_INC(cr) (((cr)->head + 1) & (sizeof((cr)->buf) - 1))
33 uint16_t head; member
73 bs_uart_rx.head = 0; in boot_uart_close()
87 bs_uart_rx.buf[bs_uart_rx.head] = byte; in bs_rx_char()
88 bs_uart_rx.head = CONSOLE_HEAD_INC(&bs_uart_rx); in bs_rx_char()
112 if (bs_uart_rx.head == bs_uart_rx.tail) { in boot_uart_read()
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dasn1.h360 * When this function returns, \c *cur is the head of a linked
365 * The head of the list (i.e. \c *cur itself) describes the
394 * - Allocate a head node `mbedtls_asn1_sequence *head` with mbedtls_calloc().
397 * call mbedtls_asn1_sequence_free() on `head`.
398 * - Allocate a head node `mbedtls_asn1_sequence *head` in any manner,
399 * for example on the stack. Make sure that `head->next == NULL`.
400 * Pass `head` as the `cur` argument to mbedtls_asn1_get_sequence_of().
402 * call mbedtls_asn1_sequence_free() on `head->cur`,
403 * then free `head` itself in the appropriate manner.
593 * \param head Pointer to the head of the list of named data entries to free.
[all …]
/mcuboot-latest/ci/
Dcheck-signed-off-by.sh19 commits=$(git show -s --format=%h ${1}~..HEAD)
21 parents=(`git log -n 1 --format=%p HEAD`)
23 echo "HEAD is not a merge commit, please supply the oldest SHA"
/mcuboot-latest/ext/mbedtls-asn1/src/
Dasn1parse.c452 void mbedtls_asn1_free_named_data_list( mbedtls_asn1_named_data **head ) in mbedtls_asn1_free_named_data_list() argument
456 while( ( cur = *head ) != NULL ) in mbedtls_asn1_free_named_data_list()
458 *head = cur->next; in mbedtls_asn1_free_named_data_list()
/mcuboot-latest/.github/workflows/
Dzephyr_build.yaml60 echo "MCUBOOT_VERSION=${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV
/mcuboot-latest/docs/
Drelease.md102 git push origin HEAD:refs/heads/main
/mcuboot-latest/ci/fih_test_docker/
Dfi_tester_gdb.sh105 … arm-none-eabi-objdump -d $AXF_FILE --start-address=$SKIP_ADDRESS -S | tail -n +7 | head -n 14 1>&2