| /xen/tools/libs/util/ |
| A D | libxlu_cfg_y.y | 43 %type <value> value valuelist values 44 %destructor { xlu__cfg_value_free($$); } value valuelist values 71 | values { $$= $1; } 72 | values ',' nlok { $$= $1; } 74 values: value nlok { $$= xlu__cfg_list_mk(ctx,$1,&@1); } 75 | values ',' nlok value nlok { xlu__cfg_list_append(ctx,$1,$4); $$= $1; }
|
| A D | libxlu_cfg.c | 146 free(value->u.list.values); in xlu__cfg_value_free() 246 return list->values[entry]; in xlu_cfg_get_listitem2() 419 XLU_ConfigValue **values = NULL; in xlu__cfg_list_mk() local 423 values = malloc(sizeof(*values)); in xlu__cfg_list_mk() 424 if (!values) goto xe; in xlu__cfg_list_mk() 425 values[0] = val; in xlu__cfg_list_mk() 432 value->u.list.values = values; in xlu__cfg_list_mk() 441 free(values); in xlu__cfg_list_mk() 530 cur_list->values, in xlu__cfg_concat_vals() 534 memcpy(cur_list->values, in xlu__cfg_concat_vals() [all …]
|
| A D | libxlu_internal.h | 31 XLU_ConfigValue **values; member
|
| /xen/xen/xsm/flask/include/ |
| A D | conditional.h | 18 int security_get_bools(int *len, char ***names, int **values, size_t *maxstr); 20 int security_set_bools(int len, int *values);
|
| /xen/docs/man/ |
| A D | xenstore.1.pod | 29 List keys, values and permissions. 41 Watch for changes to keys or values. 45 Add or modify keys and values.
|
| A D | xl-disk-configuration.5.pod.in | 65 =item Supported values 69 =item Deprecated values 105 =item Supported values 109 =item Deprecated values 128 =item Supported values 133 =item Deprecated values 153 =item Supported values 183 =item Supported values 210 =item Supported values 233 =item Supported values [all …]
|
| A D | xenstore-read.1.pod | 3 xenstore-read - read Xenstore values 11 Read values of one or more Xenstore I<PATH>s.
|
| A D | xenstore-ls.1.pod | 3 xenstore-ls - list Xenstore keys and values 11 List keys, values and permissions of one or more Xenstore I<PATH>s,
|
| A D | xenstore-write.1.pod | 3 xenstore-write - write Xenstore values
|
| /xen/xen/common/coverage/ |
| A D | gcc_4_7.c | 56 gcov_type *values; member 144 memset(ci_ptr->values, 0, sizeof(gcov_type) * ci_ptr->num); in gcov_info_reset() 206 pos += gcov_store_uint64(buffer, pos, ci_ptr->values[cv_idx]); in gcov_info_to_gcda()
|
| A D | gcc_3_4.c | 61 gcov_type *values; member 192 memset(info->counts[i].values, 0, in gcov_info_reset() 328 values[iter->count + get_type(iter)->offset]); in gcov_iter_write()
|
| /xen/tools/ocaml/xenstored/ |
| A D | trie.mli | 19 (** The type of tries. ['a] the type of values. 20 Internally, a trie is represented as a labeled tree, where node contains values 32 Returns [Not_found] if no values are associated with [k] in [t]. *) 40 every nodes of [t] containing no values and having no chil. *) 55 (** [map f t] maps [f] over every values stored in [t]. The return value of [f] is of type 'c option
|
| /xen/xen/xsm/flask/ |
| A D | flask_op.c | 279 int *values; in flask_security_set_bool() local 281 rv = security_get_bools(&num, NULL, &values, NULL); in flask_security_set_bool() 287 xfree(values); in flask_security_set_bool() 291 values[arg->bool_id] = !!(arg->new_value); in flask_security_set_bool() 298 rv = security_set_bools(num, values); in flask_security_set_bool() 299 xfree(values); in flask_security_set_bool() 387 int *values = NULL; in flask_security_make_bools() local 391 ret = security_get_bools(&num, NULL, &values, NULL); in flask_security_make_bools() 396 bool_pending_values = values; in flask_security_make_bools()
|
| /xen/docs/misc/ |
| A D | xenstore.txt | 5 (also known as `keys') to values. Clients may read and write values, 10 arbitrary binary data as values, this should generally be avoided. 14 values should normally be 7-bit ASCII text strings containing bytes 19 A separate specification will detail the keys and values which are 35 to store nonempty values at nodes which also have children. 135 Parsing errors and values out of range generally go 136 undetected. The special DOMID_... values (see xen.h) are 151 WRITE creates any missing parent paths, with empty values. 155 it and any missing parents with empty values. If <path> 223 values are not supported. [all …]
|
| A D | xenstore-ring.txt | 35 these values. 77 then the "Connection state" may take the following values: 88 take the following values (new values might be added in future without them 151 prepared to see values not described here, as new error cases might be added
|
| A D | hypfs-paths.pandoc | 25 The second syntax defines a file entry containing values which are 46 * {VALUE, VALUE, ... } -- a list of possible values separated by "," and 65 Possible values would be "No" or a list of "dom0", "domU", and "PCID-on" with 120 params/ directory with hypervisor parameter values
|
| /xen/tools/firmware/vgabios/ |
| A D | vbe_display_api.txt | 53 - Added documentation about panic behaviour / current limits of the data values. 139 Example values: VBE_DISPI_ID0 147 Example values: 320,640,800,1024 155 Example values: 200,400,480,600,768 163 Example values: VBE_DISPI_BPP_8 171 Example values: VBE_DISPI_ENABLED, VBE_DISPI_DISABLED 200 the same as 8 for backward compatibilty. These values are supported: 8, 15,
|
| /xen/stubdom/ |
| A D | vtpm-microsecond-duration.patch | 10 A 4 element array of UINT32 values each denoting the timeout value in 14 A 3 element array of UINT32 values each denoting the duration value in
|
| A D | vtpm_TPM_ChangeAuthAsymFinish.patch | 7 indicate a failure if the values do not match. */
|
| /xen/tools/libs/light/ |
| A D | gentest.py | 23 return random.choice([v.name for v in e.values]) 338 for v in ty.values: 345 for v in ty.values: 356 for v in [v.valuename for v in ty.values] + ["AN INVALID VALUE"]:
|
| A D | idl.py | 171 def __init__(self, typename, values, **kwargs): argument 180 self.values = [] 181 for v in values: 184 self.values.append(EnumerationValue(self, num, name, 187 for v in self.values:
|
| A D | idl.txt | 33 functions. Valid values for this fields are: 118 A class representing an enumeration (named integer values). 124 The namespace in which the values of the Enumeration (see below) reside. 127 The values are available in the list Enumeration.values. Each
|
| /xen/docs/designs/ |
| A D | xenstore-migration.md | 46 | `version` | The version of the specification, defined values: | 454 | `perm` | One of the ASCII values `w`, `r`, `b` or `n` as | 491 | `n-dom-quota` | Number of quota values which apply per | 494 | `n-glob-quota` | Number of quota values which apply globally | 497 | `quota-val` | Quota values, first the ones applying per | 502 | | the same sequence as the `quota-val` values. | 541 | `n-quota` | Number of quota values. | 547 | `quota-val` | Quota values, a value of 0 has the semantics | 551 | | the same sequence as the `quota-val` values. |
|
| /xen/docs/misra/ |
| A D | function-macro-properties.rst | 36 Possible values are: 45 - attribute: attributes a function may have. Possible values are pure, const and noeffect.
|
| /xen/xen/tools/ |
| A D | gen-cpuid.py | 22 self.values = {} # Name => Value mapping 110 state.values[name.lower().replace("_", "-")] = val 465 for name, bit in sorted(state.values.items()): 480 for name, bit in sorted(state.values.items()):
|