/xen-4.10.0-shim-comet/tools/include/xen-foreign/ |
A D | mkheader.py | 3 import sys, re; 115 fileid = re.sub("[-.]", "_", "__FOREIGN_%s__" % outfile.upper()); 142 for line in re.findall("#define[^\n]+", input): 145 match = re.search(regex, line); 154 output += re.sub(regex, replace, line) + "\n"; 158 input = re.sub("#define[^\n]+\n", "", input); 159 input = re.compile("/\*(.*?)\*/", re.S).sub("", input) 160 input = re.compile("\n\s*\n", re.S).sub("\n", input); 165 match = re.search(regex, input, re.S) 175 match = re.search(regex, input, re.S) [all …]
|
/xen-4.10.0-shim-comet/xen/tools/ |
A D | compat-build-source.py | 3 import re,sys 17 match = re.subn(r"^\s*\?\s+(\w*)\s.*", r"\1", line.rstrip()) 24 pat[0] = re.compile(pat[0]) 28 line = re.sub(pat[0], pat[1], line)
|
A D | compat-build-header.py | 3 import re,sys 25 line = re.subn(pat[0], pat[1], line)[0]
|
A D | gen-cpuid.py | 4 import sys, os, re 39 feat_regex = re.compile(
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xensymoops | 11 import re, sys 21 stackaddr_re = re.compile(stackaddr_ptn) 24 eip_re = re.compile(eip_ptn) 67 addr_re = re.compile(addr_ptn) 71 func_re = re.compile(func_ptn)
|
A D | xen-ringwatch | 43 import re 46 self.__pattern = re.compile(self.regex)
|
/xen-4.10.0-shim-comet/xen/common/libfdt/ |
A D | fdt_sw.c | 110 struct fdt_reserve_entry *re; in fdt_add_reservemap_entry() local 119 if ((offset + sizeof(*re)) > fdt_totalsize(fdt)) in fdt_add_reservemap_entry() 122 re = (struct fdt_reserve_entry *)((char *)fdt + offset); in fdt_add_reservemap_entry() 123 re->address = cpu_to_fdt64(addr); in fdt_add_reservemap_entry() 124 re->size = cpu_to_fdt64(size); in fdt_add_reservemap_entry() 126 fdt_set_off_dt_struct(fdt, offset + sizeof(*re)); in fdt_add_reservemap_entry()
|
A D | fdt_rw.c | 172 struct fdt_reserve_entry *re; in fdt_add_mem_rsv() local 177 re = _fdt_mem_rsv_w(fdt, fdt_num_mem_rsv(fdt)); in fdt_add_mem_rsv() 178 err = _fdt_splice_mem_rsv(fdt, re, 0, 1); in fdt_add_mem_rsv() 182 re->address = cpu_to_fdt64(address); in fdt_add_mem_rsv() 183 re->size = cpu_to_fdt64(size); in fdt_add_mem_rsv() 189 struct fdt_reserve_entry *re = _fdt_mem_rsv_w(fdt, n); in fdt_del_mem_rsv() local 197 err = _fdt_splice_mem_rsv(fdt, re, 1, 0); in fdt_del_mem_rsv()
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | e820.c | 562 uint64_t re = rs + e820->map[i].size; in e820_add_range() local 570 if ( re == s && e820->map[i].type == type && in e820_add_range() 580 if ( re > s ) in e820_add_range() 606 uint64_t rs = 0, re = 0; in e820_change_range_type() local 613 re = rs + e820->map[i].size; in e820_change_range_type() 614 if ( (s >= rs) && (e <= re) ) in e820_change_range_type() 621 if ( (s == rs) && (e == re) ) in e820_change_range_type() 625 else if ( (s == rs) || (e == re) ) in e820_change_range_type() 639 e820->map[i+1].size = re - e; in e820_change_range_type() 663 e820->map[i+2].size = re - e; in e820_change_range_type()
|
A D | Kconfig | 53 do. If you're certain you don't plan on having PV guests
|
/xen-4.10.0-shim-comet/tools/pygrub/src/ |
A D | pygrub | 15 import os, sys, string, struct, tempfile, re, traceback, stat, errno 315 re = len(img.lines) 317 if re > Grub.ENTRY_WIN_LINES: 319 re = rs + Grub.ENTRY_WIN_LINES 321 for idx in range(rs, re): 474 title = re.search('(\S)>(\S.+$)',title).group(2) 706 if re.match("^root=", arg) or re.match("^ip=", arg): 888 bootfsgroup = re.findall('zfs-bootfs=(.*?)[\s\,\"]', bootfsargs) 950 e = re.compile("zfs-bootfs=[\w\-\.\:@/]+" )
|
A D | LiloConf.py | 5 import sys, re, os 34 setattr(self, self.commands[com], re.sub('^"(.+)"$', r"\1", arg.strip()))
|
A D | ExtLinuxConf.py | 13 import sys, re, os 72 setattr(self, self.commands[com], re.sub('^"(.+)"$', r"\1", arg.strip()))
|
A D | GrubConf.py | 17 import re 316 m = re.match("([\"\'])(.*)\\1", arg) 398 title_match = re.match('^menuentry ["\'](.*?)["\'] (.*){', l)
|
/xen-4.10.0-shim-comet/stubdom/grub.patches/ |
A D | 11graphics-keyboard.diff | 13 since we're comming in here also on GRUB_TIMEOUT == -1 and
|
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/ |
A D | systemd.mli | 15 (** Tells systemd we're ready *)
|
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xentrace_format | 7 import re, sys, string, signal, struct, os, getopt 40 reg = re.compile('(\S+)\s+(\S.*)')
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | crashdb.txt | 59 you're screwed. 60 -- If the page tables are wrong, you're screwed
|
A D | block-scripts.txt | 111 hasn't been re-used, rather than just checking that the *specific 112 device node* isn't re-used. To do this it currently uses
|
A D | xl-psr.markdown | 150 * the CAT masks are re-mapped into interleaved pairs of masks for data or 153 * the range of COS for CAT is re-indexed, with the lower-half of the COS
|
/xen-4.10.0-shim-comet/xen/include/ |
A D | Makefile | 81 …grep -v '^[[:blank:]]*#' $< | sed -ne 's,@arch@,$(compat-arch-y),g' -re 's,[[:blank:]]+$*\.h[[:bla… 84 xlat-y := $(shell sed -ne 's,@arch@,$(compat-arch-y),g' -re 's,^[?!][[:blank:]]+[^[:blank:]]+[[:bla…
|
/xen-4.10.0-shim-comet/xen/arch/x86/boot/ |
A D | edd.S | 149 jnz .Ledd_mbr_sig_done # on failure, we're done.
|
/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | symbol.c | 997 regex_t re; in sym_re_search() local 1004 if (regcomp(&re, pattern, REG_EXTENDED|REG_ICASE)) in sym_re_search() 1010 if (regexec(&re, sym->name, 1, match, 0)) in sym_re_search() 1040 regfree(&re); in sym_re_search()
|
/xen-4.10.0-shim-comet/tools/python/ |
A D | test.py | 241 import re 503 return re.search(rx[1:], s) is None 505 return re.search(rx, s) is not None
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | dom0_build.c | 182 uint64_t re = rs + d->arch.e820[i].size; in pvh_add_mem_range() local 190 if ( re == s && d->arch.e820[i].type == type && in pvh_add_mem_range() 200 if ( re > s ) in pvh_add_mem_range()
|