Searched refs:username (Results 1 - 25 of 39) sorted by relevance

12

/haiku-fatelf/src/bin/coreutils/lib/
H A Dmgetgroups.h19 int mgetgroups (const char *username, gid_t gid, gid_t **groups);
20 int xgetgroups (const char *username, gid_t gid, gid_t **groups);
H A Dgetugroups.h18 int getugroups (int maxcount, gid_t *grouplist, char const *username,
H A Dmgetgroups.c60 mgetgroups (char const *username, gid_t gid, gid_t **groups) argument
75 if (username)
90 ng = getgrouplist (username, gid, g, &max_n_groups);
115 /* else no username, so fall through and use getgroups. */
118 max_n_groups = (username
119 ? getugroups (0, NULL, username, gid)
136 if (!username && gid != (gid_t) -1)
142 ng = (username
143 ? getugroups (max_n_groups, g, username, gid)
156 if (!username
200 xgetgroups(char const *username, gid_t gid, gid_t **groups) argument
[all...]
H A Duserspec.c104 char **username, char **groupname)
120 *username = *groupname = NULL;
219 *username = u;
248 char **username, char **groupname)
252 parse_with_separator (spec, colon, uid, gid, username, groupname);
264 && ! parse_with_separator (spec, dot, uid, gid, username, groupname))
283 char *username, *groupname; local
289 e = parse_user_spec (tmp, &uid, &gid, &username, &groupname);
295 NULL_CHECK (username),
102 parse_with_separator(char const *spec, char const *separator, uid_t *uid, gid_t *gid, char **username, char **groupname) argument
247 parse_user_spec(char const *spec, uid_t *uid, gid_t *gid, char **username, char **groupname) argument
H A Dgetugroups.c38 char const *username _GL_UNUSED,
58 getugroups (int maxcount, gid_t *grouplist, char const *username, argument
85 if ( ! STREQ (username, *cp))
/haiku-fatelf/src/bin/coreutils/src/
H A Dgroup-list.c36 print_group_list (const char *username, argument
61 int n_groups = xgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1),
65 if (username)
68 quote (username));
H A Did.c45 static void print_full_info (const char *username);
264 print_full_info (const char *username) argument
299 int n_groups = xgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1),
303 if (username)
306 quote (username));
/haiku-fatelf/src/preferences/dun/
H A DDetailsView.cpp31 username = new BTextControl(texties,"username","User name:",NULL,
33 username->SetAlignment(B_ALIGN_RIGHT,B_ALIGN_LEFT);
34 username->SetDivider(80);
36 AddChild(username);
73 cout << username->Text();
92 username->SetTarget(this);
H A DDetailsView.h33 BTextControl* username; member in class:DetailsView
/haiku-fatelf/headers/os/net/
H A DHttpAuthentication.h42 BHttpAuthentication(const BString& username,
46 void SetUserName(const BString& username);
/haiku-fatelf/src/bin/gdb/readline/
H A Dtilde.c109 the end of a username, instead of just "/". Bash sets this to
219 username. */
307 char *dirname, *expansion, *username; local
333 username = isolate_tilde_prefix (filename, &user_len);
337 expansion = (*tilde_expansion_preexpansion_hook) (username);
341 free (username);
350 user_entry = getpwnam (username);
357 expansion = (*tilde_expansion_failure_hook) (username);
364 free (username);
372 free (username);
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/pap/
H A DProtocol.cpp341 const char *username = Interface().Username(), *password = Interface().Password(); local
343 if(*userLength == strlen(username) && *passwordLength == strlen(password)
344 && !strncmp(peerUsername, username, *userLength)
347 Interface().StateMachine().PeerAuthenticationAccepted(username);
352 Interface().StateMachine().PeerAuthenticationDenied(username);
436 const char *username = Interface().Username(), *password = Interface().Password(); local
438 packet->m_pkthdr.len = packet->m_len = 6 + strlen(username) + strlen(password);
448 data[0] = strlen(username);
449 memcpy(data + 1, username, strlen(username));
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dtilde.c115 the end of a username, instead of just "/". Bash sets this to
225 username. */
346 char *dirname, *expansion, *username; local
372 username = isolate_tilde_prefix (filename, &user_len);
376 expansion = (*tilde_expansion_preexpansion_hook) (username);
380 xfree (username);
390 user_entry = getpwnam (username);
400 expansion = (*tilde_expansion_failure_hook) (username);
417 xfree (username);
/haiku-fatelf/src/bin/bash/lib/tilde/
H A Dtilde.c115 the end of a username, instead of just "/". Bash sets this to
225 username. */
346 char *dirname, *expansion, *username; local
372 username = isolate_tilde_prefix (filename, &user_len);
376 expansion = (*tilde_expansion_preexpansion_hook) (username);
380 xfree (username);
390 user_entry = getpwnam (username);
400 expansion = (*tilde_expansion_failure_hook) (username);
417 xfree (username);
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPInterface.cpp142 //! Sets the username used for authentication.
144 PPPInterface::SetUsername(const char *username) const
146 if (InitCheck() != B_OK || !username)
149 return Control(PPPC_SET_USERNAME, const_cast<char*>(username), strlen(username))
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPRootInboundProtocol.h27 const char* username, const char* password,
H A DIMAPRootInboundProtocol.cpp29 IMAPRootInboundProtocol::Connect(const char* server, const char* username, argument
32 status_t status = IMAPInboundProtocol::Connect(server, username, password,
H A DIMAPFolderConfig.cpp322 BString username; local
323 fSettings.FindString("username", &username);
332 fIMAPFolders.Connect(server, username, password, useSSL);
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libppp/headers/
H A DPPPInterface.h34 bool SetUsername(const char *username) const;
/haiku-fatelf/src/apps/webpositive/
H A DCredentialsStorage.h44 Credentials(const BString& username,
H A DCredentialsStorage.cpp51 Credentials::Credentials(const BString& username, const BString& password) argument
53 fUsername(username),
69 archive->FindString("username", &fUsername);
84 status_t status = archive->AddString("username", fUsername);
/haiku-fatelf/src/kits/network/libnetapi/
H A DHttpAuthentication.cpp30 BHttpAuthentication::BHttpAuthentication(const BString& username, const BString& password) argument
33 fUserName(username),
43 BHttpAuthentication::SetUserName(const BString& username) argument
45 fUserName = username;
197 authorizationString << "Digest " << "username=\"" << fUserName
317 PRINT(("HttpAuth: > username = %s\n", fUserName.String()));
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DIMAPProtocol.h75 const char* username, const char* password,
/haiku-fatelf/src/bin/network/wget/tests/
H A DFTPServer.pm136 if ($conn->{username} eq "anonymous") {
399 my ($conn, $cmd, $username) = @_;
401 print STDERR "username: $username\n" if $log;
402 $conn->{username} = $username;
407 if ($conn->{username} eq "anonymous") {
/haiku-fatelf/src/bin/network/tcpdump/
H A Dtcpdump.c372 droproot(const char *username, const char *chroot_dir) argument
376 if (chroot_dir && !username) {
381 pw = getpwnam(username);
393 username,
402 username);
462 char *username = NULL; local
784 username = strdup(optarg);
827 if (!username)
828 username = WITH_USER;
1003 if (username || chroot_di
[all...]

Completed in 209 milliseconds

12