Home
last modified time | relevance | path

Searched refs:token (Results 1 – 24 of 24) sorted by relevance

/xen-4.10.0-shim-comet/xen/tools/
A Dget-fields.sh19 for token in $2
21 case "$token" in
47 for token in $1
49 case "$token" in
75 for token in $2
106 id=$token
212 id=$token
217 id=$token
341 id=$token
346 id=$token
[all …]
/xen-4.10.0-shim-comet/xen/tools/kconfig/
A Dzconf.y47 %token <id>T_MENU
55 %token <id>T_HELP
57 %token <id>T_IF
58 %token <id>T_ENDIF
62 %token <id>T_TYPE
65 %token <id>T_RANGE
68 %token <id>T_ON
71 %token T_UNEQUAL
72 %token T_LESS
74 %token T_GREATER
[all …]
A Dzconf.tab.c_shipped132 /* Enabling the token table. */
594 token YYLEX-NUM. */
1468 /* Lookahead token as an internal (translated) token number. */
1639 /* Shift the lookahead token. */
1642 /* Discard the shifted token. */
2208 token. */
2267 /* Shift the error token. */
2365 static const char *zconf_tokenname(int token)
2367 switch (token) {
2377 return "<token>";
[all …]
A Dlkc.h66 int token; member
109 void menu_add_option(int token, char *arg);
A Dzconf.l110 return id->token;
146 return id->token;
A Dmenu.c199 void menu_add_option(int token, char *arg) in menu_add_option() argument
201 switch (token) { in menu_add_option()
A Dzconf.lex.c_shipped1131 return id->token;
1215 return id->token;
1515 } /* end of scanning one token */
1758 * token and flags that we need to
1759 * try matching the token before
2203 /** Get the length of the current token.
2211 /** Get the current token.
/xen-4.10.0-shim-comet/tools/xl/
A Dxl_parse.c421 if (MATCH_OPTION("type", token, oparg)) { in parse_nic_config()
430 } else if (MATCH_OPTION("mac", token, oparg)) { in parse_nic_config()
448 } else if (MATCH_OPTION("ip", token, oparg)) { in parse_nic_config()
456 } else if (MATCH_OPTION("model", token, oparg)) { in parse_nic_config()
458 } else if (MATCH_OPTION("rate", token, oparg)) { in parse_nic_config()
558 } else if (MATCH_OPTION("accel", token, oparg)) { in parse_nic_config()
560 } else if (MATCH_OPTION("devid", token, oparg)) { in parse_nic_config()
762 if (MATCH_OPTION("type", token, oparg)) { in parse_usbctrl_config()
786 if (MATCH_OPTION("type", token, oparg)) { in parse_usbdev_config()
797 } else if (MATCH_OPTION("port", token, oparg)) { in parse_usbdev_config()
[all …]
A Dxl_parse.h32 int parse_usbctrl_config(libxl_device_usbctrl *usbctrl, char *token);
33 int parse_usbdev_config(libxl_device_usbdev *usbdev, char *token);
35 int parse_nic_config(libxl_device_nic *nic, XLU_Config **config, char *token);
36 int parse_vdispl_config(libxl_device_vdispl *vdispl, char *token);
/xen-4.10.0-shim-comet/xen/common/lz4/
A Ddecompress.c52 unsigned token; in lz4_uncompress() local
62 token = *ip++; in lz4_uncompress()
63 length = (token >> ML_BITS); in lz4_uncompress()
102 length = token & ML_MASK; in lz4_uncompress()
186 unsigned token; in lz4_uncompress_unknownoutputsize() local
190 token = *ip++; in lz4_uncompress_unknownoutputsize()
191 length = (token >> ML_BITS); in lz4_uncompress_unknownoutputsize()
234 length = (token & ML_MASK); in lz4_uncompress_unknownoutputsize()
/xen-4.10.0-shim-comet/tools/xenstore/
A Dxenstored_watch.c46 char *token; member
112 len = strlen(name) + 1 + strlen(watch->token) + 1; in add_event()
117 strcpy(data + strlen(name) + 1, watch->token); in add_event()
179 streq(watch->token, vec[1])) in do_watch()
190 watch->token = talloc_strdup(watch, vec[1]); in do_watch()
191 if (!watch->node || !watch->token) { in do_watch()
226 if (streq(watch->node, node) && streq(watch->token, vec[1])) { in do_unwatch()
A Dxs.c798 bool xs_watch(struct xs_handle *h, const char *path, const char *token) in xs_watch() argument
842 iov[1].iov_base = (void *)token; in xs_watch()
843 iov[1].iov_len = strlen(token) + 1; in xs_watch()
957 bool xs_unwatch(struct xs_handle *h, const char *path, const char *token) in xs_unwatch() argument
968 iov[1].iov_base = (char *)token; in xs_unwatch()
969 iov[1].iov_len = strlen(token) + 1; in xs_unwatch()
1006 if (l_token && !strcmp(token, l_token) && in xs_unwatch()
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Dconnection.ml25 token: string; RecordField
65 let watch_create ~con ~path ~token = {
67 token = token;
161 let add_watch con path token =
167 if List.exists (fun w -> w.token = token) l then
169 let watch = watch_create ~con ~token ~path in
174 let del_watch con path token =
177 let w = List.find (fun w -> w.token = token) ws in
200 let data = Utils.join_by_null [watch.path; watch.token; ""] in
287 List.iter (fun (path, token) ->
[all …]
A Dconnections.ml116 let add_watch cons con path token =
117 let apath, watch = Connection.add_watch con path token in
127 let del_watch cons con path token =
128 let apath, watch = Connection.del_watch con path token in
A Dprocess.ml355 let (node, token) =
357 | [node; token; ""] -> node, token
360 let watch = Connections.add_watch cons con node token in
364 let (node, token) =
366 | [node; token; ""] -> node, token
369 Connections.del_watch cons con node token
A Dxenstored.ml159 | "watch" :: domid :: path :: token :: [] ->
161 (unhexify path) (unhexify token)
191 let watch_f domid path token =
193 ignore (Connections.add_watch cons con path token)
/xen-4.10.0-shim-comet/tools/python/xen/lowlevel/xs/
A Dxs.c78 static void remove_watch(XsHandle *xsh, PyObject *token);
422 PyObject *token; in xspy_watch() local
429 if (!PyArg_ParseTuple(args, "sO", &path, &token)) in xspy_watch()
439 PySequence_SetItem(self->watches, i, token); in xspy_watch()
444 PyList_Append(self->watches, token); in xspy_watch()
452 remove_watch(self, token); in xspy_watch()
553 PyObject *token; in xspy_unwatch() local
559 if (!PyArg_ParseTuple(args, "sO", &path, &token)) in xspy_unwatch()
567 remove_watch(self, token); in xspy_unwatch()
887 PyObject *token; in match_watch_by_token() local
[all …]
/xen-4.10.0-shim-comet/tools/xenstore/include/
A Dxenstore.h177 bool xs_watch(struct xs_handle *h, const char *path, const char *token);
207 bool xs_unwatch(struct xs_handle *h, const char *path, const char *token);
/xen-4.10.0-shim-comet/tools/python/xen/lowlevel/xc/
A Dxc.c488 token = strchr(token, 'x') + 1; in token_value()
494 char *token; in next_bdf() local
499 token = *str; in next_bdf()
500 *seg = token_value(token); in next_bdf()
501 token = strchr(token, ',') + 1; in next_bdf()
502 *bus = token_value(token); in next_bdf()
503 token = strchr(token, ',') + 1; in next_bdf()
504 *dev = token_value(token); in next_bdf()
505 token = strchr(token, ',') + 1; in next_bdf()
507 token = strchr(token, ','); in next_bdf()
[all …]
/xen-4.10.0-shim-comet/xen/arch/x86/
A Dextable.c114 union stub_exception_token token = { in search_exception_table() local
119 *(unsigned long *)regs->rsp = token.raw; in search_exception_table()
/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxl_event.c521 const char *token = event[1]; in watchfd_callback() local
527 epath, token); in watchfd_callback()
535 epath, token, slotnum, CTX->watch_nslots); in watchfd_callback()
548 w, epath, token, w->counterval); in watchfd_callback()
567 w, w->path, token, epath); in watchfd_callback()
573 w, w->path, token, epath); in watchfd_callback()
634 const char *token = watch_token(gc, slotnum, w->counterval); in libxl__ev_xswatch_register() local
636 w, path, token, slotnum); in libxl__ev_xswatch_register()
638 if (!xs_watch(CTX->xsh, path, token)) { in libxl__ev_xswatch_register()
673 w, w->path, token, w->slotnum); in libxl__ev_xswatch_deregister()
[all …]
A Dlibxlu_cfg_y.y38 %token <string> IDENT STRING NUMBER NEWLINE
/xen-4.10.0-shim-comet/xen/drivers/char/
A Dns16550.c1155 static enum __init serial_param_type get_token(char *token, char **value) in get_token() argument
1160 param_name = strsep(&token, "="); in get_token()
1169 *value = token; in get_token()
1290 char *token, *start = str; in parse_namevalue_pairs() local
1300 token = strsep(&start, ","); in parse_namevalue_pairs()
1302 switch ( get_token(token, &param_value) ) in parse_namevalue_pairs()
1376 PARSE_ERR_RET("Invalid parameter: %s\n", token); in parse_namevalue_pairs()
/xen-4.10.0-shim-comet/docs/misc/
A Dxenstore.txt167 WATCH <wpath>|<token>|?
204 WATCH_EVENT <epath>|<token>|
218 UNWATCH <wpath>|<token>|?

Completed in 57 milliseconds