/openbmc/phosphor-user-manager/ |
H A D | shadowlock.hpp | 26 class Lock class 29 Lock(const Lock&) = delete; 30 Lock& operator=(const Lock&) = delete; 31 Lock(Lock&&) = delete; 32 Lock& operator=(Lock&&) = delete; 35 Lock() in Lock() function in phosphor::user::shadow::Lock 43 ~Lock() in ~Lock()
|
/openbmc/phosphor-host-ipmid/user_channel/ |
H A D | shadowlock.hpp | 22 class Lock class 25 Lock(const Lock&) = delete; 26 Lock& operator=(const Lock&) = delete; 27 Lock(Lock&&) = delete; 28 Lock& operator=(Lock&&) = delete; 31 Lock() in Lock() function in phosphor::user::shadow::Lock 39 ~Lock() in ~Lock()
|
/openbmc/openbmc-test-automation/openpower/ext_interfaces/ |
H A D | test_lock_management.robot | 28 Acquire Read Write Lock 31 [Template] Acquire Lock On Resource 42 Acquire Read Lock On Read Lock 45 [Template] Acquire Lock On Another Lock 51 Fail To Acquire Lock On Another Lock 54 [Template] Verify Acquire Lock Fails On Another Lock 62 Acquire Lock After Reboot 65 [Template] Verify Acquire Lock After Reboot 76 Acquire And Release Lock In Loop 79 [Template] Verify Acquire And Release Lock In Loop [all …]
|
/openbmc/linux/arch/mips/cavium-octeon/ |
H A D | Kconfig | 31 bool "Lock often used kernel code in the L2" 37 bool "Lock the TLB handler in L2" 41 Lock the low level TLB fast path into L2. 44 bool "Lock the exception handler in L2" 48 Lock the low level exception handler into L2. 51 bool "Lock the interrupt handler in L2" 55 Lock the low level interrupt handler into L2. 58 bool "Lock the 2nd level interrupt handler in L2" 62 Lock the 2nd level interrupt handler in L2. 65 bool "Lock memcpy() in L2" [all …]
|
/openbmc/linux/rust/kernel/sync/ |
H A D | lock.rs | 78 pub struct Lock<T: ?Sized, B: Backend> { struct 94 unsafe impl<T: ?Sized + Send, B: Backend> Send for Lock<T, B> {} implementation 98 unsafe impl<T: ?Sized + Send, B: Backend> Sync for Lock<T, B> {} implementation 100 impl<T, B: Backend> Lock<T, B> { implementation 116 impl<T: ?Sized, B: Backend> Lock<T, B> { implementation 134 pub(crate) lock: &'a Lock<T, B>, 184 pub(crate) unsafe fn new(lock: &'a Lock<T, B>, state: B::GuardState) -> Self { in new()
|
H A D | locked_by.rs | 5 use super::{lock::Backend, lock::Lock}; 99 pub fn new<B: Backend>(owner: &Lock<U, B>, data: T) -> Self { in new() 101 size_of::<Lock<U, B>>() > 0, in new()
|
/openbmc/linux/Documentation/arch/s390/ |
H A D | vfio-ap-locking.rst | 16 The Matrix Devices Lock (drivers/s390/crypto/vfio_ap_private.h) 28 The Matrix Devices Lock (matrix_dev->mdevs_lock) is implemented as a global 35 The KVM Lock (include/linux/kvm_host.h) 46 The KVM Lock (kvm->lock) controls access to the state data for a KVM guest. This 54 The Guests Lock (drivers/s390/crypto/vfio_ap_private.h) 66 The Guests Lock (matrix_dev->guests_lock) controls access to the 88 It is not necessary to take the Guests Lock to access the KVM pointer if the 90 however, in this case, the Matrix Devices Lock (matrix_dev->mdevs_lock) must be 92 protection of the Matrix Devices Lock. A case in point is the function that 97 The PQAP Hook Lock (arch/s390/include/asm/kvm_host.h) [all …]
|
/openbmc/telemetry/src/utils/ |
H A D | unique_call.hpp | 12 struct Lock struct in utils::UniqueCall 20 auto l = std::make_shared<Lock>(); in operator ()() 27 std::weak_ptr<Lock> lock;
|
/openbmc/linux/Documentation/sound/cards/ |
H A D | img-spdif-in.rst | 25 rates. The active rate can be obtained by reading the 'SPDIF In Lock Frequency' 36 * name='SPDIF In Lock Frequency',index=0 41 * name='SPDIF In Lock TRK',index=0 47 * name='SPDIF In Lock Acquire Threshold',index=0 51 * name='SPDIF In Lock Release Threshold',index=0
|
/openbmc/linux/fs/ocfs2/ |
H A D | stack_o2cb.c | 33 # error Lock modes do not match 36 # error Lock modes do not match 39 # error Lock modes do not match 42 # error Lock modes do not match 45 # error Lock modes do not match 48 # error Lock modes do not match 51 # error Lock modes do not match
|
/openbmc/linux/tools/memory-model/ |
H A D | lock.cat | 16 * LKR Lock-Read: the read part of a spin_lock() or successful 18 * LKW Lock-Write: the write part of a spin_lock() or successful 21 * LF Lock-Fail: a failed spin_trylock() event 43 (* Link Lock-Reads to their RMW-partner Lock-Writes *)
|
/openbmc/openbmc/poky/meta/recipes-extended/texinfo/texinfo/ |
H A D | 0001-texinfo-several-changes-to-build-without-zlib-and-nc.patch | 2 From: Joshua Lock <josh@linux.intel.com> 12 Signed-off-by: Joshua Lock <josh@linux.intel.com>
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/pptp-linux/pptp-linux/ |
H A D | options.pptp | 2 # Lock the port
|
/openbmc/linux/rust/kernel/sync/lock/ |
H A D | spinlock.rs | 86 pub type SpinLock<T> = super::Lock<T, SpinLockBackend>;
|
H A D | mutex.rs | 88 pub type Mutex<T> = super::Lock<T, MutexBackend>;
|
/openbmc/linux/Documentation/sound/designs/ |
H A D | control-names.rst | 123 Clock Sync Status { "Lock", "Sync", "No Lock" }
|
/openbmc/linux/arch/x86/kvm/ |
H A D | emulate.c | 143 #define Lock (1<<26) /* lock prefix is allowed for the instruction */ macro 4014 F2bv(((_f) | DstReg | SrcMem | ModRM) & ~Lock, _e), \ 4015 F2bv(((_f) & ~Lock) | DstAcc | SrcImm, _e) 4053 F(Lock, em_add), 4054 F(Lock | PageTable, em_or), 4055 F(Lock, em_adc), 4056 F(Lock, em_sbb), 4057 F(Lock | PageTable, em_and), 4058 F(Lock, em_sub), 4059 F(Lock, em_xor), [all …]
|
/openbmc/linux/fs/dlm/ |
H A D | Kconfig | 3 tristate "Distributed Lock Manager (DLM)"
|
/openbmc/openbmc/poky/meta/conf/machine/include/x86/ |
H A D | tune-i586-nlp.inc | 11 TUNEVALID[i586-nlp] = "IA32 with Lock Prefix omitted"
|
/openbmc/openbmc/meta-security/recipes-ids/samhain/files/ |
H A D | samhain-pid-path.patch | 5 Set the PID Lock path for samhain.pid
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-gnome/gtk+/gtk+/ |
H A D | doc-fixes.patch | 5 Thanks to Joshua Lock for suggesting this approach.
|
/openbmc/linux/scripts/clang-tools/ |
H A D | run-clang-tools.py | 67 lock = multiprocessing.Lock()
|
/openbmc/docs/designs/ |
H A D | estoraged.md | 40 [Enabling SD/uSD Card Lock/Unlock Feature in Linux](https://media-www.micron.com/-/media/client/glo… 56 - Lock the device 87 - (method) Lock 150 And it provides several additional methods related to encryption: Lock, Unlock,
|
/openbmc/linux/drivers/mtd/chips/ |
H A D | Kconfig | 170 Each Protection Register has an associated Lock Register bit. When a 171 Lock Register bit is programmed, the associated Protection Register 173 because the Lock Register bits themselves are OTP, when programmed, 174 Lock Register bits cannot be erased. Therefore, when a Protection
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/ |
H A D | serial.py | 8 from threading import Lock 56 self.mutex = Lock()
|