Home
last modified time | relevance | path

Searched refs:function (Results 1 – 25 of 110) sorted by relevance

12345

/xen/docs/misc/
A Dkconfig-macro-language.rst81 "user-defined function" in contrast to "built-in function" listed below).
85 function is defined using the = assignment operator. The parameters are
89 internally. (In other words, "variable" is "function with zero argument".)
117 The "info" function takes a single argument and prints it to stdout.
145 Kconfig adopts Make-like macro language, but the function call syntax is
148 A function call in Make looks like this::
152 The function name and the first argument are separated by at least one
156 to make "info" function print " hello", you can write like follows::
172 In Make, a user-defined function is referenced by using a built-in function,
229 substitution phase. You cannot pass symbols to the 'shell' function.
[all …]
A Dlivepatch.pandoc24 function (if needed).
82 old function with the address of the new function.
192 new replacement function which required:
196 new function.
197 * Optionally we can insert in the old function a trampoline jump to an function
457 The type definition of the function are as follow:
473 The type definition of the function are as follow:
964 desired function.
1176 the function itself.
1265 function entries: The target function (+ trailing padding) must be able
[all …]
/xen/tools/xenstore/
A Dtalloc_guide.txt80 The function talloc_size() should be used when you don't have a
163 pointer "ptr". A destructor is a function that is called when the
224 This function does not allocate any memory. It just copies the
445 The talloc_memdup() function is equivalent to:
454 The talloc_strdup() function is equivalent to:
466 The talloc_strndup() function is the talloc equivalent of the C
467 library function strndup()
478 library function vasprintf()
485 library function asprintf()
525 around a single function pointer.
[all …]
/xen/tools/libxl/
A DCODING_STYLE38 bool ok; /* the success return value from a boolean function */
77 cleaning up are declared at the top of the function, and
83 * If the function is to return a libxl error value, `rc' is
87 * There is only one error cleanup path out of the function. It
96 * Function calls which might fail (ie most function calls) are
102 * If a resource is freed in the main body of the function (for
108 function. Not reusing the out path is fine if the duplicated function
131 Such a struct should also come with an _init function which
163 - the callback function pointer(s), which
171 cancel function. It should normally also have an _init function for
[all …]
A Didl.txt39 The name of the C function which will free all dynamically allocated
49 The name of the C function which will deep copy all fields within
68 The name of the C function which will initialist Type.
77 The name of the C function which will generate a YAJL data structure
82 The name of the C function which will parse a libxl JSON structure
91 If it's set then calling this function shall return true if this type
/xen/tools/firmware/vgabios/
A DChangeLog380 - VBE function 0x03 rewritten in assembler
381 - VBE function 0x08 cleaned up
431 - function AH=0x12/BL=0x32 rewritten in assembler
487 - write character function for the LINEAR8 mode
512 - write character function for CGA modes added
548 - function biosfn_get_all_palette_reg() fixed
698 - new function dispi_get_bpp() - function
706 - new function dispi_get_bpp() - function
757 - function write_gfx_char() rewritten
802 - VBE mode search rewritten * improved function
[all …]
A DNotes4 - need to split video init function
9 variables and call function #2 above
A DREADME41 You can then use the "printf" function in the bios.
118 . vgabios function 0x0e (write teletype): linefeed (0x0a) only increments the
133 . write character function for CGA and LINEAR8 modes
149 . fix character height returned by get_font_info function
155 . write character function implemented for graphics modes
168 . clear BL before calling int 0x10 function 0x1103 in vgabios_init_func
180 . Fixed bug in function ah=13
194 . Fixed bug in function ah=13
202 - function ax=1a00, ax=1a01, ah=1b
203 - function ax=1130
/xen/tools/xl/
A DCODING_STYLE29 cleaning up are declared at the top of the function, and
35 * If the function is to return a libxl error value, `rc' is
39 * There is only one error cleanup path out of the function. It
48 * Function calls which might fail (ie most function calls) are
54 * If a resource is freed in the main body of the function (for
60 function.
67 applicable _r function parameter (or equivalent). Do not test `rc' in
127 global variables are a must. To call a global function "foo" is a
131 have descriptive names, as do global functions. If you have a function
135 Encoding the type of a function into the name (so-called Hungarian
[all …]
/xen/tools/misc/
A Dxen-livepatch.c279 int (*function)(xc_interface *xch, char *name, uint32_t timeout, uint32_t flags); member
285 .function = xc_livepatch_apply,
291 .function = xc_livepatch_revert,
297 .function = xc_livepatch_unload,
303 .function = xc_livepatch_replace,
437 rc = action_options[idx].function(xch, name, HYPERVISOR_TIMEOUT_NS, flags); in action_func()
551 int (*function)(int argc, char *argv[]); member
602 ret = main_options[i].function(argc -2, argv + 2); in main()
A Dxen-diag.c59 int (*function)(int argc, char *argv[]); member
99 ret = main_options[i].function(argc - 2, argv + 2); in main()
/xen/tools/libxc/
A Dxc_devicemodel_compat.c46 uint8_t bus, uint8_t device, uint8_t function) in xc_hvm_map_pcidev_to_ioreq_server() argument
50 function); in xc_hvm_map_pcidev_to_ioreq_server()
55 uint8_t bus, uint8_t device, uint8_t function) in xc_hvm_unmap_pcidev_from_ioreq_server() argument
59 device, function); in xc_hvm_unmap_pcidev_from_ioreq_server()
/xen/tools/firmware/rombios/32bit/
A Dpmm.c90 uint16_t function; member
97 uint16_t function; member
102 uint16_t function; member
488 uint16_t function; member
510 switch ( ap->function ) in pmm()
529 PMM_DEBUG("Invalid function:%d\n", ap->function); in pmm()
/xen/xen/xsm/
A Ddummy.c18 #define set_to_dummy_if_null(ops, function) \ argument
20 if ( !ops->function ) \
21 ops->function = xsm_##function; \
/xen/xen/include/xen/
A Dtimer.h32 void (*function)(void *); member
60 void (*function)(void *),
/xen/tools/ocaml/xenstored/
A Dtrie.ml62 let rec aux = function
70 let rec aux = function
104 let rec sub_node tree = function
124 let rec mem tree = function
134 let rec iter_path f tree = function
165 let rec unset tree = function
A Dselect.mli18 the [use_poll] function. *)
25 number set to 1024; not calling this function at all equals to use the
/xen/xen/common/coverage/
A Dgcc_3_4.c130 unsigned int function; member
216 return get_fn_info(iter->info, iter->function); in get_func()
266 iter->function++; in gcov_iter_next()
269 if ( iter->function < iter->info->n_functions ) in gcov_iter_next()
/xen/tools/python/
A Dpylintrc88 # * redefinition of function / method / class
105 # Minimal length for module / class / function / method / argument / variable
115 # Regular expression which should only match correct function names
116 function-rgx=[a-z_][A-Za-z0-9_]*$
133 # List of builtins function names that should not be used, separated by a comma
146 # Maximum number of arguments for function / method
149 # Maximum number of locals for function / method body
152 # Maximum number of return / yield for function / method body
155 # Maximum number of branch for function / method body
158 # Maximum number of statements in function / method body
/xen/xen/arch/arm/platforms/
A Dvexpress.c33 int function, int device) in vexpress_ctrl_start() argument
43 (dcc << DCC_SHIFT) | (function << FUNCTION_SHIFT) | in vexpress_ctrl_start()
/xen/xen/common/libfdt/
A DTODO2 - Graft function
/xen/tools/libs/devicemodel/include/
A Dxendevicemodel.h138 uint16_t segment, uint8_t bus, uint8_t device, uint8_t function);
154 uint16_t segment, uint8_t bus, uint8_t device, uint8_t function);
/xen/tools/libs/devicemodel/
A Dcore.c299 uint16_t segment, uint8_t bus, uint8_t device, uint8_t function) in xendevicemodel_map_pcidev_to_ioreq_server() argument
304 if (device > 0x1f || function > 0x7) { in xendevicemodel_map_pcidev_to_ioreq_server()
324 (uint64_t)function); in xendevicemodel_map_pcidev_to_ioreq_server()
331 uint16_t segment, uint8_t bus, uint8_t device, uint8_t function) in xendevicemodel_unmap_pcidev_from_ioreq_server() argument
336 if (device > 0x1f || function > 0x7) { in xendevicemodel_unmap_pcidev_from_ioreq_server()
356 (uint64_t)function); in xendevicemodel_unmap_pcidev_from_ioreq_server()
/xen/m4/
A Dfeatures.m411 dnl This function should not be called outside of this file
/xen/tools/firmware/rombios/
A D32bitgateway.c79 ; bx: index of function to call
119 ; Marshal arguments and call 32-bit function

Completed in 25 milliseconds

12345