/openbmc/linux/block/ |
H A D | holder.c | 14 struct bd_holder_disk *holder; in bd_find_holder_disk() local 16 list_for_each_entry(holder, &disk->slave_bdevs, list) in bd_find_holder_disk() 17 if (holder->holder_dir == bdev->bd_holder_dir) in bd_find_holder_disk() 18 return holder; in bd_find_holder_disk() 62 struct bd_holder_disk *holder; in bd_link_disk_holder() local 86 holder = bd_find_holder_disk(bdev, disk); in bd_link_disk_holder() 87 if (holder) { in bd_link_disk_holder() 89 holder->refcnt++; in bd_link_disk_holder() 93 holder = kzalloc(sizeof(*holder), GFP_KERNEL); in bd_link_disk_holder() 94 if (!holder) { in bd_link_disk_holder() [all …]
|
H A D | bdev.c | 460 static bool bd_may_claim(struct block_device *bdev, void *holder, in bd_may_claim() argument 471 if (bdev->bd_holder == holder) { in bd_may_claim() 502 int bd_prepare_to_claim(struct block_device *bdev, void *holder, in bd_prepare_to_claim() argument 507 if (WARN_ON_ONCE(!holder)) in bd_prepare_to_claim() 512 if (!bd_may_claim(bdev, holder, hops)) { in bd_prepare_to_claim() 530 whole->bd_claiming = holder; in bd_prepare_to_claim() 536 static void bd_clear_claiming(struct block_device *whole, void *holder) in bd_clear_claiming() argument 540 BUG_ON(whole->bd_claiming != holder); in bd_clear_claiming() 554 static void bd_finish_claiming(struct block_device *bdev, void *holder, in bd_finish_claiming() argument 560 BUG_ON(!bd_may_claim(bdev, holder, hops)); in bd_finish_claiming() [all …]
|
/openbmc/phosphor-inventory-manager/ |
H A D | interface_ops.hpp | 91 std::any& holder) in op() 93 auto& iface = *std::any_cast<std::shared_ptr<T>&>(holder); in op() 108 static void op(const Interface& props, std::any& holder, bool deferSignal) in op() 110 auto& iface = *std::any_cast<std::shared_ptr<T>&>(holder); in op() 135 const std::any& holder) in op() 137 const auto& object = *std::any_cast<const std::shared_ptr<T>&>(holder); in op() 155 std::any& holder) in op() 157 auto& object = *std::any_cast<std::shared_ptr<T>&>(holder); in op()
|
H A D | manager.hpp | 175 auto& holder = getInterfaceHolder(path, interface); in getInterface() local 176 return *std::any_cast<std::shared_ptr<T>&>(holder); in getInterface() 181 auto& holder = getInterfaceHolder(path, interface); in getInterface() local 182 return *std::any_cast<T>(holder); in getInterface()
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | HPND | 6 …holder> [or <related entities>] not be used in advertising or publicity pertaining to distribution… 8 …holder> DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF…
|
H A D | HPND-doc | 1 Copyright <year> <copyright holder> 6 <copyright holder> makes no representations about the suitability for
|
H A D | HPND-doc-sell | 1 Copyright <year> <copyright holder> 6 notice appear in all copies. <copyright holder>
|
H A D | BSD-2-Clause-Patent | 13 Subject to the terms and conditions of this license, each copyright holder 19 acquired or hereafter acquired, licensable by such copyright holder or contributor 27 such Contribution(s) was added by such copyright holder or contributor, if, 33 holder or contributor is granted under this license, whether expressly, by
|
H A D | ASWF-Digital-Assets-1.0 | 13 …holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponso… 15 …y trade names, trademarks, service marks, or product names of the copyright holder for any purpose.
|
H A D | ASWF-Digital-Assets-1.1 | 13 …holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponso… 15 …y trade names, trademarks, service marks, or product names of the copyright holder for any purpose.
|
H A D | ECL-1.0 | 12 or other related items, is being provided by the copyright holder(s) 21 copyright holder(s) is hereby granted, provided that you include the 50 The name and trademarks of copyright holder(s) may NOT be used
|
H A D | curl | 10 …holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in…
|
H A D | BSD-3-Clause-No-Military-License | 1 Copyright (c) year copyright holder. All Rights Reserved. 12 Neither the name of the copyright holder nor the names of its contributors may be used to endorse o…
|
H A D | ICU | 11 …holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in…
|
H A D | Unicode-3.0 | 36 Except as contained in this notice, the name of a copyright holder shall 39 authorization of the copyright holder.
|
/openbmc/linux/tools/bpf/bpftool/ |
H A D | prog.c | 92 struct bpf_prog_info holder = {}; in prep_prog_info() local 97 holder.jited_prog_len = info->jited_prog_len; in prep_prog_info() 100 holder.xlated_prog_len = info->xlated_prog_len; in prep_prog_info() 104 holder.nr_jited_ksyms = info->nr_jited_ksyms; in prep_prog_info() 107 holder.nr_jited_func_lens = info->nr_jited_func_lens; in prep_prog_info() 110 holder.nr_func_info = info->nr_func_info; in prep_prog_info() 111 holder.func_info_rec_size = info->func_info_rec_size; in prep_prog_info() 114 holder.nr_line_info = info->nr_line_info; in prep_prog_info() 115 holder.line_info_rec_size = info->line_info_rec_size; in prep_prog_info() 118 holder.nr_jited_line_info = info->nr_jited_line_info; in prep_prog_info() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/gtkperf/gtkperf/ |
H A D | Makevars | 13 # This is the copyright holder that gets inserted into the header of the 14 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 16 # sources, belong to the copyright holder of the package.) Translators are
|
/openbmc/linux/drivers/dax/ |
H A D | super.c | 82 void *holder, const struct dax_holder_operations *ops) in fs_dax_get_by_bdev() argument 102 else if (holder) { in fs_dax_get_by_bdev() 103 if (!cmpxchg(&dax_dev->holder_data, NULL, holder)) in fs_dax_get_by_bdev() 114 void fs_put_dax(struct dax_device *dax_dev, void *holder) in fs_put_dax() argument 116 if (dax_dev && holder && in fs_put_dax() 117 cmpxchg(&dax_dev->holder_data, holder, NULL) == holder) in fs_put_dax()
|
/openbmc/linux/Documentation/process/ |
H A D | kernel-enforcement-statement.rst | 27 from a particular copyright holder is reinstated (a) provisionally, 28 unless and until the copyright holder explicitly and finally 29 terminates your license, and (b) permanently, if the copyright holder 33 Moreover, your license from a particular copyright holder is 34 reinstated permanently if the copyright holder notifies you of the 37 copyright holder, and you cure the violation prior to 30 days after
|
/openbmc/linux/drivers/md/ |
H A D | dm-bio-prison-v1.c | 88 struct bio *holder, in __setup_new_cell() argument 92 cell->holder = holder; in __setup_new_cell() 220 if (cell->holder) in __cell_release() 221 bio_list_add(inmates, cell->holder); in __cell_release() 299 cell->holder = bio_list_pop(&cell->bios); in __promote_or_release()
|
/openbmc/linux/include/linux/ |
H A D | dax.h | 135 void *holder, const struct dax_holder_operations *ops); 136 void fs_put_dax(struct dax_device *dax_dev, void *holder); 146 u64 *start_off, void *holder, in fs_dax_get_by_bdev() argument 151 static inline void fs_put_dax(struct dax_device *dax_dev, void *holder) in fs_put_dax() argument
|
H A D | blkdev.h | 1497 void *holder; member 1500 struct block_device *blkdev_get_by_dev(dev_t dev, blk_mode_t mode, void *holder, 1503 void *holder, const struct blk_holder_ops *hops); 1504 struct bdev_handle *bdev_open_by_dev(dev_t dev, blk_mode_t mode, void *holder, 1507 void *holder, const struct blk_holder_ops *hops); 1508 int bd_prepare_to_claim(struct block_device *bdev, void *holder, 1510 void bd_abort_claiming(struct block_device *bdev, void *holder); 1511 void blkdev_put(struct block_device *bdev, void *holder);
|
/openbmc/qemu/include/qemu/ |
H A D | coroutine.h | 68 Coroutine *holder; member 84 mutex->holder == qemu_coroutine_self()); in qemu_co_mutex_assert_locked()
|
/openbmc/qemu/util/ |
H A D | qemu-coroutine-lock.c | 272 mutex->holder = self; in qemu_co_mutex_lock() 283 assert(mutex->holder == self); in qemu_co_mutex_unlock() 287 mutex->holder = NULL; in qemu_co_mutex_unlock()
|
/openbmc/openbmc/meta-openembedded/meta-python/licenses/ |
H A D | Unicode | 34 Except as contained in this notice, the name of a copyright holder 37 written authorization of the copyright holder.
|