| /openbmc/openbmc/poky/bitbake/bin/ |
| H A D | git-make-shallow | 48 make_shallow(shallow_file, args.revisions, args.refs) 50 ref_revs = check_output(git_cmd + ['rev-list'] + args.refs).splitlines() 56 filter_refs(args.refs) 76 if args.refs: 77 … args.refs = check_output(git_cmd + ['rev-parse', '--symbolic-full-name'] + args.refs).splitlines() 79 args.refs = get_all_refs(lambda r, t, tt: t == 'commit' or tt == 'commit') 81 args.refs = list(filter(lambda r: not r.endswith('/HEAD'), args.refs)) 90 def make_shallow(shallow_file, revisions, refs): argument 92 for rev in follow_history_intersections(revisions, refs): 104 refs = [r[0] for r in ref_split] [all …]
|
| /openbmc/qemu/hw/i386/kvm/ |
| H A D | xen_gnttab.c | 328 uint32_t *refs, int prot) in xen_be_gnttab_map_refs() argument 363 act = g_hash_table_lookup(xgt->active_maps, GINT_TO_POINTER(refs[0])); in xen_be_gnttab_map_refs() 366 if (gnt_ref(s, refs[0], prot) == INVALID_GPA) { in xen_be_gnttab_map_refs() 373 uint64_t gpa = gnt_ref(s, refs[0], prot); in xen_be_gnttab_map_refs() 391 gnt_unref(s, refs[0], &act->mrs, 0); in xen_be_gnttab_map_refs() 397 s->map_track[refs[0]]++; in xen_be_gnttab_map_refs() 398 g_hash_table_insert(xgt->active_maps, GINT_TO_POINTER(refs[0]), act); in xen_be_gnttab_map_refs() 416 void *start_address, uint32_t *refs, in xen_be_gnttab_unmap() argument 432 act = g_hash_table_lookup(xgt->active_maps, GINT_TO_POINTER(refs[0])); in xen_be_gnttab_unmap() 442 do_unmap(GINT_TO_POINTER(refs[0]), act, s); in xen_be_gnttab_unmap() [all …]
|
| /openbmc/webui-vue/src/views/Operations/Kvm/ |
| H A D | KvmConsole.vue | 114 this.$refs.panel, 143 this.$refs.panel.children && 144 this.$refs.panel.children.length > 0 && 145 this.$refs.panel.children[0].children.length > 0 147 this.$refs.toolbar.style.width = 148 this.$refs.panel.children[0].children[0].clientWidth - 10 + 'px';
|
| /openbmc/qemu/include/hw/xen/ |
| H A D | xen_backend_ops.h | 160 uint32_t *refs, int prot); 161 int (*unmap)(xengnttab_handle *xgt, void *start_address, uint32_t *refs, 213 uint32_t *refs, int prot) in qemu_xen_gnttab_map_refs() argument 218 return xen_gnttab_ops->map_refs(xgt, count, domid, refs, prot); in qemu_xen_gnttab_map_refs() 222 void *start_address, uint32_t *refs, in qemu_xen_gnttab_unmap() argument 228 return xen_gnttab_ops->unmap(xgt, start_address, refs, count); in qemu_xen_gnttab_unmap()
|
| H A D | xen-legacy-backend.h | 47 void *xen_be_map_grant_refs(struct XenLegacyDevice *xendev, uint32_t *refs, 50 uint32_t *refs, unsigned int nr_refs);
|
| H A D | xen-bus.h | 99 void *xen_device_map_grant_refs(XenDevice *xendev, uint32_t *refs, 102 void xen_device_unmap_grant_refs(XenDevice *xendev, void *map, uint32_t *refs,
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | codeparser.py | 131 def __init__(self, refs, execs, contains, extra): argument 132 self.refs = codecache.internSet(refs) 140 return (self.refs, self.execs, self.contains, self.extra) 143 (refs, execs, contains, extra) = state 144 self.__init__(refs, execs, contains, extra) 146 l = (hash(self.refs), hash(self.execs), hash(self.extra)) 151 return " ".join([str(self.refs), str(self.execs), str(self.contains)]) 189 def newPythonCacheLine(self, refs, execs, contains, extra): argument 190 cacheline = pythonCacheLine(refs, execs, contains, extra) 361 self.references = set(codeparsercache.pythoncache[h].refs) [all …]
|
| /openbmc/webui-vue/src/views/Settings/Network/ |
| H A D | ModalIpv4.vue | 134 this.$refs.modal?.show(); 161 this.$refs.modal?.show(); 164 this.$refs.modal?.hide(); 178 this.$refs.modal.hide();
|
| H A D | ModalDns.vue | 89 this.$refs.modal?.show(); 105 this.$refs.modal.hide();
|
| H A D | ModalMacAddress.vue | 92 this.$refs.modal?.show(); 118 this.$refs.modal.hide();
|
| H A D | ModalHostname.vue | 93 this.$refs.modal?.show(); 119 this.$refs.modal.hide();
|
| H A D | ModalDefaultGateway.vue | 97 this.$refs.modal?.show(); 123 this.$refs.modal.hide();
|
| /openbmc/qemu/hw/xen/ |
| H A D | xen-operations.c | 45 uint32_t *refs = g_new(uint32_t, nr_segs); in libxengnttab_fallback_grant_copy() local 54 refs[i] = to_domain ? seg->dest.foreign.ref : in libxengnttab_fallback_grant_copy() 57 map = xengnttab_map_domain_grant_refs(xgt, nr_segs, domid, refs, prot); in libxengnttab_fallback_grant_copy() 88 g_free(refs); in libxengnttab_fallback_grant_copy() 176 void *start_address, uint32_t *refs, in libxengnttab_backend_unmap() argument
|
| H A D | xen-legacy-backend.c | 121 void *xen_be_map_grant_refs(struct XenLegacyDevice *xendev, uint32_t *refs, in xen_be_map_grant_refs() argument 128 ptr = qemu_xen_gnttab_map_refs(xendev->gnttabdev, nr_refs, xen_domid, refs, in xen_be_map_grant_refs() 140 uint32_t *refs, unsigned int nr_refs) in xen_be_unmap_grant_refs() argument 144 if (qemu_xen_gnttab_unmap(xendev->gnttabdev, ptr, refs, nr_refs)) { in xen_be_unmap_grant_refs()
|
| /openbmc/obmc-console/subprojects/ |
| H A D | iniparser.wrap | 3 source_url = https://github.com/ndevilla/iniparser/archive/refs/tags/v4.2.1.zip
|
| /openbmc/openbmc-tools/dbus_sensor_tester/subprojects/ |
| H A D | cli11.wrap | 3 source_url = https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.1.2.tar.gz
|
| /openbmc/phosphor-objmgr/subprojects/ |
| H A D | CLI11.wrap | 3 source_url = https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.3.2.tar.gz
|
| H A D | gtest.wrap | 3 source_url = https://github.com/google/googletest/archive/refs/tags/v1.17.0.tar.gz
|
| /openbmc/bmcweb/subprojects/ |
| H A D | cli11.wrap | 3 source_url = https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.4.1.tar.gz
|
| H A D | gtest.wrap | 3 source_url = https://github.com/google/googletest/archive/refs/tags/v1.15.0.tar.gz
|
| /openbmc/dbus-sensors/subprojects/ |
| H A D | liburing.wrap | 3 source_url = https://github.com/axboe/liburing/archive/refs/tags/liburing-2.4.tar.gz
|
| /openbmc/skeleton/subprojects/ |
| H A D | cjson.wrap | 3 source_url = https://github.com/DaveGamble/cJSON/archive/refs/tags/v1.7.18.tar.gz
|
| /openbmc/openbmc/poky/scripts/lib/recipetool/ |
| H A D | create_go.py | 388 refs = {} 400 refs[f[1][len(prefix):]] = f[0] 402 for key, hash in refs.items(): 404 refs[key.strip(r"^{}")] = hash 406 return refs[tag] 439 refs = refstring.strip('(), ').split(',') 440 for ref in refs:
|
| /openbmc/webui-vue/src/views/HardwareStatus/Sensors/ |
| H A D | Sensors.vue | 30 @clear-selected="clearSelectedRows($refs.table)" 66 @change="onChangeHeaderCheckbox($refs.table, $event)" 76 @change="toggleSelectRow($refs.table, row.index)"
|
| /openbmc/u-boot/fs/btrfs/ |
| H A D | conv-funcs.h | 130 DEFINE_CONV(btrfs_extent_item, refs, generation, flags) 145 bytes_used, last_snapshot, flags, refs, drop_progress,
|