Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 65) sorted by relevance

123

/xen-4.10.0-shim-comet/tools/include/xen-foreign/
A Dmkheader.py145 match = re.search(regex, line); variable
146 if None == match:
165 match = re.search(regex, input, re.S) variable
166 if None == match:
169 output += "union %s_%s {%s\n};\n" % (union, arch, match.group(1));
175 match = re.search(regex, input, re.S) variable
176 if None == match or \
177 (match.group(1) is not None and match.group(1) not in defined):
180 output += "struct %s_%s {%s\n};\n" % (struct, arch, match.group(2));
/xen-4.10.0-shim-comet/tools/misc/
A Dxen-tmem-list-parse.c18 unsigned long long parse(char *s,char *match) in parse() argument
20 char *s1 = strstr(s,match); in parse()
34 char *s1 = strstr(s,match); in parse_hex()
48 char match[3]; in parse2() local
49 match[0] = *match1; in parse2()
50 match[1] = *match2; in parse2()
51 match[2] = '\0'; in parse2()
52 return parse(s,match); in parse2()
57 char *s1 = strstr(s,match); in parse_string()
71 char *s1 = strstr(s,match); in parse_sharers()
[all …]
A Dxensymoops34 m = eip_re.match(line)
87 fm = func_re.match(line)
93 m = addr_re.match(line)
A Dxen-ringwatch76 match = cls._name_pattern.search(name)
77 if not match:
81 rd = match.group(1)
82 devid = match.group(2)
214 match = cls._size_pattern.search(_nr_ents)
215 nr_ents = int(match.group(1))
236 match = cls._pattern.search(line)
237 if not match:
241 i = iter(match.groups())
/xen-4.10.0-shim-comet/xen/tools/
A Dcompat-build-source.py17 match = re.subn(r"^\s*\?\s+(\w*)\s.*", r"\1", line.rstrip()) variable
18 if match[1]:
19 pats.append([ r"(struct|union)\s+(%s|xen_%s)\s+(\w)" % (match[0], match[0]),
/xen-4.10.0-shim-comet/tools/hotplug/Linux/
A Dcolo-proxy-setup42 u32 match u32 0 0 flowid 1:2 action mirred egress mirror dev $forwarddev
44 u32 match u32 0 0 flowid 1:2 action mirred egress mirror dev $forwarddev
46 12 u32 match u32 0 0 flowid 1:2 action mirred egress mirror \
61 do_without_error tc filter del dev $vifname parent 1: protocol ip prio 10 u32 match u32 \
63 do_without_error tc filter del dev $vifname parent 1: protocol arp prio 11 u32 match u32 \
65 do_without_error tc filter del dev $vifname parent 1: protocol ipv6 prio 12 u32 match u32 \
/xen-4.10.0-shim-comet/tools/ocaml/libs/xb/
A Dxb.ml57 let reconnect t = match t.backend with
86 match con.backend with
100 match con.backend with
127 match con.partial_in with
136 match con.partial_in with
175 match con.backend with
180 match con.backend with
198 match con.backend with
203 match con.backend with
208 match con.backend with
/xen-4.10.0-shim-comet/stubdom/
A Dnewlib-stdint-size_max-fix-from-1.17.0.patch6 /* This must match size_t in stddef.h, currently long unsigned int */
15 /* This must match sig_atomic_t in <signal.h> (currently int) */
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Dprocess.ml55 match args with
61 let recurse = match (fst op) with
74 match p with
186 match split None '\000' data with
192 match response with
224 match ty with
278 match response with
292 match t.Transaction.ty with
393 match t.Transaction.ty with
451 match ty with
[all …]
A Ddisk.ml25 let is_digit c = match c with '0' .. '9' -> true | _ -> false
28 match c with
34 match c with
46 match s.[!i] with
71 let c = match s.[!i] with
93 match l with
A Dstdext.ml30 (match !exnhook with None -> () | Some f -> f exn);
37 match v with Some x -> Some (f x) | None -> None
41 match v with Some x -> x | None -> d
45 match v with None -> () | Some x -> f x
96 match Unix.fork () with
101 begin match Unix.fork () with
A Dperms.ml27 match perm with
34 match c with
69 match vect with
110 match connection.main, connection.target with
115 match connection.target with
143 match perm, request with
A Dlogging.ml36 let prefix log_destination ?level ?key date = match log_destination with
38 let level = match level with
41 let key = match key with
46 let key = match key with
146 let level = match level with
173 let init_xenstored_log () = match !xenstored_log_destination with
186 match !xenstored_logger with
221 | XbOp op -> match op with
276 let init_access_log post_rotate = match !access_log_destination with
311 let print = match ty with
[all …]
A Dconnection.ml44 match con.dom with
63 Printf.sprintf "/local/domain/%i/" (match con.dom with None -> 0 | Some d -> Domain.get_id d)
83 match con.dom with
89 match dom with
97 match dom with
128 let is_backend_mmap con = match con.xb.Xenbus.Xb.backend with
250 match commit with
281 match con.dom with
298 match con.dom with
A Dtransaction.ml30 match n1, n2 with
39 match path2 with
44 match optpath with
50 match oldnode, currentnode with
61 match pnode with
90 let get_id t = match t.ty with No -> none | Full (id, _, _) -> id
111 let keep = match txn with
197 match t.ty with
A Dstore.ml58 match l with
68 match l with
121 else match String.split '/' s with
126 match path, name with
146 match l1, l2 with
156 match path with
172 match path with
210 match path with
411 match rmed_node with
418 match Path.get_node store.root path with
A Dconfig.ml60 match split ~limit:2 '=' s with
67 match to_config line with
90 match ty with
A Dpacket.ml14 match (a, b) with
/xen-4.10.0-shim-comet/xen/common/
A Ddevice_tree.c80 bool_t (*match)(const struct dt_device_node *node); member
323 bool_t match = 1; in dt_match_node() local
335 match &= !dt_device_is_available(node); in dt_match_node()
340 if ( match ) in dt_match_node()
618 .match = dt_bus_pci_match,
628 .match = dt_bus_default_match,
641 if ( !dt_busses[i].match || dt_busses[i].match(np) ) in dt_match_bus()
1244 int match, i; in dt_irq_map_raw() local
1339 match = 0; in dt_irq_map_raw()
1343 match = 1; in dt_irq_map_raw()
[all …]
/xen-4.10.0-shim-comet/xen/arch/arm/
A Dbootfdt.c20 const char *match) in device_tree_node_matches() argument
26 match_len = strlen(match); in device_tree_node_matches()
30 return strncmp(name, match, match_len) == 0 in device_tree_node_matches()
35 const char *match) in device_tree_node_compatible() argument
41 mlen = strlen(match); in device_tree_node_compatible()
48 if ( !dt_compat_cmp(prop, match) ) in device_tree_node_compatible()
/xen-4.10.0-shim-comet/tools/ocaml/test/
A Dxtl.ml7 and errno_str = match errno with None -> "" | Some s -> sprintf ": errno=%d" s
8 and ctx_str = match ctx with None -> "" | Some s -> sprintf ": %s" s in
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_dom_boot.c72 int match, found = 0; in xc_dom_compat_check() local
80 match = !strcmp(dom->guest_type, item); in xc_dom_compat_check()
82 item, match ? " <= matches" : ""); in xc_dom_compat_check()
83 if ( match ) in xc_dom_compat_check()
/xen-4.10.0-shim-comet/tools/python/
A Dpylintrc101 # Regular expression which should only match functions or classes name which do
109 # Regular expression which should only match correct module names
112 # Regular expression which should only match correct class names
115 # Regular expression which should only match correct function names
118 # Regular expression which should only match correct method names
121 # Regular expression which should only match correct argument names
124 # Regular expression which should only match correct variable names
/xen-4.10.0-shim-comet/tools/ocaml/libs/xs/
A Dxsraw.ml61 match perm with PERM_NONE -> 'n' | PERM_READ -> 'r'
68 match c with 'n' -> PERM_NONE | 'r' -> PERM_READ
84 match l with h :: l -> (fst h, snd h, l) | [] -> (0, PERM_NONE, [])
131 match Xb.Packet.get_ty pkt with
140 match Xb.Packet.get_ty pkt with
142 match Xb.Packet.get_data pkt with
/xen-4.10.0-shim-comet/tools/libacpi/
A Ddsdt_acpi_info.asl5 * BIOS region must match struct acpi_info in build.c and

Completed in 34 milliseconds

123