Lines Matching refs:name
60 /* Max user name length, from iphlpapi.h */
66 /* A RtlGenRandom() by any other name... */
259 /* Construct the environment variable name and set it. */
755 * allocating space for the name for this interface. */
760 /* Compute the size of the interface name. */
799 /* Convert the interface name to UTF8. */
827 uv_address->name = name_buf;
1210 envitem->name = buf;
1229 uv__free(envitem->name);
1239 int uv_os_getenv(const char* name, char* buffer, size_t* size) {
1247 if (name == NULL || buffer == NULL || size == NULL || *size == 0)
1250 r = uv__convert_utf8_to_utf16(name, &name_w);
1305 int uv_os_setenv(const char* name, const char* value) {
1310 if (name == NULL || value == NULL)
1313 r = uv__convert_utf8_to_utf16(name, &name_w);
1336 int uv_os_unsetenv(const char* name) {
1340 if (name == NULL)
1343 r = uv__convert_utf8_to_utf16(name, &name_w);