Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 63) sorted by relevance

123

/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxlu_cfg_y.y42 %type <value> value valuelist values
43 %destructor { xlu__cfg_value_free($$); } value valuelist values
69 | values { $$= $1; }
70 | values ',' nlok { $$= $1; }
72 values: value nlok { $$= xlu__cfg_list_mk(ctx,$1,&@1); }
73 | values ',' nlok value nlok { xlu__cfg_list_append(ctx,$1,$4); $$= $1; }
A Dlibxlu_cfg.c147 free(value->u.list.values); in xlu__cfg_value_free()
247 return list->values[entry]; in xlu_cfg_get_listitem2()
358 return list->values[entry]->u.string; in xlu_cfg_get_listitem()
390 XLU_ConfigValue **values = NULL; in xlu__cfg_list_mk() local
394 values = malloc(sizeof(*values)); in xlu__cfg_list_mk()
395 if (!values) goto xe; in xlu__cfg_list_mk()
396 values[0] = val; in xlu__cfg_list_mk()
403 value->u.list.values = values; in xlu__cfg_list_mk()
412 free(values); in xlu__cfg_list_mk()
437 new_values = realloc(list->u.list.values, in xlu__cfg_list_append()
[all …]
A Dgentest.py21 return random.choice([v.name for v in e.values])
336 for v in ty.values:
343 for v in ty.values:
354 for v in [v.valuename for v in ty.values] + ["AN INVALID VALUE"]:
A Didl.py169 def __init__(self, typename, values, **kwargs): argument
178 self.values = []
179 for v in values:
182 self.values.append(EnumerationValue(self, num, name,
185 for v in self.values:
A Dlibxlu_internal.h31 XLU_ConfigValue **values; member
A Didl.txt33 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-4.10.0-shim-comet/xen/xsm/flask/include/
A Dconditional.h18 int security_get_bools(int *len, char ***names, int **values, size_t *maxstr);
20 int security_set_bools(int len, int *values);
/xen-4.10.0-shim-comet/docs/man/
A Dxenstore.pod.129 List keys, values and permissions.
41 Watch for changes to keys or values.
45 Add or modify keys and values.
A Dxl-disk-configuration.pod.565 =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 Dxenstore-ls.pod.13 xenstore-ls - list Xenstore keys and values
11 List keys, values and permissions of one or more Xenstore I<PATH>s,
A Dxen-vtpm.pod.7145 prevent interference, the TPM Manager and dom0 should use different values for
231 could then extend any values into PCRs, potentially forging its boot
274 The vTPM currently starts up with all PCRs set to their default values (all
317 The possible values for <LOG> are:
353 (PCRs) with PCR values from the hardware TPM. Each pcr specified by
356 Possible values of <PCRSPEC> are:
/xen-4.10.0-shim-comet/xen/common/gcov/
A Dgcc_4_7.c46 gcov_type *values; member
130 memset(ci_ptr->values, 0, sizeof(gcov_type) * ci_ptr->num); in gcov_info_reset()
187 pos += gcov_store_uint64(buffer, pos, ci_ptr->values[cv_idx]); in gcov_info_to_gcda()
A Dgcc_3_4.c61 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-4.10.0-shim-comet/tools/ocaml/xenstored/
A Dtrie.mli19 (** The type of tries. ['a list] is the type of keys, ['b] 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-4.10.0-shim-comet/xen/xsm/flask/
A Dflask_op.c305 int *values; in flask_security_set_bool() local
307 rv = security_get_bools(&num, NULL, &values, NULL); in flask_security_set_bool()
313 xfree(values); in flask_security_set_bool()
317 values[arg->bool_id] = !!(arg->new_value); in flask_security_set_bool()
324 rv = security_set_bools(num, values); in flask_security_set_bool()
325 xfree(values); in flask_security_set_bool()
413 int *values = NULL; in flask_security_make_bools() local
417 ret = security_get_bools(&num, NULL, &values, NULL); in flask_security_make_bools()
422 bool_pending_values = values; in flask_security_make_bools()
/xen-4.10.0-shim-comet/docs/misc/
A Dxenstore.txt5 (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.
90 Except as otherwise noted, reserved values are believed to be sent as
121 Parsing errors and values out of range generally go
122 undetected. The special DOMID_... values (see xen.h) are
128 The following are the actual type values, including the request and
137 WRITE creates any missing parent paths, with empty values.
[all …]
A Dkconfig-language.txt41 values. A config option can be defined multiple times with the same
68 A config option can have any number of default values. If multiple
69 default values are visible, only the first defined one is active.
70 Default values are not limited to the menu entry where they are
124 This allows to limit the range of possible input values for int
183 are simply converted into the respective expression values. All
185 (2) If the values of both symbols are equal, it returns 'y',
187 (3) If the values of both symbols are equal, it returns 'n',
A Defi.markdown39 name enclosed in square brackets, with individual values specified in each
58 The individual values used here are:
86 Other values to specify are:
A Dxenstore-paths.markdown41 values. Typically these integers are contiguous.
67 values it should support Unix glob style matching.
154 maximum. Valid values are "online" and "offline". The guest is expected to react to changes in this…
226 These xenstore values are used to override some of the default string
227 values in the SMBIOS table constructed in hvmloader. See the SMBIOS
232 1 to 99 OEM strings can be set in xenstore using values of the form
445 A toolstack may create these values, but should not sample them unless
510 The values written are primarily for display purposes and must not be used
519 The values written are primarily for display purposes and must not be used
/xen-4.10.0-shim-comet/tools/firmware/vgabios/
A Dvbe_display_api.txt53 - 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-4.10.0-shim-comet/tools/ocaml/libs/xl/
A Dgenwrap.py201 for v in ty.values:
208 for v in ty.values:
299 for e in ty.values:
397 for e in ty.values:
/xen-4.10.0-shim-comet/tools/xenstat/libxenstat/src/
A Dxenstat_qmp.c109 n = YAJL_GET_ARRAY(ret_obj)->values[i]; in qmp_get_block_image()
224 stats_obj = YAJL_GET_ARRAY(ret_obj)->values[i]; in qmp_parse_stats()
/xen-4.10.0-shim-comet/stubdom/
A Dvtpm-deepquote.patch72 + * @sig: [out] The resulting digital signature and PCR values
174 + * The values of the virutal TPM's PCRs are not included in the response.
A Dvtpm-parent-sign-ek.patch69 + * @sig: [out] The resulting digital signature and PCR values
184 + * The values of the virtual TPM's PCRs are not included in the response.
/xen-4.10.0-shim-comet/xen/xsm/flask/ss/
A Dservices.c1781 int security_get_bools(int *len, char ***names, int **values, size_t *maxstr) in security_get_bools() argument
1788 *values = NULL; in security_get_bools()
1806 *values = xmalloc_array(int, *len); in security_get_bools()
1807 if ( !*values ) in security_get_bools()
1814 (*values)[i] = policydb.bool_val_to_struct[i]->state; in security_get_bools()
1835 xfree(*values); in security_get_bools()
1840 int security_set_bools(int len, int *values) in security_set_bools() argument
1858 if ( values[i] ) in security_set_bools()

Completed in 39 milliseconds

123