Home
last modified time | relevance | path

Searched refs:locked (Results 1 – 25 of 80) sorted by relevance

1234

/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dremotedata.py19 self.locked = []
34 def store(self, d, locked=False): argument
42 if locked:
43 self.locked.append(idx)
47 def check_store(self, d, locked=False): argument
57 idx = self.store(d, locked)
62 if idx in self.locked:
/openbmc/qemu/tests/qemu-iotests/
H A D172.out67 Removable device: not locked, tray closed
72 Removable device: not locked, tray closed
119 Removable device: not locked, tray closed
124 Removable device: not locked, tray closed
128 Removable device: not locked, tray closed
175 Removable device: not locked, tray closed
180 Removable device: not locked, tray closed
185 Removable device: not locked, tray closed
262 Removable device: not locked, tray closed
267 Removable device: not locked, tra
[all...]
H A D186.out11 Removable device: not locked, tray closed
19 Removable device: not locked, tray closed
27 Removable device: not locked, tray closed
35 Removable device: not locked, tray closed
43 Removable device: not locked, tray closed
51 Removable device: not locked, tray closed
110 Removable device: not locked, tray closed
119 Removable device: not locked, tray closed
128 Removable device: not locked, tray closed
137 Removable device: not locked, tray closed
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-coroutine.c197 static bool locked; variable
204 assert(!locked); in mutex_fn()
205 locked = true; in mutex_fn()
207 locked = false; in mutex_fn()
216 assert(!locked); in lockable_fn()
217 locked = true; in lockable_fn()
219 locked = false; in lockable_fn()
231 g_assert(locked); in do_test_co_mutex()
239 g_assert(locked); in do_test_co_mutex()
243 g_assert(!locked); in do_test_co_mutex()
H A Dtest-aio-multithread.c293 int next, locked; member
304 nodes[id].locked = 1; in mcs_mutex_lock()
308 while (qatomic_read(&nodes[id].locked) == 1) { in mcs_mutex_lock()
309 qemu_futex_wait(&nodes[id].locked, 1); in mcs_mutex_lock()
332 nodes[next].locked = 0; in mcs_mutex_unlock()
333 qemu_futex_wake_single(&nodes[next].locked); in mcs_mutex_unlock()
/openbmc/skeleton/flashbios/
H A Dflash_bios_obj.c73 gboolean locked = shared_resource_get_lock(lock); in on_lock() local
74 if(locked) in on_lock()
94 gboolean locked = shared_resource_get_lock(lock); in on_is_locked() local
96 shared_resource_complete_is_locked(lock,invocation,locked,name); in on_is_locked()
120 gboolean locked = shared_resource_get_lock(lock); in on_update_via_tftp() local
122 if(locked) in on_update_via_tftp()
185 gboolean locked = shared_resource_get_lock(lock); in on_update() local
188 if(locked) in on_update()
/openbmc/openbmc/poky/meta/recipes-devtools/python/
H A Dpython3-pdm-build-locked_0.3.5.bb1 SUMMARY = "pdm plugin to publish locked dependencies as optional-dependencies"
2 HOMEPAGE = "https://github.com/pdm-project/pdm-build-locked"
H A Dpython3-pdm_2.24.1.bb13 python3-pdm-build-locked-native \
/openbmc/openbmc/poky/meta/recipes-core/meta/
H A Dmeta-extsdk-toolchain.bb13 LOCKED_SIGS_INDIR = "${WORKDIR}/locked-sigs"
18 do_locked_sigs[sstate-outputdirs] = "${STAGING_DIR}/${PACKAGE_ARCH}/${PN}/locked-sigs"
27 sigfile = os.path.join(outdir, 'locked-sigs-extsdk-toolchain.inc')
H A Dmeta-world-pkgdata.bb26 sigfile = os.path.join(outdir, 'locked-sigs-pkgdata.inc')
/openbmc/sdbusplus/src/async/
H A Dmutex.cpp13 auto wasLocked = std::exchange(locked, false); in unlock()
41 auto wasLocked = std::exchange(mutexInstance.locked, true); in start()
/openbmc/phosphor-webui/app/access-control/controllers/
H A Duser-controller.js142 originalUsername, username, password, role, enabled, locked) { argument
146 originalUsername, username, password, role, enabled, locked)
345 this.user.locked = newUser ? null : user.Locked;
378 const locked = (form.lock && form.lock.$dirty) ?
385 locked);
/openbmc/qemu/util/
H A Dqemu-coroutine-lock.c251 waiters = qatomic_cmpxchg(&mutex->locked, 0, 1); in qemu_co_mutex_lock()
257 if (qatomic_read(&mutex->locked) == 0) { in qemu_co_mutex_lock()
262 waiters = qatomic_fetch_inc(&mutex->locked); in qemu_co_mutex_lock()
282 assert(mutex->locked); in qemu_co_mutex_unlock()
289 if (qatomic_fetch_dec(&mutex->locked) == 1) { in qemu_co_mutex_unlock()
H A Drcu.c363 bool locked = bql_locked(); in drain_call_rcu()
368 if (locked) { in drain_call_rcu()
390 if (locked) { in rcu_add_force_rcu_notifier()
340 bool locked = bql_locked(); drain_call_rcu() local
/openbmc/qemu/block/
H A Dfilter-compress.c129 compress_co_lock_medium(BlockDriverState *bs, bool locked) in compress_co_lock_medium() argument
131 bdrv_co_lock_medium(bs->file->bs, locked); in compress_co_lock_medium()
H A Dqapi-system.c81 bool locked; in do_open_tray() local
102 locked = blk_dev_is_medium_locked(blk); in do_open_tray()
103 if (locked) { in do_open_tray()
107 if (!locked || force) { in do_open_tray()
111 if (locked && !force) { in do_open_tray()
H A Dcopy-on-read.c228 cor_co_lock_medium(BlockDriverState *bs, bool locked) in cor_co_lock_medium() argument
230 bdrv_co_lock_medium(bs->file->bs, locked); in cor_co_lock_medium()
/openbmc/qemu/include/qemu/
H A Dcoroutine.h53 unsigned locked; member
84 assert(qatomic_read(&mutex->locked) && in qemu_co_mutex_assert_locked()
/openbmc/qemu/include/hw/virtio/
H A Dvirtio-nsm.h26 bool locked; member
/openbmc/openbmc/meta-asrock/meta-x570d4u/recipes-x86/chassis/
H A Dx86-power-control_%.bbappend9 # passthroughed in hardware can not be used once the SCU is being locked.
/openbmc/webui-vue/src/store/modules/SecurityAndAccess/
H A DUserManagementStore.js143 { originalUsername, username, password, privilege, status, locked },
150 if (locked !== undefined) data.Locked = locked;
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dpopulate_sdk_ext.bbclass363 # Warn if the sigs in the locked-signature file don't match
405 f.write('require conf/locked-sigs.inc\n')
464 # Filter the locked signatures file to just the sstate tasks we are interested in
466 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
467 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
468 #nativesdk-only sigfile to merge into locked-sigs.inc
470 nativesigfile = d.getVar('WORKDIR') + '/locked-sigs_nativesdk.inc'
471 nativesigfile_pruned = d.getVar('WORKDIR') + '/locked-sigs_nativesdk_pruned.inc'
508 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base.inc'
509 lockedsigs_copy = d.getVar('WORKDIR') + '/locked-sigs-copy.inc'
[all …]
/openbmc/qemu/hw/virtio/
H A Dvirtio-nsm.c240 if (vnsm->pcrs[i].locked) { in handle_describe_nsm()
411 if (!qemu_cbor_add_bool_to_map(nested_map, "lock", pcr->locked)) { in handle_describe_pcr()
585 if (pcr->locked) { in handle_extend_pcr()
735 if (pcr->locked) { in handle_lock_pcr()
742 pcr->locked = true; in handle_lock_pcr()
868 vnsm->pcrs[i].locked = true; in handle_lock_pcrs()
1195 if (vnsm->pcrs[i].locked) { in add_payload_to_cose()
1642 vnsm->pcrs[ind].locked = true; in lock_pcr()
1679 VMSTATE_BOOL(locked, struct PCRInfo),
/openbmc/docs/designs/
H A Destoraged.md26 is still locked.
39 to the device while locked. Some documentation on this feature can be found in
113 prevent all read or write accesses to the device while locked. So, the "Locked"
114 property will mean both locked at the hardware level and locked at the
H A Dredfish-resource-supplement-for-pfr.md18 to represent the PFR provisioned and locked states.
22 or not as well as provisioning is locked or not. This also covers the Redfish
76 provisioned but not locked. So re-provisioning is allowed in this state.
79 and locked. So re-provisioning is not allowed in this state.

1234