Searched refs:setting (Results 1 - 25 of 43) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dsettings.h21 /** A setting */
22 struct setting { struct
25 * This is the human-readable name for the setting.
32 * This identifies the type of setting (e.g. string, IPv4
38 * The setting tag is a numerical description of the setting
44 * numerical settings. For example, the setting name "60"
51 * fetch a generic numerical setting, we need to ensure that
57 * This potential problem is resolved by allowing the setting
64 /** Configuration setting tabl
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dnetdev_settings.c37 struct setting mac_setting __setting ( SETTING_NETDEV ) = {
43 struct setting busid_setting __setting ( SETTING_NETDEV ) = {
51 * Check applicability of network device setting
54 * @v setting Setting
58 struct setting *setting ) {
60 return ( IS_NETDEV_SETTING_TAG ( setting->tag ) ||
61 dhcpopt_applies ( setting->tag ) );
65 * Store value of network device setting
68 * @v setting Settin
73 netdev_store( struct settings *settings, struct setting *setting, const void *data, size_t len ) argument
99 netdev_fetch( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
[all...]
H A Ddhcppkt.c138 * Check applicability of DHCP setting
151 * Store value of DHCP packet setting
155 * @v data Setting data, or NULL to clear setting
156 * @v len Length of setting data
182 * Fetch value of DHCP packet setting
186 * @v data Buffer to fill with setting data
188 * @ret len Length of setting data, or negative error
221 * Check applicability of DHCP setting
224 * @v setting Setting
228 struct setting *settin
244 dhcppkt_settings_store( struct settings *settings, struct setting *setting, const void *data, size_t len ) argument
262 dhcppkt_settings_fetch( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
[all...]
H A Dfakedhcp.c42 * @v encapsulator Encapsulating setting tag number, or zero
48 struct setting setting = { .name = "" }; local
66 /* Copy setting, if present */
67 setting.tag = tag;
68 len = fetch_setting_len ( source, &setting );
74 check_len = fetch_setting ( source, &setting,
/vbox/src/VBox/Devices/PC/ipxe/src/hci/
H A Dlinux_args.c61 struct linux_setting *setting; local
73 setting = malloc(sizeof(*setting));
75 if (! setting)
78 setting->name = name;
79 setting->value = value;
80 setting->applied = 0;
81 list_add(&setting->list, list);
167 struct linux_setting *setting; local
172 list_for_each_entry_safe(setting, stm
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/linux/
H A Dlinux.c120 struct linux_setting *setting; local
123 /* Find the last occurrence of a setting with the specified name */
124 list_for_each_entry(setting, settings, list) {
125 if (strcmp(setting->name, name) == 0) {
126 result = setting;
135 struct linux_setting *setting; local
138 list_for_each_entry(setting, new_settings, list) {
140 if (setting->applied)
143 struct setting *s = find_setting(setting
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dsettings.c50 * A generic setting
57 struct setting setting; member in struct:generic_setting
58 /** Size of setting name */
60 /** Size of setting data */
65 * Get generic setting name
67 * @v generic Generic setting
68 * @ret name Generic setting name
75 * Get generic setting data
77 * @v generic Generic setting
113 generic_settings_store( struct settings *settings, struct setting *setting, const void *data, size_t len ) argument
165 generic_settings_fetch( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
539 store_setting( struct settings *settings, struct setting *setting, const void *data, size_t len ) argument
591 fetch_setting_and_origin( struct settings *settings, struct setting *setting, struct settings **origin, void *data, size_t len ) argument
642 fetch_setting( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
695 fetch_setting_copy( struct settings *settings, struct setting *setting, void **data ) argument
732 fetch_string_setting( struct settings *settings, struct setting *setting, char *data, size_t len ) argument
757 fetch_string_setting_copy( struct settings *settings, struct setting *setting, char **data ) argument
792 fetch_ipv4_array_setting( struct settings *settings, struct setting *setting, struct in_addr *inp, unsigned int count ) argument
814 fetch_ipv4_setting( struct settings *settings, struct setting *setting, struct in_addr *inp ) argument
862 fetch_int_setting( struct settings *settings, struct setting *setting, long *value ) argument
888 fetch_uint_setting( struct settings *settings, struct setting *setting, unsigned long *value ) argument
943 fetch_uuid_setting( struct settings *settings, struct setting *setting, union uuid *uuid ) argument
1004 fetchf_setting( struct settings *settings, struct setting *setting, char *buf, size_t len ) argument
1038 storef_setting( struct settings *settings, struct setting *setting, const char *value ) argument
1079 struct setting *setting; local
1144 parse_setting_name( const char *name, struct settings * ( * get_child ) ( struct settings *, const char * ), struct settings **settings, struct setting *setting, char *tmp_name ) argument
1215 setting_name( struct settings *settings, struct setting *setting, char *buf, size_t len ) argument
1236 struct setting setting; local
1266 struct setting setting; local
[all...]
H A Dnvo.c188 * Check applicability of NVO setting
191 * @v setting Setting
195 struct setting *setting ) {
197 return dhcpopt_applies ( setting->tag );
201 * Store value of NVO setting
204 * @v setting Setting to store
205 * @v data Setting data, or NULL to clear setting
206 * @v len Length of setting data
209 static int nvo_store ( struct settings *settings, struct setting *settin argument
242 nvo_fetch( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
[all...]
H A Dmain.c32 /** The "scriptlet" setting */
33 struct setting scriptlet_setting __setting ( SETTING_MISC ) = {
/vbox/src/VBox/Devices/PC/ipxe/src/interface/smbios/
H A Dsmbios_settings.c35 * @ret tag SMBIOS setting tag
45 * @ret tag SMBIOS setting tag
59 * @ret tag SMBIOS setting tag
67 * Check applicability of SMBIOS setting
70 * @v setting Setting
74 struct setting *setting ) {
78 tag_magic = ( setting->tag >> 24 );
83 * Fetch value of SMBIOS setting
86 * @v setting Settin
91 smbios_fetch( struct settings *settings __unused, struct setting *setting, void *data, size_t len ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dsettings_test.c41 * @v setting Setting
45 #define storef_ok( settings, setting, formatted, raw_array ) do { \
50 ok ( storef_setting ( settings, setting, formatted ) == 0 ); \
51 len = fetch_setting ( settings, setting, actual, \
54 (setting)->type->name, formatted ); \
64 * @v setting Setting
68 #define fetchf_ok( settings, setting, raw_array, formatted ) do { \
73 ok ( store_setting ( settings, setting, raw, \
75 len = fetchf_setting ( settings, setting, actual, \
78 (setting)
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/vmware/
H A Dguestinfo.c41 * Fetch value of typed GuestInfo setting
44 * @v setting Setting to fetch
46 * @v data Buffer to fill with setting data
49 * @ret len Length of setting data, or negative error
52 struct setting *setting,
58 strlen ( setting->name ) + 1 /* "." */ +
60 struct setting *named_setting;
69 parent_name, ( parent_name[0] ? "." : "" ), setting->name,
84 named_setting = find_setting ( setting
51 guestinfo_fetch_type( struct settings *settings, struct setting *setting, struct setting_type *type, void *data, size_t len, int *found ) argument
141 guestinfo_fetch( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/hci/tui/
H A Dsettings_ui.c55 /** Layout of text within a setting widget */
66 /** A setting row widget */
73 /** Configuration setting
77 struct setting *setting; member in struct:setting_row_widget
82 /** Edit box widget used for editing setting */
88 /** Buffer for setting's value */
107 * Select a setting row
110 * @v index Index of setting row
117 struct setting *settin local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dmenu_cmd.c219 "[--timeout <timeout>] [--keep] <setting>" );
232 const char *setting; local
239 /* Parse setting name */
240 setting = argv[optind];
250 /* Store setting */
251 if ( ( rc = storef_named_setting ( setting, item->label ) ) != 0 ) {
253 setting, strerror ( rc ) );
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dclientcert.c93 /** Client certificate setting */
94 static struct setting cert_setting __setting ( SETTING_CRYPTO ) = {
101 /** Client private key setting */
102 static struct setting key_setting __setting ( SETTING_CRYPTO ) = {
H A Drootcert.c59 /** Root certificate fingerprint setting */
60 static struct setting trust_setting __setting ( SETTING_CRYPTO ) = {
83 * using the "trust" setting, but only at the point of iPXE
100 /* Fetch copy of "trust" setting, if it exists. This
116 /* Use certificates from "trust" setting, if present */
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/block/
H A Dibft.c102 * Fill in an IP address within iBFT from configuration setting
105 * @v setting Configuration setting
109 struct setting *setting,
114 fetch_ipv4_array_setting ( NULL, setting, in, count );
176 * Fill in a string field within iBFT from configuration setting
180 * @v setting Configuration setting
185 struct setting *settin
108 ibft_set_ipaddr_setting( struct ibft_ipaddr *ipaddr, struct setting *setting, unsigned int count ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dautoboot.c105 /** The "keep-san" setting */
106 struct setting keep_san_setting __setting ( SETTING_SANBOOT_EXTRA ) = {
113 /** The "skip-san-boot" setting */
114 struct setting skip_san_boot_setting __setting ( SETTING_SANBOOT_EXTRA ) = {
251 /* Fetch next-server setting */
256 /* Fetch filename setting */
262 /* Expand filename setting */
275 * Fetch root-path setting into a URI
285 /* Fetch root-path setting */
291 /* Expand filename setting */
[all...]
H A Dpxemenu.c87 struct setting pxe_boot_menu_prompt_setting =
89 struct setting pxe_boot_menu_setting =
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/
H A Dphantom.c1604 * Store Phantom CLP setting
1608 * @v setting Setting number
1614 unsigned int setting, const void *data,
1616 unsigned int opcode = setting;
1629 * Fetch Phantom CLP setting
1633 * @v setting Setting number
1636 * @ret len Length of setting, or negative error
1639 unsigned int setting, void *data, size_t len ) {
1640 unsigned int opcode = ( setting + 1 );
1658 /** A Phantom CLP setting */
1613 phantom_clp_store( struct phantom_nic *phantom, unsigned int port, unsigned int setting, const void *data, size_t len ) argument
1638 phantom_clp_fetch( struct phantom_nic *phantom, unsigned int port, unsigned int setting, void *data, size_t len ) argument
1661 struct setting *setting; member in struct:phantom_clp_setting
1727 phantom_store_setting( struct settings *settings, struct setting *setting, const void *data, size_t len ) argument
1759 phantom_fetch_setting( struct settings *settings, struct setting *setting, void *data, size_t len ) argument
[all...]
/vbox/src/VBox/Devices/USB/vrdp/
H A DUSBProxyDevice-vrdp.cpp157 static DECLCALLBACK(int) usbProxyVrdpSetInterface(PUSBPROXYDEV pProxyDev, int ifnum, int setting) argument
159 LogFlow(("usbProxyVrdpSetInterface: pProxyDev=%p ifnum=%#x setting=%#x\n", pProxyDev, ifnum, setting));
163 int rc = pDevVrdp->pCallback->pfnInterfaceSetting (pDevVrdp->pDevice, (uint8_t)ifnum, (uint8_t)setting);
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/
H A Dsyslog.c153 /** Syslog server setting */
154 struct setting syslog_setting __setting ( SETTING_MISC ) = {
/vbox/src/VBox/Installer/linux/debian/
H A Dpreinst.in80 Removing of these modules denied by debconf setting
/vbox/debian/
H A Dpreinst.in80 Removing of these modules denied by debconf setting
/vbox/src/VBox/RDP/client-1.8.3/vrdp/
H A Drdpusb.c148 static inline int op_usbproxy_back_interface_setting(PUSBPROXYDEV pDev, int ifnum, int setting) argument
150 return g_USBProxyDeviceHost.pfnSetInterface (pDev, ifnum, setting);
656 uint8 setting; local
668 in_uint8(s, setting);
670 rc = op_usbproxy_back_interface_setting(proxy, ifnum, setting);

Completed in 652 milliseconds

12