Searched defs:name (Results 1 - 25 of 1199) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgethostname.c22 * 4. Neither the name of Intel Corporation or its contributors may be used to
60 char *name,
71 name - Pointer to storage for hostname.
72 namelen - Length of name
85 *name = 0;
87 strncpy (name, pHost, namelen);
88 name[namelen-1] = 0;
59 gethostname( char *name, size_t namelen ) argument
H A Dsethostname.c22 * 4. Neither the name of Intel Corporation or its contributors may be used to
63 const char * name,
74 name - Pointer to hostname.
75 namelen - Length of name
87 // Allocate a new buffer for name since the input value
97 // Create a zero terminated string for name
99 memcpy ( pName, name, namelen );
62 sethostname( const char * name, size_t namelen ) argument
H A Dgetprotoname.c17 * 4. Neither the name of the University nor the names of its contributors
44 getprotobyname(register const char *name) argument
51 if (strcmp(p->p_name, name) == 0)
54 if (strcmp(*cp, name) == 0)
H A Dbind.c19 Bind a name to a socket.
21 The bind routine connects a name (network address) to a socket on the local machine.
29 @param[in] name Address of a sockaddr structure that contains the
48 IN const struct sockaddr * name,
65 name,
46 bind( IN int s, IN const struct sockaddr * name, IN socklen_t namelen ) argument
H A Dgetservbyname.c17 * 4. Neither the name of the University nor the names of its contributors
43 getservbyname(IN const char *name, IN const char *proto) argument
52 ___getservbyname_yp = (char *)name;
58 if (strcmp(name, p->s_name) == 0)
61 if (strcmp(name, *cp) == 0)
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_currentheader.py26 name = k.lower(); variable
38 print "} GL%s_p;\n" % name
42 name = k.lower() variable
44 print "\tGL%s_p %s;" % (name,field)
H A Dpack_current.py40 name = '%s%s' % (k[:1].lower(),k[1:]) variable
47 ptr = "%s->%s%d" % (name, type, size )
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsStaticComponent.h42 const char *name; member in struct:nsStaticModuleInfo
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_netserver.h19 char *name; member in struct:__anon16106
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dextension.h21 Except as contained in this notice, the name of The Open Group shall not be
33 supporting documentation, and that the name of Digital not be
68 * Except as contained in this notice, the name of the copyright holder(s)
85 const char *name; member in struct:__anon6770
91 extern _X_EXPORT Bool EnableDisableExtension(const char *name, Bool enable);
93 extern _X_EXPORT void EnableDisableExtensionError(const char *name,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dextension.h21 Except as contained in this notice, the name of The Open Group shall not be
33 supporting documentation, and that the name of Digital not be
68 * Except as contained in this notice, the name of the copyright holder(s)
85 const char *name; member in struct:__anon7091
91 extern _X_EXPORT Bool EnableDisableExtension(const char *name, Bool enable);
93 extern _X_EXPORT void EnableDisableExtensionError(const char *name,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dextension.h21 Except as contained in this notice, the name of The Open Group shall not be
33 supporting documentation, and that the name of Digital not be
68 * Except as contained in this notice, the name of the copyright holder(s)
85 const char *name; member in struct:__anon5862
91 extern _X_EXPORT Bool EnableDisableExtension(const char *name, Bool enable);
93 extern _X_EXPORT void EnableDisableExtensionError(const char *name,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dextension.h21 Except as contained in this notice, the name of The Open Group shall not be
33 supporting documentation, and that the name of Digital not be
68 * Except as contained in this notice, the name of the copyright holder(s)
85 const char *name; member in struct:__anon6169
91 extern _X_EXPORT Bool EnableDisableExtension(const char *name, Bool enable);
93 extern _X_EXPORT void EnableDisableExtensionError(const char *name,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dextension.h21 Except as contained in this notice, the name of The Open Group shall not be
33 supporting documentation, and that the name of Digital not be
68 * Except as contained in this notice, the name of the copyright holder(s)
85 const char *name; member in struct:__anon6472
91 extern _X_EXPORT Bool EnableDisableExtension(const char *name, Bool enable);
93 extern _X_EXPORT void EnableDisableExtensionError(const char *name,
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dcommand.h11 const char *name; member in struct:command
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java17 * information: Portions Copyright [yyyy] [name of copyright owner]
40 getIntegerProperty(String name) argument
43 String property = System.getProperty(name);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DDiPrint.h51 char *name; member in struct:_diListEntry
61 char *name,
H A Dspooler.h61 const char *name; member in struct:__anon4637
67 extern XpSpoolerTypePtr XpSpoolerNameToXpSpoolerType(char *name);
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dgetprocaddress.py27 const char *name;
47 name = "gl" + func_name variable
51 print '\t{ "%s", (CR_PROC) %s },' % (name, address)
72 CR_PROC CR_APIENTRY crGetProcAddress( const char *name )
77 for (i = 0; functions[i].name; i++) {
78 if (crStrcmp(name, functions[i].name) == 0) {
84 #define GLXAPI_ENTRY(Func) if (!crStrcmp(name, "glX"#Func)) return (CR_PROC) &VBOXGLXENTRYTAG(glX##Func);
89 if (!crStrcmp( name, "glXBindTexImageEXT" )) return (CR_PROC) VBOXGLXTAG(glXBindTexImageEXT);
90 if (!crStrcmp( name, "glXReleaseTexImageEX
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DDiPrint.h51 char *name; member in struct:_diListEntry
61 char *name,
H A Dspooler.h61 const char *name; member in struct:__anon4204
67 extern XpSpoolerTypePtr XpSpoolerNameToXpSpoolerType(char *name);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyEfiCompressor/
H A Dsetup.py26 name="EfiCompressor", variable
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyUtility/
H A Dsetup.py26 name="PyUtility", variable
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Dopendir.c24 3. Neither the name of the University nor the names of its contributors
66 opendir(const char *name) argument
68 _DIAGASSERT(name != NULL);
70 return (__opendir2(name, DTF_HIDEW|DTF_NODUP));
74 __opendir2(const char *name, int flags) argument
82 _DIAGASSERT(name != NULL);
84 if ((fd = open(name, O_RDONLY | O_NONBLOCK, 0)) == -1 ||
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/
H A Defi_driver.h19 const char *name; member in struct:efi_driver
20 /** EFI name */
24 /** EFI component name protocol */
30 * @v name Driver name
36 .name = _name, \

Completed in 114 milliseconds

1234567891011>>