Searched defs:account (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DNetrc.pm111 elsif($tok =~ /^(login|password|account)$/)
174 sub account subroutine
178 exists $me->{account}
179 ? $me->{account}
195 ($me->login, $me->password, $me->account);
212 ($login, $password, $account) = $mach->lpa;
264 =item account string
266 Supply an additional account password. If this token is present,
268 if the remote server requires an additional account password.
311 =item account ()
[all...]
H A DFTP.pm194 # string returned. To account for this we allow an optional extra
331 sub account subroutine
333 @_ == 2 or croak 'usage: $ftp->account( ACCT )';
1712 Reinitialize the connection, flushing all I/O and account information.
/osnet-11/usr/src/lib/libntsvcs/common/
H A Dlsalib.c50 * Lookup the given account and returns the account information
58 * If it's established the given account is well know or local
62 * If the name is a domain account, it may refer to a user, group or
63 * alias. If it is a local account, its type should be specified
64 * in the sid_type parameter. In case the account type is unknown
67 * account argument could be either [domain\]name or [domain/]name.
72 * NT_STATUS_NONE_MAPPED Couldn't translate the account
79 lsa_lookup_name(char *account, uint16_t type, smb_account_t *info) argument
87 (void) strlcpy(nambuf, account, MAXNAMELE
[all...]
H A Dsamr_clnt.c680 * Upon a successful lookup the information is returned in the account
687 smb_account_t *account)
695 name == NULL || account == NULL) {
699 bzero(account, sizeof (smb_account_t));
729 account->a_type = arg.rid_types.rid_type[0];
730 account->a_rid = arg.rids.rid[0];
987 * The trust account value used here should probably
988 * match the one used to create the trust account.
686 samr_lookup_domain_names(mlsvc_handle_t *domain_handle, char *name, smb_account_t *account) argument
H A Dlsar_clnt.c70 smb_account_t *account);
210 * Obtain an LSA account handle. The lsa_handle must be a valid handle
751 * Lookup a sid and obtain the domain sid and account name.
755 lsar_lookup_sids(mlsvc_handle_t *lsa_handle, void *key, smb_account_t *account) argument
761 if (lsa_handle == NULL || sid == NULL || account == NULL)
764 bzero(account, sizeof (smb_account_t));
771 account);
774 account);
777 if (!smb_account_validate(account)) {
778 smb_account_free(account);
792 lsar_lookup_sids1(mlsvc_handle_t *lsa_handle, lsa_sid_t *sid, smb_account_t *account) argument
852 lsar_lookup_sids2(mlsvc_handle_t *lsa_handle, lsa_sid_t *sid, smb_account_t *account) argument
920 lsar_lookup_sids3(mlsvc_handle_t *lsa_handle, lsa_sid_t *sid, smb_account_t *account) argument
1159 lsar_enum_privs_account(mlsvc_handle_t *account_handle, smb_account_t *account) argument
[all...]
H A Dlsar_svc.c321 * This is a request to open an account handle.
352 * This is the server side function for handling requests for account
434 * This is the server side function for handling requests for account
512 * Return the account name and NetBIOS domain name for the user making
564 * queries. Currently, we only support primary domain and account
666 * Service account domain policy queries. We return our local domain
709 smb_account_t account; local
728 status = lsa_lookup_name(accname, SidTypeUnknown, &account);
738 rids[0].sid_name_use = account.a_type;
739 rids[0].rid = account
797 smb_account_t account; local
884 lsarpc_s_UpdateDomainTable(ndr_xa_t *mxa, smb_account_t *account, struct mslsa_domain_table *domain_table, DWORD *domain_idx) argument
949 smb_account_t account; local
1057 smb_account_t account; local
1142 smb_account_t account; local
[all...]
H A Dsamr_svc.c565 smb_account_t account; local
610 SidTypeUnknown, &account);
613 param->rids.rid[0] = account.a_rid;
615 param->rid_types.rid_type[0] = account.a_type;
617 smb_account_free(&account);
724 smb_account_t account; local
758 if (smb_sam_lookup_sid(sid, &account) != NT_STATUS_SUCCESS) {
777 (void) NDR_MSTRING(mxa, account.a_name,
786 smb_account_free(&account);
1592 * Retrieves information about the specified local group account
[all...]
H A Dsrvsvc_svc.c1508 char account[MAXNAMELEN]; local
1528 (void) snprintf(account, MAXNAMELEN, "%s\\%s",
1544 info1->sesi1_uname = NDR_STRDUP(mxa, account);
1559 info2->sesi2_uname = NDR_STRDUP(mxa, account);
1575 info10->sesi10_uname = NDR_STRDUP(mxa, account);
1588 info502->sesi502_uname = NDR_STRDUP(mxa, account);
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_sam.c64 * Looks up the given name in local account databases:
69 * If the account is found, its information is populated
74 * The type of account is specified by 'type', which can be user,
89 * NT_STATUS_NOT_FOUND This is not a local account
90 * NT_STATUS_NONE_MAPPED It's a local account but cannot be
96 smb_account_t *account)
103 bzero(account, sizeof (smb_account_t));
121 account->a_type = SidTypeDomain;
122 account->a_name = strdup("");
123 account
95 smb_sam_lookup_name(char *domain, char *name, uint16_t type, smb_account_t *account) argument
206 smb_sam_lookup_sid(smb_sid_t *sid, smb_account_t *account) argument
408 smb_account_free(smb_account_t *account) argument
421 smb_account_validate(smb_account_t *account) argument
[all...]
H A Dsmb_info.c170 * Get the SAM account of the current system.
186 * This function returns B_TRUE if the specified account is the system SAM
187 * account. Return B_FALSE otherwise.
190 smb_is_samaccount(char *account) argument
197 if (strcmp(account, buf) != 0)
H A Dsmb_util.c1164 * Parse a string to obtain the account and domain names as separate strings.
1185 smb_name_parse(char *arg, char **account, char **domain) argument
1189 *account = NULL;
1197 *account = arg;
1201 *account = p;
1205 *account = arg;
1257 "Workstation trust account doesn't exist" },
1259 "Workstation trust account creation failed" },
1261 "Workstation trust account update failed" },
1263 "Workstation trust account remova
[all...]

Completed in 51 milliseconds