Home
last modified time | relevance | path

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

12

/xen/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/xen/tools/kconfig/
A Dparser.y49 %token T_BOOL
61 %token T_ENDIF
63 %token T_HELP
64 %token T_HEX
65 %token T_IF
66 %token T_IMPLY
67 %token T_INT
69 %token T_MENU
72 %token T_ON
78 %token T_RANGE
[all …]
/xen/tools/xl/
A Dxl_parse.c425 if (MATCH_OPTION("type", token, oparg)) { in parse_nic_config()
452 } else if (MATCH_OPTION("ip", token, oparg)) { in parse_nic_config()
766 if (MATCH_OPTION("type", token, oparg)) { in parse_usbctrl_config()
790 if (MATCH_OPTION("type", token, oparg)) { in parse_usbdev_config()
818 if (MATCH_OPTION("backend", token, oparg)) { in parse_vdispl_config()
1017 char *token = strtok(buf, ","); in parse_vsnd_item() local
1021 while (token) { in parse_vsnd_item()
1022 while (*token == ' ') token++; in parse_vsnd_item()
1025 key = token; in parse_vsnd_item()
1040 token = strtok (NULL, ","); in parse_vsnd_item()
[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);
38 int parse_vkb_config(libxl_device_vkb *vkb, char *token);
/xen/xen/common/lz4/
A Ddecompress.c57 unsigned token; in lz4_uncompress() local
63 token = *ip++; in lz4_uncompress()
64 length = (token >> ML_BITS); in lz4_uncompress()
103 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/tools/xenstore/
A Dxenstored_watch.c46 char *token; member
94 len = strlen(name) + 1 + strlen(watch->token) + 1; in add_event()
103 strcpy(data + strlen(name) + 1, watch->token); in add_event()
225 streq(watch->token, vec[1])) in do_watch()
236 watch->token = talloc_strdup(watch, vec[1]); in do_watch()
237 if (!watch->node || !watch->token) { in do_watch()
272 if (streq(watch->node, node) && streq(watch->token, vec[1])) { in do_unwatch()
A Dxs.c811 bool xs_watch(struct xs_handle *h, const char *path, const char *token) in xs_watch() argument
868 iov[1].iov_base = (void *)token; in xs_watch()
869 iov[1].iov_len = strlen(token) + 1; in xs_watch()
983 bool xs_unwatch(struct xs_handle *h, const char *path, const char *token) in xs_unwatch() argument
994 iov[1].iov_base = (char *)token; in xs_unwatch()
995 iov[1].iov_len = strlen(token) + 1; in xs_unwatch()
1032 if (l_token && !strcmp(token, l_token) && in xs_unwatch()
/xen/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()
554 PyObject *token; in xspy_unwatch() local
560 if (!PyArg_ParseTuple(args, "sO", &path, &token)) in xspy_unwatch()
568 remove_watch(self, token); in xspy_unwatch()
888 PyObject *token; in match_watch_by_token() local
[all …]
/xen/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
215 let data = Utils.join_by_null [watch.path; watch.token; ""] in
311 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.ml359 let (node, token) =
361 | [node; token; ""] -> node, token
364 let watch = Connections.add_watch cons con node token in
371 let (node, token) =
373 | [node; token; ""] -> node, token
376 ignore @@ Connections.del_watch cons con node token
A Dxenstored.ml161 | "watch" :: domid :: path :: token :: [] ->
163 (unhexify path) (unhexify token)
192 let watch_f domid path token =
194 ignore (Connections.add_watch cons con path token)
/xen/xen/arch/x86/hvm/
A Dhypercall.c171 unsigned int token; in hvm_hypercall() local
200 token = hvmemul_cache_disable(curr); in hvm_hypercall()
204 hvmemul_cache_restore(curr, token); in hvm_hypercall()
230 token = hvmemul_cache_disable(curr); in hvm_hypercall()
325 hvmemul_cache_restore(curr, token); in hvm_hypercall()
A Dintercept.c168 unsigned int token = hvmemul_cache_disable(curr); in hvm_process_io_intercept() local
190 hvmemul_cache_restore(curr, token); in hvm_process_io_intercept()
A Demulate.c1945 unsigned int token = hvmemul_cache_disable(curr); in hvmemul_rep_movs() local
1953 hvmemul_cache_restore(curr, token); in hvmemul_rep_movs()
2998 unsigned int token = cache->num_ents; in hvmemul_cache_disable() local
3002 return token; in hvmemul_cache_disable()
3005 void hvmemul_cache_restore(struct vcpu *v, unsigned int token) in hvmemul_cache_restore() argument
3010 cache->num_ents = token; in hvmemul_cache_restore()
A Dvmsi.c611 unsigned int token = hvmemul_cache_disable(v); in msix_write_completion() local
627 hvmemul_cache_restore(v, token); in msix_write_completion()
/xen/tools/libxl/
A Dlibxlu_cfg_y.y38 %token <string> IDENT STRING NUMBER NEWLINE
41 %token OP_ADD "+="
A Dlibxl_event.c699 const char *token = event[1]; in watchfd_callback() local
705 epath, token); in watchfd_callback()
713 epath, token, slotnum, CTX->watch_nslots); in watchfd_callback()
726 w, epath, token, w->counterval); in watchfd_callback()
745 w, w->path, token, epath); in watchfd_callback()
751 w, w->path, token, epath); in watchfd_callback()
812 const char *token = watch_token(gc, slotnum, w->counterval); in libxl__ev_xswatch_register() local
814 w, path, token, slotnum); in libxl__ev_xswatch_register()
816 if (!xs_watch(CTX->xsh, path, token)) { in libxl__ev_xswatch_register()
851 w, w->path, token, w->slotnum); in libxl__ev_xswatch_deregister()
[all …]
/xen/tools/xenstore/include/
A Dxenstore.h184 bool xs_watch(struct xs_handle *h, const char *path, const char *token);
215 bool xs_unwatch(struct xs_handle *h, const char *path, const char *token);
/xen/tools/python/xen/lowlevel/xc/
A Dxc.c507 token = strchr(token, 'x') + 1; in token_value()
513 char *token; in next_bdf() local
518 token = *str; in next_bdf()
519 *seg = token_value(token); in next_bdf()
520 token = strchr(token, ',') + 1; in next_bdf()
521 *bus = token_value(token); in next_bdf()
522 token = strchr(token, ',') + 1; in next_bdf()
523 *dev = token_value(token); in next_bdf()
524 token = strchr(token, ',') + 1; in next_bdf()
526 token = strchr(token, ','); in next_bdf()
[all …]
/xen/xen/arch/x86/
A Dextable.c115 union stub_exception_token token = { in search_exception_table() local
120 *(unsigned long *)regs->rsp = token.raw; in search_exception_table()
/xen/docs/designs/
A Dxenstore-migration.md256 | wpath-len | token-len |
260 | token
273 | `token-len` | The length (in octets) of `token` including the |
279 | `token` | The watch identifier token, as specified in the |
/xen/xen/include/asm-x86/hvm/
A Demulate.h130 void hvmemul_cache_restore(struct vcpu *, unsigned int token);
/xen/xen/drivers/char/
A Dns16550.c1220 static enum __init serial_param_type get_token(char *token, char **value) in get_token() argument
1225 param_name = strsep(&token, "="); in get_token()
1234 *value = token; in get_token()
1366 char *token, *start = str; in parse_namevalue_pairs() local
1376 token = strsep(&start, ","); in parse_namevalue_pairs()
1378 switch ( get_token(token, &param_value) ) in parse_namevalue_pairs()
1452 PARSE_ERR_RET("Invalid parameter: %s\n", token); in parse_namevalue_pairs()
/xen/docs/misc/
A Dxenstore.txt179 WATCH <wpath>|<token>|?
218 WATCH_EVENT <epath>|<token>|
232 UNWATCH <wpath>|<token>|?

Completed in 54 milliseconds

12