Home
last modified time | relevance | path

Searched full:stale (Results 1 – 25 of 53) sorted by relevance

123

/Zephyr-latest/.github/workflows/
Dstale_issue.yml1 name: "Close stale pull requests/issues"
7 stale:
8 name: Find Stale issues and PRs
12 - uses: actions/stale@v9
14 stale-pr-message: 'This pull request has been marked as stale because it has been open (more
15 than) 60 days with no activity. Remove the stale label or add a comment saying that you
18 stale-issue-message: 'This issue has been marked as stale because it has been open (more
19 than) 60 days with no activity. Remove the stale label or add a comment saying that you
22 days-before-stale: 60
24 stale-issue-label: 'Stale'
[all …]
Dstale-workflow-queue-cleanup.yml1 name: Stale Workflow Queue Cleanup
11 group: stale-workflow-queue-cleanup
20 - name: Delete stale queued workflow runs
/Zephyr-latest/doc/project/
Dmodifying_contributions.rst22 * integrate useful content which is part of a stale pull request, or
31 * drive stale pull requests to completion so they can be merged
53 as *stale*. Read about how to identify pull requests as stale in
Ddev_env_and_tools.rst125 - An assignee is responsible for dismissing stale reviews and seeking reviews
185 Closing Stale Issues and Pull Requests
405 * - :guilabel:`Stale`
Dproject_roles.rst170 * Right to dismiss stale and unrelated reviews or reviews not following
217 * Right to close any stale changes after <N> months of no activity
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/
Dcntr.c154 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in cntr_cmp_set() local
172 /* Set a stale value in capture value */ in cntr_cmp_set()
173 stale = cntr_l - 1U; in cntr_cmp_set()
174 NRF_GRTC->CC[cmp].CCL = stale; in cntr_cmp_set()
182 } while (cntr_l == stale); in cntr_cmp_set()
/Zephyr-latest/samples/sensor/ccs811/
DREADME.rst56 Timed fetch got stale data
57 Timed fetch got stale data
58 Timed fetch got stale data
/Zephyr-latest/samples/bluetooth/bap_unicast_server/
Doverlay-bt_ll_sw_split.conf12 # Use the below if the sample is sending stale packet sequence number
/Zephyr-latest/samples/bluetooth/bap_unicast_client/
Doverlay-bt_ll_sw_split.conf15 # Use the below if the sample is sending stale packet sequence number
/Zephyr-latest/samples/bluetooth/iso_central/
Doverlay-bt_ll_sw_split.conf32 # Use the below if the sample is sending stale packet sequence number
/Zephyr-latest/samples/sensor/ccs811/src/
Dmain.c69 printk("STALE DATA\n"); in do_fetch()
89 printk("Triggered fetch got stale data\n"); in trigger_handler()
105 printk("Timed fetch got stale data\n"); in do_main()
/Zephyr-latest/dts/bindings/ethernet/
Dethernet-controller.yaml17 Note that using this choice and rebooting a board may leave stale
/Zephyr-latest/scripts/ci/
Dtwister_ignore.txt23 .github/workflows/stale-workflow-queue-cleanup.yml
/Zephyr-latest/arch/xtensa/include/
Dkernel_arch_func.h81 * modified there, and our cache may be stale. in arch_cohere_stacks()
87 * uninitialized data error) so our stale cache will be in arch_cohere_stacks()
/Zephyr-latest/drivers/dma/
Ddma_nxp_sof_host_dma.c108 * to local memory. In this case, the data cache holds stale in sof_host_dma_reload()
123 * the host doesn't read any stale data. in sof_host_dma_reload()
140 * memory chunk, the RAM will contain stale data. in sof_host_dma_reload()
/Zephyr-latest/arch/nios2/core/
Dcache.c33 /* Get rid of any stale instructions in the pipeline */ in z_nios2_icache_flush_all()
/Zephyr-latest/doc/hardware/cache/
Dguide.rst30 of this, data moved into and out of memory by DMA engines will be stale in the
152 cache lines in the specified region as stale, ensuring that the cache line will
/Zephyr-latest/drivers/sensor/renesas/hs300x/
Dhs300x.c43 LOG_ERR("Stale data"); in hs300x_read_sample()
/Zephyr-latest/subsys/net/ip/
Dipv6_nbr.c60 /* Global stale counter, whenever ipv6 neighbor enters into
61 * stale state, stale counter is incremented by one.
63 * is full, oldest (oldest stale counter) neighbor in stale
120 return "stale"; in net_ipv6_nbr_state2str()
170 /* Global stale counter reached UINT32_MAX, reset it and in ipv6_nbr_set_state()
171 * respective neighbors stale counter too. in ipv6_nbr_set_state()
582 /* Check if there are any stale neighbors, delete the oldest in add_nbr()
967 /* Start the NUD if we are in STALE state. in net_ipv6_prepare_for_send()
1559 NET_DBG("nbr %p moving %s state to STALE (%d)", in ipv6_nd_reachable_timeout()
1566 NET_DBG("nbr %p removing stale address %s", in ipv6_nd_reachable_timeout()
Dipv6.h115 /** Stale counter used to removed oldest nbr in STALE state,
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio.c1418 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in radio_tmr_start() local
1436 /* Set a stale value in capture value */ in radio_tmr_start()
1437 stale = cntr_l - 1U; in radio_tmr_start()
1438 NRF_GRTC->CC[HAL_CNTR_GRTC_CC_IDX_RADIO].CCL = stale; in radio_tmr_start()
1447 } while (cntr_l == stale); in radio_tmr_start()
1542 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in radio_tmr_start_tick() local
1560 /* Set a stale value in capture value */ in radio_tmr_start_tick()
1561 stale = cntr_l - 1U; in radio_tmr_start_tick()
1562 NRF_GRTC->CC[HAL_CNTR_GRTC_CC_IDX_RADIO].CCL = stale; in radio_tmr_start_tick()
1571 } while (cntr_l == stale); in radio_tmr_start_tick()
/Zephyr-latest/drivers/wifi/nrf_wifi/
DKconfig.nrfwifi533 int "RSSI stale timeout in milliseconds"
536 RSSI stale timeout is the period after which the driver queries
542 If data is not active or after the stale timeout duration,
/Zephyr-latest/include/zephyr/net/
Dcoap_client.h155 * which has gone stale for some reason.
/Zephyr-latest/doc/kernel/services/data_passing/
Dpipes.rst190 /* Pipe buffer contains stale data. Flush it. */
/Zephyr-latest/drivers/mm/
Dmm_drv_intel_adsp_tlb.c134 * avoid stale data. in sys_mm_drv_map_page()

123