Searched refs:username (Results 1 – 10 of 10) sorted by relevance
/libuv/test/ |
H A D | test-get-passwd.c | 43 len = strlen(pwd.username); in TEST_IMPL() 85 ASSERT_NULL(pwd.username); in TEST_IMPL() 92 ASSERT_NULL(pwd.username); in TEST_IMPL() 128 ASSERT_STR_EQ(pwd.username, pwd2.username); in TEST_IMPL() 136 len = strlen(pwd2.username); in TEST_IMPL() 140 ASSERT_STR_EQ(pwd2.username, "qsecofr"); in TEST_IMPL() 142 ASSERT_STR_EQ(pwd2.username, "root"); in TEST_IMPL()
|
H A D | test-platform-output.c | 215 printf(" username: %s\n", pwd.username); in TEST_IMPL()
|
H A D | test-fs.c | 4457 pwd.username); in TEST_IMPL() 4478 pwd.username); in TEST_IMPL() 4482 r = call_icacls("icacls test_file_icacls /grant \"%s\":RX", pwd.username); in TEST_IMPL() 4503 pwd.username); in TEST_IMPL()
|
/libuv/src/win/ |
H A D | util.c | 1091 wchar_t username[UNLEN + 1]; in uv__getpwuid_r() local 1127 bufsize = ARRAY_SIZE(username); in uv__getpwuid_r() 1128 if (!GetUserNameW(username, &bufsize)) { in uv__getpwuid_r() 1146 pwd->username = NULL; in uv__getpwuid_r() 1147 r = uv__convert_utf16_to_utf8(username, -1, &pwd->username); in uv__getpwuid_r()
|
/libuv/ |
H A D | CONTRIBUTING.md | 13 $ git clone https://github.com/username/libuv.git 158 Go to https://github.com/username/libuv and select your feature branch. Click
|
/libuv/src/unix/ |
H A D | core.c | 1256 pwd->username = uv__malloc(name_size + homedir_size + shell_size); in uv__getpwuid_r() 1258 if (pwd->username == NULL) { in uv__getpwuid_r() 1264 memcpy(pwd->username, pw.pw_name, name_size); in uv__getpwuid_r() 1267 pwd->homedir = pwd->username + name_size; in uv__getpwuid_r()
|
/libuv/src/ |
H A D | uv-common.c | 140 uv__free(pwd->username); in uv_os_free_passwd() 144 pwd->username = NULL; in uv_os_free_passwd()
|
/libuv/docs/src/ |
H A D | misc.rst | 195 char* username; 572 the real uid). The populated data includes the username, euid, gid, shell, 584 The populated data includes the username, euid, gid, shell,
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 151 char *username;
|
/libuv/include/ |
H A D | uv.h | 1214 char* username; member
|
Completed in 35 milliseconds