Home
last modified time | relevance | path

Searched full:owner (Results 1 – 25 of 87) sorted by relevance

1234

/Zephyr-Core-3.4.0/kernel/
Dmutex.c43 * is protecting things like owner thread priorities which aren't
51 mutex->owner = NULL; in z_impl_k_mutex_init()
83 if (mutex->owner->base.prio != new_prio) { in adjust_owner_prio()
86 mutex->owner, z_is_thread_ready(mutex->owner) ? in adjust_owner_prio()
88 new_prio, mutex->owner->base.prio); in adjust_owner_prio()
90 return z_set_prio(mutex->owner, new_prio); in adjust_owner_prio()
107 if (likely((mutex->lock_count == 0U) || (mutex->owner == _current))) { in z_impl_k_mutex_lock()
114 mutex->owner = _current; in z_impl_k_mutex_lock()
138 mutex->owner->base.prio); in z_impl_k_mutex_lock()
142 if (z_is_prio_higher(new_prio, mutex->owner->base.prio)) { in z_impl_k_mutex_lock()
[all …]
/Zephyr-Core-3.4.0/arch/riscv/core/
Dfpu.c84 /* become new owner */ in z_riscv_fpu_load()
108 struct k_thread *owner = atomic_ptr_get(&_current_cpu->arch.fpu_owner); in z_riscv_flush_local_fpu() local
110 if (owner != NULL) { in z_riscv_flush_local_fpu()
116 /* save current owner's content */ in z_riscv_flush_local_fpu()
117 z_riscv_fpu_save(&owner->arch.saved_fp_context); in z_riscv_flush_local_fpu()
121 owner->arch.fpu_recently_used = dirty; in z_riscv_flush_local_fpu()
128 DBG("disable", owner); in z_riscv_flush_local_fpu()
139 atomic_ptr_val_t owner; in flush_owned_fpu() local
141 /* search all CPUs for the owner we want */ in flush_owned_fpu()
145 owner = atomic_ptr_get(&_kernel.cpus[i].arch.fpu_owner); in flush_owned_fpu()
[all …]
/Zephyr-Core-3.4.0/arch/arm64/core/
Dfpu.c71 struct k_thread *owner = atomic_ptr_get(&_current_cpu->arch.fpu_owner); in z_arm64_flush_local_fpu() local
73 if (owner != NULL) { in z_arm64_flush_local_fpu()
80 /* save current owner's content */ in z_arm64_flush_local_fpu()
81 z_arm64_fpu_save(&owner->arch.saved_fp_context); in z_arm64_flush_local_fpu()
86 DBG("disable", owner); in z_arm64_flush_local_fpu()
101 /* search all CPUs for the owner we want */ in flush_owned_fpu()
157 * Rather than flushing the FPU context to its owner and enabling access
237 /* save current owner's content if any */ in z_arm64_fpu_trap()
238 struct k_thread *owner = atomic_ptr_get(&_current_cpu->arch.fpu_owner); in z_arm64_fpu_trap() local
240 if (owner) { in z_arm64_fpu_trap()
[all …]
/Zephyr-Core-3.4.0/scripts/west_commands/zspdx/
Ddatatypes.py120 # (e.g., the "owner" or the "other" element) is a File, a target Package,
121 # a Package's ID (as other only, and only where owner type is DOCUMENT),
122 # or the SPDX document itself (as owner only).
137 # for the "owner" element (e.g., the left side of the Relationship),
141 # owner file absolute path (if ownerType is FILENAME)
144 # owner target name (if ownerType is TARGETNAME)
147 # owner SPDX Document (if ownerType is DOCUMENT)
/Zephyr-Core-3.4.0/.github/workflows/
Derrno.yml18 - name: Apply container owner mismatch workaround
20 # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
Dfootprint.yml22 - name: Apply container owner mismatch workaround
24 # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
Dfootprint-tracking.yml36 - name: Apply container owner mismatch workaround
38 # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
Dassigner.yml35 -o ${{ github.event.repository.owner.login }} \
Dbackport_issue_check.yml28 -o ${{ github.event.repository.owner.login }} \
Dbsim-tests.yaml44 - name: Apply container owner mismatch workaround
46 # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
Dcodecov.yaml27 - name: Apply container owner mismatch workaround
29 # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
/Zephyr-Core-3.4.0/tests/kernel/spinlock/src/
Dmain.c61 /* Take the lock, check last owner and release if it was us. in bounce_once()
83 /* Mark us as the owner, spin for a while validating that we in bounce_once()
84 * never see another owner write to the protected data. in bounce_once()
/Zephyr-Core-3.4.0/include/zephyr/posix/sys/
Dstat.h169 #define S_IREAD 0000400 /* read permission, owner */
170 #define S_IWRITE 0000200 /* write permission, owner */
171 #define S_IEXEC 0000100 /* execute/search permission, owner */
200 #define S_IRUSR 0000400 /* read permission, owner */
201 #define S_IWUSR 0000200 /* write permission, owner */
202 #define S_IXUSR 0000100 /* execute/search permission, owner */
/Zephyr-Core-3.4.0/
DLICENSE12 "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}
/Zephyr-Core-3.4.0/drivers/usb/uhc/
Duhc_common.c83 void *const owner) in uhc_xfer_alloc() argument
94 LOG_DBG("Allocate xfer, ep 0x%02x attrib 0x%02x owner %p", in uhc_xfer_alloc()
95 ep, attrib, owner); in uhc_xfer_alloc()
110 xfer->owner = owner; in uhc_xfer_alloc()
/Zephyr-Core-3.4.0/drivers/spi/
Dspi_context.h30 const struct spi_config *owner; member
97 (ctx->owner == spi_cfg)) { in spi_context_lock()
102 ctx->owner = spi_cfg; in spi_context_lock()
121 ctx->owner = NULL; in spi_context_release()
126 ctx->owner = NULL; in spi_context_release()
205 ctx->owner = NULL; in spi_context_complete()
266 ctx->owner = NULL; in spi_context_unlock_unconditionally()
/Zephyr-Core-3.4.0/doc/project/
Dproposals.rst21 implementation proposal and an owner. Features must go through an RFC process
40 If not though, an owner will be assigned after evaluation by the TSC.
59 by any project member or the community. You should contact an assigned owner if
Drelease_process.rst35 - The release owner, with test teams and any other needed input, determines if the
37 - If it is a go for a release, the release owner lays a tag release vN at the
59 the release owner will declare that the development phase is over and releases the first
79 The mainline release owner releases new -rc drops once or twice a week; a normal
119 - Owner
122 …- Finalize dates for release, Assign release owner and agree on project wide goals for this releas…
130 - Release owner announces feature freeze and timeline for release.
Ddev_env_and_tools.rst41 code-owner review. Additionally, some changes might require further discussions
81 Trivial changes are those that appear obvious enough and do not require maintainer or code-owner
96 component will need to be reviewed by the code owner or the designated subsystem
98 than the owner the pull request needs to be assigned to the code owner who will
170 dismissed by the assignee or an owner of the repository. Reviews will be
/Zephyr-Core-3.4.0/tests/subsys/portability/cmsis_rtos_v2/src/
Dmutex.c75 /* Try figuring out the owner for a Mutex which has not been in ZTEST()
85 zassert_equal(id, osThreadGetId(), "Current thread is not the owner!"); in ZTEST()
128 "Unexpectedly, current thread is the mutex owner!"); in tThread_entry_lock_timeout()
/Zephyr-Core-3.4.0/subsys/usb/device_next/
Dusbd_class.c99 if (bi->owner == c_nd) { in xfer_owner_exist()
130 return usbd_class_request(bi->owner, buf, err); in usbd_class_handle_xfer()
136 return usbd_class_request(bi->owner, buf, err); in usbd_class_handle_xfer()
143 return usbd_class_request(bi->owner, buf, err); in usbd_class_handle_xfer()
/Zephyr-Core-3.4.0/include/zephyr/posix/
Dpthread.h152 * PTHREAD_MUTEX_NORMAL: Owner of mutex cannot relock it. Attempting
154 * PTHREAD_MUTEX_RECURSIVE: Owner can relock the mutex.
155 * PTHREAD_MUTEX_ERRORCHECK: If owner attempts to relock the mutex, an
168 * PTHREAD_PRIO_INHERIT: Owner's priority is boosted to the priority of
170 * PTHREAD_PRIO_PROTECT: Mutex has a priority ceiling. The owner's
/Zephyr-Core-3.4.0/doc/templates/
Dboard.tmpl16 Board Name (Credit: <owner>)
/Zephyr-Core-3.4.0/include/zephyr/drivers/usb/
Duhc.h61 /** Transfer owner */
62 void *owner; member
333 * @param[in] owner Transfer owner
343 void *const owner);
/Zephyr-Core-3.4.0/tests/kernel/mutex/sys_mutex/src/
Dmain.c109 /* Wait and boost owner priority to 5 */ in thread_05()
163 * Wait and boost owner priority to 7. While waiting, another thread of in thread_07()
191 /* Wait and boost owner priority to 8 */ in thread_08()
223 /* Wait and boost owner priority to 9 */ in thread_09()
439 zassert_true(rv == -EPERM, "unlocked a mutex that wasn't owner"); in ZTEST()

1234