Searched defs:name (Results 151 - 175 of 1199) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgetnetbynis.c56 _getnetbynis(const char *name, char *map, int af) argument
79 if (yp_match(domain, map, name, strlen(name), &result, &resultlen))
123 _getnetbynisname(const char *name) argument
125 return _getnetbynis(name, "networks.byname", AF_INET);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Dsetlocale.c27 * 3. Neither the name of the University nor the names of its contributors
297 char name[PATH_MAX]; local
314 (void)snprintf(name, sizeof(name), "%s/%s/%s",
328 if (!__loadctype(name))
339 (void)snprintf(name, sizeof(name), "%s/%s",
344 if (stat(name, &st) < 0)
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DEnvirons.c165 environment, for a string that matches the string pointed to by name. The
172 call to the getenv function. If the specified name cannot be
175 char *getenv(const char *name) argument
180 (void)AsciiStrToUnicodeStr( name, gMD->UString);
193 @param name Address of a zero terminated name string
202 EINVAL - name is NULL or points to a zero length string
203 EALREADY - name already set and rewrite set to FALSE
211 register const char * name,
231 if (( NULL != name )
210 setenv( register const char * name, register const char * value, int rewrite ) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dnetif.c19 * 3. The name of the author may not be used to endorse or promote products
100 netif->name[0], netif->name[1]));
151 netif_find(char *name) argument
156 if (name == NULL) {
160 num = name[2] - '0';
164 name[0] == netif->name[0] &&
165 name[1] == netif->name[
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dzone.h36 const char *name; member in struct:uma_zone
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dgdbudp.c208 struct gdb_transport *gdbudp_configure ( const char *name, struct sockaddr_in *addr ) { argument
214 netdev = find_netdev ( name );
255 .name = "udp",
H A Dmenu.c39 * @v name Menu name, or NULL
43 struct menu * create_menu ( const char *name, const char *title ) { argument
51 /* Destroy any existing menu of this name */
52 menu = find_menu ( name );
61 name_len = ( name ? ( strlen ( name ) + 1 /* NUL */ ) : 0 );
71 if ( name ) {
72 strcpy ( name_copy, name );
73 menu->name
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DHostDnsServiceLinux.cpp82 char name[NAME_MAX]; member in struct:InotifyEventWithName
180 if (g_ResolvConf == combo.e.name)
197 if (g_ResolvConf == combo.e.name)
/vbox/src/VBox/Main/src-server/win/
H A Dsvchlp.h60 const com::Utf8Str &name() const { return mName; } function in class:SVCHlpClient
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/tools/
H A DVBoxNetAdpInstall.cpp58 BSTR name, errMsg; local
60 hr = VBoxNetCfgWinCreateHostOnlyNetworkInterface (MpInf, true, &guid, &name, &errMsg);
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dnvo_cmd.c57 const char *name; local
66 /* Parse setting name */
67 name = argv[optind];
70 if ( ( rc = fetchf_named_setting ( name, name_buf, sizeof ( name_buf ),
74 name, strerror ( rc ) );
113 const char *name; local
121 /* Parse setting name */
122 name = argv[optind];
129 if ( ( rc = storef_named_setting ( name, value ) ) != 0 ) {
131 argv[0], name, strerro
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Disa.h36 const char *name; member in struct:isa_driver
H A Dlinux.h48 char *name; member in struct:linux_driver
91 /** Driver name. Compared to the linux drivers' names */
102 char *name; member in struct:linux_setting
115 * appropriate driver to handle each request by matching the driver's name.
127 * Look for the last occurrence of a setting with the specified name
129 * @v name Name of the setting to look for
132 struct linux_setting *linux_find_setting(char *name, struct list_head *settings);
H A Dmca.h32 const char *name; member in struct:mca_device_id
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Diccfix.c45 char *name = ( strings + shdr->sh_name ); local
49 if ( ( strncmp ( name, ".tbl.", 5 ) == 0 ) &&
54 name, align, new_align );
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DVBoxGlobalSettings.cpp114 const char *name; member in struct:__anon16055
193 QVariant value = property (gPropertyMap [i].name);
203 * Returns a value of the property with the given public name
212 QVariant value = property (gPropertyMap [i].name);
226 * Sets a value of a property with the given public name.
229 * This method (as opposed to #setProperty (const char *name, const QVariant& value))
275 QVariant oldVal = property (gPropertyMap [index].name);
281 bool ok = setProperty (gPropertyMap [index].name, value);
291 gPropertyMap [index].name);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSFDetails.cpp87 QString UIMachineSettingsSFDetails::name() const function in class:UIMachineSettingsSFDetails
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUINameAndSystemEditor.cpp133 QString UINameAndSystemEditor::name() const function in class:UINameAndSystemEditor
165 m_pNameEditor->setWhatsThis(tr("Holds the name of the virtual machine."));
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/
H A Dspuload.c48 static char *__findDLL( char *name, char *dir ) argument
58 sprintf ( path, "%s/%s%sspu%s", szSharedLibPath, DLL_PREFIX, name, DLL_SUFFIX );
62 snprintf ( path, sizeof(path), "%s%sspu%s", DLL_PREFIX, name, DLL_SUFFIX );
64 sprintf ( path, "%s%sspu%s", DLL_PREFIX, name, DLL_SUFFIX );
70 snprintf ( path, sizeof(path), "%s/%s%sspu%s", dir, DLL_PREFIX, name, DLL_SUFFIX );
72 sprintf ( path, "%s/%s%sspu%s", dir, DLL_PREFIX, name, DLL_SUFFIX );
82 SPU * crSPULoad( SPU *child, int id, char *name, char *dir, void *server ) argument
87 CRASSERT( name != NULL );
96 path = __findDLL( name, dir );
106 SPU_ENTRY_POINT_NAME, name );
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/linux/
H A Dlinux.c57 if ((rc = strcmp(driver->name, request->driver)) == 0)
67 printf("Driver '%s' cannot handle any more devices\n", driver->name);
78 device->dev.driver_name = driver->name;
114 .dev = { .name = "linux" },
118 struct linux_setting *linux_find_setting(char *name, struct list_head *settings) argument
123 /* Find the last occurrence of a setting with the specified name */
125 if (strcmp(setting->name, name) == 0) {
143 struct setting *s = find_setting(setting->name);
145 rc = storef_setting(settings_block, find_setting(setting->name), settin
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_hash.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
97 ctf_hash_insert(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) argument
99 ctf_strs_t *ctsp = &fp->ctf_str[CTF_NAME_STID(name)];
100 const char *str = ctsp->cts_strs + CTF_NAME_OFFSET(name);
113 if (ctsp->cts_len <= CTF_NAME_OFFSET(name))
119 hep->h_name = name;
134 ctf_hash_define(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) argument
136 const char *str = ctf_strptr(fp, name);
140 return (ctf_hash_insert(hp, fp, type, name));
H A Dctf_util.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
97 * Convert an encoded CTF string name into a pointer to a C string by looking
101 ctf_strraw(ctf_file_t *fp, uint_t name) argument
103 ctf_strs_t *ctsp = &fp->ctf_str[CTF_NAME_STID(name)];
105 if (ctsp->cts_strs != NULL && CTF_NAME_OFFSET(name) < ctsp->cts_len)
106 return (ctsp->cts_strs + CTF_NAME_OFFSET(name));
113 ctf_strptr(ctf_file_t *fp, uint_t name) argument
115 const char *s = ctf_strraw(fp, name);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_buf.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
53 dt_buf_create(dtrace_hdl_t *dtp, dt_buf_t *bp, const char *name, size_t len) argument
67 bp->dbu_name = name;
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageHostonly.cpp53 // Bstr name(a->argv[iStart]);
68 Bstr name; local
69 CHECK_ERROR(hif, COMGETTER(Name) (name.asOutParam()));
71 RTPrintf("Interface '%ls' was successfully created\n", name.raw());
85 Bstr name(a->argv[iStart]);
92 CHECK_ERROR_RET(host, FindHostNetworkInterfaceByName(name.raw(), hif.asOutParam()), 1);
130 Bstr name(a->argv[iStart]);
217 CHECK_ERROR(host, FindHostNetworkInterfaceByName(name.raw(),
/vbox/src/VBox/Main/webservice/samples/java/jax-ws/
H A Dclienttest.java57 String name; field in class:clienttest.Desktop
62 name = "Mach"+n;
67 return name;
186 System.out.println("name: "+names.value.get(i));

Completed in 136 milliseconds

1234567891011>>