Home
last modified time | relevance | path

Searched refs:owner (Results 1 – 5 of 5) sorted by relevance

/hal_rpi_pico-latest/src/common/pico_sync/
Dmutex.c45 mtx->owner = LOCK_INVALID_OWNER_ID; in mutex_init()
54 mtx->owner = LOCK_INVALID_OWNER_ID; in recursive_mutex_init()
72 if (!lock_is_owner_id_valid(mtx->owner)) { in __time_critical_func()
73 mtx->owner = caller; in __time_critical_func()
85 if (mtx->owner == caller || !lock_is_owner_id_valid(mtx->owner)) { in __time_critical_func()
86 mtx->owner = caller; in __time_critical_func()
105 if (!lock_is_owner_id_valid(mtx->owner)) { in __time_critical_func()
106 mtx->owner = lock_get_caller_owner_id(); in __time_critical_func()
109 if (owner_out) *owner_out = (uint32_t) mtx->owner; in __time_critical_func()
119 uint32_t owner; in __time_critical_func() local
[all …]
/hal_rpi_pico-latest/src/common/pico_sync/include/pico/
Dmutex.h49 lock_owner_id_t owner; //! owner id LOCK_INVALID_OWNER_ID for unowned member
62 lock_owner_id_t owner; //! owner id LOCK_INVALID_OWNER_ID for unowned member
306 ….core = { .spin_lock = (spin_lock_t *)1 /* marker for runtime_init */ }, .owner = 0, .enter_count …
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
Dpico_flash_region.bzl12 owner = ctx.label,
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/
DLICENSE.txt12 "Licensor" shall mean the copyright owner or entity authorized by
13 the copyright owner that is granting the License.
51 submitted to Licensor for inclusion in the Work by the copyright owner
53 the copyright owner. For the purposes of this definition, "submitted"
60 designated in writing by the copyright owner as "Not a Contribution."
189 Copyright {yyyy} {name of copyright owner}
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_threadsafe_background.c41 return mutex->owner; in recursive_mutex_owner()