passwd             24 examples/auth/crackcheck/crackcheck.c int complexity(char* passwd)
passwd             37 examples/auth/crackcheck/crackcheck.c 	if (!passwd) goto fail;
passwd             38 examples/auth/crackcheck/crackcheck.c 	len = strlen(passwd);
passwd             44 examples/auth/crackcheck/crackcheck.c 		if (isupper(passwd[i])) {
passwd             51 examples/auth/crackcheck/crackcheck.c 		if (islower(passwd[i])) {
passwd             58 examples/auth/crackcheck/crackcheck.c 		if (isdigit(passwd[i])) {
passwd             65 examples/auth/crackcheck/crackcheck.c 		if (ispunct(passwd[i])) {
passwd             79 examples/libsmbclient/testbrowse2.c 		char            *passwd, int passwdlen){
passwd             88 examples/libsmbclient/testbrowse2.c     strncpy(passwd, password, passwdlen - 1); passwd[passwdlen - 1] = 0;
passwd             84 examples/nss/nss_winbind.c int nss_getpwent(struct nss_state *nss, struct passwd *pwd)
passwd             86 examples/nss/nss_winbind.c 	enum nss_status (*_nss_getpwent_r)(struct passwd *, char *, 
passwd             38 examples/nss/nss_winbind.h int nss_getpwent(struct nss_state *nss, struct passwd *pwd);
passwd             37 examples/nss/wbtest.c 	struct passwd pwd;
passwd            149 lib/nss_wrapper/nss_wrapper.c 	struct passwd *list;
passwd            379 lib/nss_wrapper/nss_wrapper.c 	struct passwd *pw;
passwd            385 lib/nss_wrapper/nss_wrapper.c 	pw = (struct passwd *)realloc(nwrap_pw->list, list_size);
passwd            537 lib/nss_wrapper/nss_wrapper.c static int nwrap_pw_copy_r(const struct passwd *src, struct passwd *dst,
passwd            538 lib/nss_wrapper/nss_wrapper.c 			   char *buf, size_t buflen, struct passwd **dstp)
passwd            775 lib/nss_wrapper/nss_wrapper.c static struct passwd *nwrap_files_getpwnam(const char *name)
passwd            798 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ struct passwd *nwrap_getpwnam(const char *name)
passwd            807 lib/nss_wrapper/nss_wrapper.c static int nwrap_files_getpwnam_r(const char *name, struct passwd *pwdst,
passwd            808 lib/nss_wrapper/nss_wrapper.c 				  char *buf, size_t buflen, struct passwd **pwdstp)
passwd            810 lib/nss_wrapper/nss_wrapper.c 	struct passwd *pw;
passwd            823 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ int nwrap_getpwnam_r(const char *name, struct passwd *pwdst,
passwd            824 lib/nss_wrapper/nss_wrapper.c 			      char *buf, size_t buflen, struct passwd **pwdstp)
passwd            833 lib/nss_wrapper/nss_wrapper.c static struct passwd *nwrap_files_getpwuid(uid_t uid)
passwd            856 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ struct passwd *nwrap_getpwuid(uid_t uid)
passwd            865 lib/nss_wrapper/nss_wrapper.c static int nwrap_files_getpwuid_r(uid_t uid, struct passwd *pwdst,
passwd            866 lib/nss_wrapper/nss_wrapper.c 				  char *buf, size_t buflen, struct passwd **pwdstp)
passwd            868 lib/nss_wrapper/nss_wrapper.c 	struct passwd *pw;
passwd            881 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ int nwrap_getpwuid_r(uid_t uid, struct passwd *pwdst,
passwd            882 lib/nss_wrapper/nss_wrapper.c 			      char *buf, size_t buflen, struct passwd **pwdstp)
passwd            906 lib/nss_wrapper/nss_wrapper.c static struct passwd *nwrap_files_getpwent(void)
passwd            908 lib/nss_wrapper/nss_wrapper.c 	struct passwd *pw;
passwd            927 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ struct passwd *nwrap_getpwent(void)
passwd            936 lib/nss_wrapper/nss_wrapper.c static int nwrap_files_getpwent_r(struct passwd *pwdst, char *buf,
passwd            937 lib/nss_wrapper/nss_wrapper.c 				  size_t buflen, struct passwd **pwdstp)
passwd            939 lib/nss_wrapper/nss_wrapper.c 	struct passwd *pw;
passwd            952 lib/nss_wrapper/nss_wrapper.c _PUBLIC_ int nwrap_getpwent_r(struct passwd *pwdst, char *buf,
passwd            953 lib/nss_wrapper/nss_wrapper.c 			      size_t buflen, struct passwd **pwdstp)
passwd            957 lib/nss_wrapper/nss_wrapper.c 		struct passwd *pw;
passwd             37 lib/nss_wrapper/nss_wrapper.h struct passwd *nwrap_getpwnam(const char *name);
passwd             38 lib/nss_wrapper/nss_wrapper.h int nwrap_getpwnam_r(const char *name, struct passwd *pwbuf,
passwd             39 lib/nss_wrapper/nss_wrapper.h 		     char *buf, size_t buflen, struct passwd **pwbufp);
passwd             40 lib/nss_wrapper/nss_wrapper.h struct passwd *nwrap_getpwuid(uid_t uid);
passwd             41 lib/nss_wrapper/nss_wrapper.h int nwrap_getpwuid_r(uid_t uid, struct passwd *pwbuf,
passwd             42 lib/nss_wrapper/nss_wrapper.h 		     char *buf, size_t buflen, struct passwd **pwbufp);
passwd             44 lib/nss_wrapper/nss_wrapper.h struct passwd *nwrap_getpwent(void);
passwd             45 lib/nss_wrapper/nss_wrapper.h int nwrap_getpwent_r(struct passwd *pwbuf, char *buf,
passwd             46 lib/nss_wrapper/nss_wrapper.h 		     size_t buflen, struct passwd **pwbufp);
passwd            134 lib/util/util_getent.c 	struct passwd *pwd;
passwd             24 lib/util/util_pw.c static struct passwd *alloc_copy_passwd(TALLOC_CTX *mem_ctx, 
passwd             25 lib/util/util_pw.c 					const struct passwd *from) 
passwd             27 lib/util/util_pw.c 	struct passwd *ret = talloc_zero(mem_ctx, struct passwd);
passwd             43 lib/util/util_pw.c struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name) 
passwd             45 lib/util/util_pw.c 	struct passwd *temp;
passwd             61 lib/util/util_pw.c struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) 
passwd             63 lib/util/util_pw.c 	struct passwd *temp;
passwd             65 lib/zlib/contrib/minizip/crypt.h static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab)
passwd             70 lib/zlib/contrib/minizip/crypt.h     while (*passwd != '\0') {
passwd             71 lib/zlib/contrib/minizip/crypt.h         update_keys(pkeys,pcrc_32_tab,(int)*passwd);
passwd             72 lib/zlib/contrib/minizip/crypt.h         passwd++;
passwd             90 lib/zlib/contrib/minizip/crypt.h static int crypthead(passwd, buf, bufSize, pkeys, pcrc_32_tab, crcForCrypting)
passwd             91 lib/zlib/contrib/minizip/crypt.h     const char *passwd;         /* password string */
passwd            115 lib/zlib/contrib/minizip/crypt.h     init_keys(passwd, pkeys, pcrc_32_tab);
passwd            122 lib/zlib/contrib/minizip/crypt.h     init_keys(passwd, pkeys, pcrc_32_tab);
passwd             41 nsswitch/libwbclient/wbc_pwd.c static struct passwd *copy_passwd_entry(struct winbindd_pw *p)
passwd             43 nsswitch/libwbclient/wbc_pwd.c 	struct passwd *pwd = NULL;
passwd             46 nsswitch/libwbclient/wbc_pwd.c 	pwd = talloc(NULL, struct passwd);
passwd            130 nsswitch/libwbclient/wbc_pwd.c wbcErr wbcGetpwnam(const char *name, struct passwd **pwd)
passwd            163 nsswitch/libwbclient/wbc_pwd.c wbcErr wbcGetpwuid(uid_t uid, struct passwd **pwd)
passwd            194 nsswitch/libwbclient/wbc_pwd.c wbcErr wbcGetpwsid(struct wbcDomainSid *sid, struct passwd **pwd)
passwd            362 nsswitch/libwbclient/wbc_pwd.c wbcErr wbcGetpwent(struct passwd **pwd)
passwd            788 nsswitch/libwbclient/wbc_sid.c 		struct passwd *pwd;
passwd            837 nsswitch/libwbclient/wbclient.h wbcErr wbcGetpwnam(const char *name, struct passwd **pwd);
passwd            848 nsswitch/libwbclient/wbclient.h wbcErr wbcGetpwuid(uid_t uid, struct passwd **pwd);
passwd            859 nsswitch/libwbclient/wbclient.h wbcErr wbcGetpwsid(struct wbcDomainSid * sid, struct passwd **pwd);
passwd            904 nsswitch/libwbclient/wbclient.h wbcErr wbcGetpwent(struct passwd **pwd);
passwd             61 nsswitch/nsstest.c static struct passwd *nss_getpwent(void)
passwd             63 nsswitch/nsstest.c 	NSS_STATUS (*_nss_getpwent_r)(struct passwd *, char *,
passwd             65 nsswitch/nsstest.c 	static struct passwd pwd;
passwd             80 nsswitch/nsstest.c static struct passwd *nss_getpwnam(const char *name)
passwd             82 nsswitch/nsstest.c 	NSS_STATUS (*_nss_getpwnam_r)(const char *, struct passwd *, char *,
passwd             84 nsswitch/nsstest.c 	static struct passwd pwd;
passwd             99 nsswitch/nsstest.c static struct passwd *nss_getpwuid(uid_t uid)
passwd            101 nsswitch/nsstest.c 	NSS_STATUS (*_nss_getpwuid_r)(uid_t , struct passwd *, char *,
passwd            103 nsswitch/nsstest.c 	static struct passwd pwd;
passwd            257 nsswitch/nsstest.c static void print_passwd(struct passwd *pwd)
passwd            314 nsswitch/nsstest.c 	struct passwd *pwd;
passwd            371 nsswitch/nsstest.c 	struct passwd *pwd;
passwd           1577 nsswitch/pam_winbind.c 	struct passwd *pwd = NULL;
passwd           1715 nsswitch/pam_winbind.c 		struct passwd *pwd = NULL;
passwd           2058 nsswitch/pam_winbind.c 	struct passwd *pwd = NULL;
passwd           2059 nsswitch/pam_winbind.c 	struct passwd *wb_pwd = NULL;
passwd           2486 nsswitch/pam_winbind.c 		struct passwd *pwd = NULL;
passwd           2631 nsswitch/pam_winbind.c 		struct passwd *pw = NULL;
passwd           2975 nsswitch/pam_winbind.c 	struct passwd *pwd = NULL;
passwd            163 nsswitch/wbinfo.c 	struct passwd *pwd = NULL;
passwd            186 nsswitch/wbinfo.c 	struct passwd *pwd = NULL;
passwd            208 nsswitch/wbinfo.c 	struct passwd *pwd = NULL;
passwd             99 nsswitch/winbind_nss_aix.c static void free_pwd(struct passwd *pwd)
passwd            160 nsswitch/winbind_nss_aix.c static struct passwd *wb_aix_getpwuid(uid_t uid);
passwd            164 nsswitch/winbind_nss_aix.c 	struct passwd *pwd;
passwd            186 nsswitch/winbind_nss_aix.c static struct passwd *fill_pwent(struct winbindd_pw *pw)
passwd            188 nsswitch/winbind_nss_aix.c 	struct passwd *result;
passwd            190 nsswitch/winbind_nss_aix.c 	result = calloc(1, sizeof(struct passwd));
passwd            398 nsswitch/winbind_nss_aix.c static struct passwd *wb_aix_getpwuid(uid_t uid)
passwd            403 nsswitch/winbind_nss_aix.c 	struct passwd *pwd;
passwd            427 nsswitch/winbind_nss_aix.c static struct passwd *wb_aix_getpwnam(const char *name)
passwd            432 nsswitch/winbind_nss_aix.c 	struct passwd *pwd;
passwd            554 nsswitch/winbind_nss_aix.c static attrval_t pwd_to_group(struct passwd *pwd)
passwd            570 nsswitch/winbind_nss_aix.c static attrval_t pwd_to_groupsids(struct passwd *pwd)
passwd            594 nsswitch/winbind_nss_aix.c static attrval_t pwd_to_sid(struct passwd *pwd)
passwd            619 nsswitch/winbind_nss_aix.c 	struct passwd *pwd;
passwd            832 nsswitch/winbind_nss_aix.c 	struct passwd *pwd;
passwd             36 nsswitch/winbind_nss_freebsd.c extern enum nss_status _nss_winbind_getpwent_r(struct passwd *, char *, size_t,
passwd             38 nsswitch/winbind_nss_freebsd.c extern enum nss_status _nss_winbind_getpwnam_r(const char *, struct passwd *,
passwd             40 nsswitch/winbind_nss_freebsd.c extern enum nss_status _nss_winbind_getpwuid_r(gid_t gid, struct passwd *, char *,
passwd             41 nsswitch/winbind_nss_linux.c NSS_STATUS _nss_winbind_getpwent_r(struct passwd *result, char *buffer,
passwd             43 nsswitch/winbind_nss_linux.c NSS_STATUS _nss_winbind_getpwuid_r(uid_t uid, struct passwd *result,
passwd             45 nsswitch/winbind_nss_linux.c NSS_STATUS _nss_winbind_getpwnam_r(const char *name, struct passwd *result,
passwd            177 nsswitch/winbind_nss_linux.c static NSS_STATUS fill_pwent(struct passwd *result,
passwd            426 nsswitch/winbind_nss_linux.c _nss_winbind_getpwent_r(struct passwd *result, char *buffer,
passwd            521 nsswitch/winbind_nss_linux.c _nss_winbind_getpwuid_r(uid_t uid, struct passwd *result, char *buffer,
passwd            593 nsswitch/winbind_nss_linux.c _nss_winbind_getpwnam_r(const char *name, struct passwd *result, char *buffer,
passwd             47 nsswitch/winbind_nss_netbsd.c NSS_STATUS _nss_winbind_getpwent_r(struct passwd *result, char *buffer,
passwd             49 nsswitch/winbind_nss_netbsd.c NSS_STATUS _nss_winbind_getpwuid_r(uid_t uid, struct passwd *result,
passwd             51 nsswitch/winbind_nss_netbsd.c NSS_STATUS _nss_winbind_getpwnam_r(const char *name, struct passwd *result,
passwd            264 nsswitch/winbind_nss_netbsd.c static struct passwd	_winbind_passwd;
passwd            288 nsswitch/winbind_nss_netbsd.c 	struct passwd  **retval	= va_arg(ap, struct passwd **);
passwd            305 nsswitch/winbind_nss_netbsd.c 	struct passwd	*pw	= va_arg(ap, struct passwd *);
passwd            308 nsswitch/winbind_nss_netbsd.c 	struct passwd  **result	= va_arg(ap, struct passwd **);
passwd            326 nsswitch/winbind_nss_netbsd.c 	struct passwd  **retval	= va_arg(ap, struct passwd **);
passwd            344 nsswitch/winbind_nss_netbsd.c 	struct passwd	*pw	= va_arg(ap, struct passwd *);
passwd            347 nsswitch/winbind_nss_netbsd.c 	struct passwd  **result	= va_arg(ap, struct passwd **);
passwd            365 nsswitch/winbind_nss_netbsd.c 	struct passwd  **retval	= va_arg(ap, struct passwd **);
passwd            383 nsswitch/winbind_nss_netbsd.c 	struct passwd	*pw	= va_arg(ap, struct passwd *);
passwd            386 nsswitch/winbind_nss_netbsd.c 	struct passwd  **result	= va_arg(ap, struct passwd **);
passwd            105 nsswitch/winbind_nss_solaris.c 	struct passwd* result = (struct passwd*) NSS_ARGS(args)->buf.result;
passwd            130 nsswitch/winbind_nss_solaris.c 	struct passwd* result = (struct passwd*) NSS_ARGS(args)->buf.result;
passwd            149 nsswitch/winbind_nss_solaris.c 	struct passwd* result = (struct passwd*) NSS_ARGS(args)->buf.result;
passwd             67 nsswitch/winbind_nss_solaris.h NSS_STATUS _nss_winbind_getpwent_r(struct passwd* result, char* buffer,
passwd             69 nsswitch/winbind_nss_solaris.h NSS_STATUS _nss_winbind_getpwuid_r(uid_t, struct passwd*, char* buffer,
passwd             71 nsswitch/winbind_nss_solaris.h NSS_STATUS _nss_winbind_getpwnam_r(const char* name, struct passwd* result,
passwd            426 source3/auth/auth_server.c 		struct passwd *pass;
passwd             92 source3/auth/auth_unix.c 	struct passwd *pass = NULL;
passwd            565 source3/auth/auth_util.c 	struct passwd *pwd;
passwd            907 source3/auth/auth_util.c 			struct passwd *pwd = getpwnam_alloc(sam_acct, *found_username );
passwd            929 source3/auth/auth_util.c 		struct passwd *pass;
passwd           1141 source3/auth/auth_util.c 			     struct passwd *pwd)
passwd           1322 source3/auth/auth_util.c 	struct passwd *pwd;
passwd           1491 source3/auth/auth_util.c 	struct passwd *passwd;
passwd           1503 source3/auth/auth_util.c 	if ( !(passwd = smb_getpwnam( NULL, dom_user, real_username, True )) )
passwd           1506 source3/auth/auth_util.c 	*uid = passwd->pw_uid;
passwd           1507 source3/auth/auth_util.c 	*gid = passwd->pw_gid;
passwd           1519 source3/auth/auth_util.c 	nt_status = samu_set_unix( account, passwd );
passwd           1521 source3/auth/auth_util.c 	TALLOC_FREE(passwd);
passwd           1532 source3/auth/auth_util.c struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, char *domuser,
passwd           1535 source3/auth/auth_util.c 	struct passwd *pw = NULL;
passwd            417 source3/auth/pampass.c 					const char *passwd, const char *newpass)
passwd            429 source3/auth/pampass.c 	udp->PAM_password = passwd;
passwd            151 source3/auth/pass_check.c 	struct passwd *pw;
passwd            204 source3/auth/pass_check.c 		struct passwd *pw;
passwd            650 source3/auth/pass_check.c NTSTATUS pass_check(const struct passwd *pass, const char *user, const char *password, 
passwd             82 source3/auth/token_util.c 	struct passwd *pw;
passwd             64 source3/client/get_printing_ticket.c 	struct passwd *pw;
passwd            187 source3/client/mount.cifs.c 	struct passwd *password = getpwuid(getuid());
passwd            588 source3/client/mount.cifs.c 					struct passwd *pw;
passwd           1233 source3/client/mount.cifs.c 				struct passwd *pw;
passwd            483 source3/client/smbspool.c 	struct passwd  *pwd;
passwd            164 source3/include/passdb.h 	struct passwd *unix_pw;
passwd            120 source3/include/proto.h 			     struct passwd *pwd);
passwd            133 source3/include/proto.h struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, char *domuser,
passwd            171 source3/include/proto.h NTSTATUS pass_check(const struct passwd *pass, const char *user, const char *password, 
passwd            946 source3/include/proto.h struct passwd *sys_getpwent(void);
passwd            948 source3/include/proto.h struct passwd *sys_getpwnam(const char *name);
passwd            949 source3/include/proto.h struct passwd *sys_getpwuid(uid_t uid);
passwd           1066 source3/include/proto.h struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user);
passwd           1246 source3/include/proto.h struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx, const struct passwd *from) ;
passwd           1248 source3/include/proto.h struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name);
passwd           1249 source3/include/proto.h struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) ;
passwd           1625 source3/include/proto.h struct passwd * winbind_getpwnam(const char * sname);
passwd           1626 source3/include/proto.h struct passwd * winbind_getpwsid(const DOM_SID *sid);
passwd           3227 source3/include/proto.h bool SMBencrypt(const char *passwd, const uchar *c8, uchar p24[24]);
passwd           3228 source3/include/proto.h void E_md4hash(const char *passwd, uchar p16[16]);
passwd           3230 source3/include/proto.h bool E_deshash(const char *passwd, uchar p16[16]);
passwd           3236 source3/include/proto.h void SMBOWFencrypt(const uchar passwd[16], const uchar *c8, uchar p24[24]);
passwd           3237 source3/include/proto.h void NTLMSSPOWFencrypt(const uchar passwd[8], const uchar *ntlmchalresp, uchar p24[24]);
passwd           3239 source3/include/proto.h void SMBNTencrypt(const char *passwd, uchar *c8, uchar *p24);
passwd           4410 source3/include/proto.h NTSTATUS samu_set_unix(struct samu *user, const struct passwd *pwd);
passwd           4411 source3/include/proto.h NTSTATUS samu_alloc_rid_unix(struct samu *user, const struct passwd *pwd);
passwd           4450 source3/include/proto.h 			 struct passwd **passwd_p);
passwd           6174 source3/include/proto.h bool chgpasswd(const char *name, const struct passwd *pass,
passwd           6176 source3/include/proto.h bool chgpasswd(const char *name, const struct passwd *pass, 
passwd             81 source3/lib/ldb/nssldb/ldb-nss.c NSS_STATUS _ldb_nss_fill_passwd(struct passwd *result,
passwd             58 source3/lib/ldb/nssldb/ldb-nss.h NSS_STATUS _ldb_nss_fill_passwd(struct passwd *result,
passwd             80 source3/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwent_r(struct passwd *result_buf,
passwd            113 source3/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwuid_r(uid_t uid, struct passwd *result_buf, char *buffer, size_t buflen, int *errnop)
passwd            167 source3/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwnam_r(const char *name, struct passwd *result_buf, char *buffer, size_t buflen, int *errnop)
passwd            586 source3/lib/substitute.c 			struct passwd *pass;
passwd            940 source3/lib/system.c struct passwd *sys_getpwent(void)
passwd            955 source3/lib/system.c struct passwd *sys_getpwnam(const char *name)
passwd            960 source3/lib/system.c struct passwd *sys_getpwuid(uid_t uid)
passwd             24 source3/lib/username.c static struct passwd *uname_string_combinations(char *s, TALLOC_CTX *mem_ctx,
passwd             25 source3/lib/username.c 						struct passwd * (*fn) (TALLOC_CTX *mem_ctx, const char *),
passwd             27 source3/lib/username.c static struct passwd *uname_string_combinations2(char *s, TALLOC_CTX *mem_ctx, int offset,
passwd             28 source3/lib/username.c 						 struct passwd * (*fn) (TALLOC_CTX *mem_ctx, const char *),
passwd             37 source3/lib/username.c 	struct passwd *pass;
passwd             63 source3/lib/username.c static struct passwd *Get_Pwnam_internals(TALLOC_CTX *mem_ctx,
passwd             66 source3/lib/username.c 	struct passwd *ret = NULL;
passwd            121 source3/lib/username.c struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user)
passwd            124 source3/lib/username.c 	struct passwd *ret;
passwd            149 source3/lib/username.c static struct passwd *uname_string_combinations2(char *s, TALLOC_CTX *mem_ctx,
passwd            151 source3/lib/username.c 						 struct passwd *(*fn)(TALLOC_CTX *mem_ctx, const char *),
passwd            156 source3/lib/username.c 	struct passwd *ret;
passwd            182 source3/lib/username.c static struct passwd * uname_string_combinations(char *s, TALLOC_CTX *mem_ctx,
passwd            183 source3/lib/username.c 						 struct passwd * (*fn)(TALLOC_CTX *mem_ctx, const char *),
passwd            187 source3/lib/username.c 	struct passwd *ret;
passwd           1382 source3/lib/util.c 	struct passwd *pass = NULL;
passwd           1421 source3/lib/util.c 	struct passwd *pass;
passwd             24 source3/lib/util_pw.c struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx, const struct passwd *from) 
passwd             26 source3/lib/util_pw.c 	struct passwd *ret = TALLOC_P(mem_ctx, struct passwd);
passwd             45 source3/lib/util_pw.c struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name)
passwd             47 source3/lib/util_pw.c 	struct passwd *pw, *for_cache;
passwd             49 source3/lib/util_pw.c 	pw = (struct passwd *)memcache_lookup_talloc(
passwd             71 source3/lib/util_pw.c struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) 
passwd             73 source3/lib/util_pw.c 	struct passwd *temp;
passwd             27 source3/lib/winbind_util.c struct passwd * winbind_getpwnam(const char * name)
passwd             30 source3/lib/winbind_util.c 	struct passwd * tmp_pwd = NULL;
passwd             31 source3/lib/winbind_util.c 	struct passwd * pwd = NULL;
passwd             44 source3/lib/winbind_util.c struct passwd * winbind_getpwsid(const DOM_SID *sid)
passwd             47 source3/lib/winbind_util.c 	struct passwd * tmp_pwd = NULL;
passwd             48 source3/lib/winbind_util.c 	struct passwd * pwd = NULL;
passwd            344 source3/lib/winbind_util.c struct passwd * winbind_getpwnam(const char * name)
passwd            349 source3/lib/winbind_util.c struct passwd * winbind_getpwsid(const DOM_SID *sid)
passwd            141 source3/libads/krb5_setpw.c 					   const char *passwd,
passwd            163 source3/libads/krb5_setpw.c 		setpw = data_blob(passwd, strlen(passwd));
passwd            166 source3/libads/krb5_setpw.c 		setpw = encode_krb5_setpw(princ, passwd);
passwd            244 source3/libnet/libnet_samsync_passdb.c 	struct passwd *passwd = NULL;
passwd            254 source3/libnet/libnet_samsync_passdb.c 	nt_ret = smb_create_user(sam_account, r->acct_flags, account, &passwd);
passwd            299 source3/libnet/libnet_samsync_passdb.c 		if (map.gid != passwd->pw_gid) {
passwd            309 source3/libnet/libnet_samsync_passdb.c 	if ( !passwd ) {
passwd             52 source3/libsmb/smbencrypt.c bool SMBencrypt(const char *passwd, const uchar *c8, uchar p24[24])
passwd             57 source3/libsmb/smbencrypt.c 	ret = E_deshash(passwd, lm_hash); 
passwd             68 source3/libsmb/smbencrypt.c void E_md4hash(const char *passwd, uchar p16[16])
passwd             74 source3/libsmb/smbencrypt.c 	push_ucs2(NULL, wpwd, (const char *)passwd, 256, STR_UNICODE|STR_NOALIGN|STR_TERMINATE);
passwd            110 source3/libsmb/smbencrypt.c bool E_deshash(const char *passwd, uchar p16[16])
passwd            117 source3/libsmb/smbencrypt.c 	push_ascii(dospwd, passwd, sizeof(dospwd), STR_UPPER|STR_TERMINATE);
passwd            219 source3/libsmb/smbencrypt.c void SMBOWFencrypt(const uchar passwd[16], const uchar *c8, uchar p24[24])
passwd            225 source3/libsmb/smbencrypt.c 	memcpy(p21, passwd, 16);    
passwd            230 source3/libsmb/smbencrypt.c void NTLMSSPOWFencrypt(const uchar passwd[8], const uchar *ntlmchalresp, uchar p24[24])
passwd            235 source3/libsmb/smbencrypt.c 	memcpy(p21, passwd, 8);    
passwd            268 source3/libsmb/smbencrypt.c void SMBNTencrypt(const char *passwd, uchar *c8, uchar *p24)
passwd            271 source3/libsmb/smbencrypt.c 	E_md4hash(passwd, nt_hash);    
passwd            130 source3/passdb/passdb.c static NTSTATUS samu_set_unix_internal(struct samu *user, const struct passwd *pwd, bool create)
passwd            244 source3/passdb/passdb.c NTSTATUS samu_set_unix(struct samu *user, const struct passwd *pwd)
passwd            249 source3/passdb/passdb.c NTSTATUS samu_alloc_rid_unix(struct samu *user, const struct passwd *pwd)
passwd           2389 source3/passdb/passdb.c 			 struct passwd **passwd_p)
passwd           2391 source3/passdb/passdb.c 	struct passwd *passwd;
passwd           2394 source3/passdb/passdb.c 	passwd = Get_Pwnam_alloc(mem_ctx, account);
passwd           2395 source3/passdb/passdb.c 	if (passwd) {
passwd           2396 source3/passdb/passdb.c 		*passwd_p = passwd;
passwd           2433 source3/passdb/passdb.c 	passwd = Get_Pwnam_alloc(mem_ctx, account);
passwd           2434 source3/passdb/passdb.c 	if (!passwd) {
passwd           2438 source3/passdb/passdb.c 	*passwd_p = passwd;
passwd            185 source3/passdb/pdb_get_set.c 	struct passwd *pwd;
passwd            247 source3/passdb/pdb_interface.c 	struct passwd *pwd;
passwd            304 source3/passdb/pdb_interface.c 	struct passwd *pwd;
passwd            782 source3/passdb/pdb_interface.c 	struct passwd *pwd;
passwd            847 source3/passdb/pdb_interface.c 	struct passwd *pwd;
passwd           1190 source3/passdb/pdb_interface.c 	struct passwd *unix_pw;
passwd           1357 source3/passdb/pdb_interface.c 	struct passwd *pwd;
passwd           1387 source3/passdb/pdb_interface.c 		struct passwd *pw = getpwnam(*gr);
passwd           1459 source3/passdb/pdb_interface.c 	struct passwd *pw;
passwd           1527 source3/passdb/pdb_interface.c 		struct passwd *pw;
passwd           1199 source3/passdb/pdb_smbpasswd.c 			struct passwd *passwd = getpwnam_alloc(NULL, lp_guestaccount());
passwd           1200 source3/passdb/pdb_smbpasswd.c 			if (!passwd) {
passwd           1204 source3/passdb/pdb_smbpasswd.c 			smb_pw->smb_userid=passwd->pw_uid;
passwd           1205 source3/passdb/pdb_smbpasswd.c 			TALLOC_FREE(passwd);
passwd           1232 source3/passdb/pdb_smbpasswd.c 	struct passwd *pwfile;
passwd             46 source3/passdb/pdb_wbc_sam.c 				       const struct passwd *pwd)
passwd             57 source3/passdb/util_unixsids.c 	struct passwd *pwd;
passwd            215 source3/printing/tests/vlp.c 	struct passwd *pw;
passwd           4766 source3/rpc_server/srv_samr_nt.c 			struct passwd *passwd;
passwd           4772 source3/rpc_server/srv_samr_nt.c 			passwd = Get_Pwnam_alloc(pwd, pdb_get_username(pwd));
passwd           4773 source3/rpc_server/srv_samr_nt.c 			if (passwd == NULL) {
passwd           4777 source3/rpc_server/srv_samr_nt.c 			if(!chgpasswd(pdb_get_username(pwd), passwd, "", plaintext_buf, True)) {
passwd           4780 source3/rpc_server/srv_samr_nt.c 			TALLOC_FREE(passwd);
passwd           4836 source3/rpc_server/srv_samr_nt.c 			struct passwd *passwd;
passwd           4843 source3/rpc_server/srv_samr_nt.c 			passwd = Get_Pwnam_alloc(pwd, pdb_get_username(pwd));
passwd           4844 source3/rpc_server/srv_samr_nt.c 			if (passwd == NULL) {
passwd           4848 source3/rpc_server/srv_samr_nt.c 			if(!chgpasswd(pdb_get_username(pwd), passwd, "", plaintext_buf, True)) {
passwd           4851 source3/rpc_server/srv_samr_nt.c 			TALLOC_FREE(passwd);
passwd            858 source3/rpc_server/srv_srvsvc_nt.c 		struct passwd *pw = sys_getpwnam(session_list[resume_handle].username);
passwd            125 source3/smbd/chgpasswd.c static int dochild(int master, const char *slavedev, const struct passwd *pass,
passwd            373 source3/smbd/chgpasswd.c static bool chat_with_program(char *passwordprogram, const struct passwd *pass,
passwd            492 source3/smbd/chgpasswd.c bool chgpasswd(const char *name, const struct passwd *pass,
passwd            627 source3/smbd/chgpasswd.c bool chgpasswd(const char *name, const struct passwd *pass, 
passwd           1087 source3/smbd/chgpasswd.c 	struct passwd *pass = NULL;
passwd            161 source3/smbd/ntquotas.c 	struct passwd *usr;
passwd            191 source3/smbd/password.c 	struct passwd *pwd;
passwd            330 source3/smbd/password.c 	struct passwd *pw;
passwd            787 source3/smbd/password.c 		struct passwd *guest_pw;
passwd            251 source3/smbd/sesssetup.c 	struct passwd *pw;
passwd             32 source3/smbd/uid.c 	struct passwd *pass;
passwd            540 source3/torture/cmd_vfs.c 	struct passwd *pwd = NULL;
passwd            597 source3/torture/cmd_vfs.c 	struct passwd *pwd = NULL;
passwd            662 source3/torture/cmd_vfs.c 	struct passwd *pwd = NULL;
passwd             65 source3/torture/nsstest.c static struct passwd *nss_getpwent(void)
passwd             67 source3/torture/nsstest.c 	NSS_STATUS (*_nss_getpwent_r)(struct passwd *, char *, 
passwd             69 source3/torture/nsstest.c 		(NSS_STATUS (*)(struct passwd *, char *,
passwd             71 source3/torture/nsstest.c 	static struct passwd pwd;
passwd             89 source3/torture/nsstest.c static struct passwd *nss_getpwnam(const char *name)
passwd             91 source3/torture/nsstest.c 	NSS_STATUS (*_nss_getpwnam_r)(const char *, struct passwd *, char *, 
passwd             93 source3/torture/nsstest.c 		(NSS_STATUS (*)(const char *, struct passwd *, char *,
passwd             95 source3/torture/nsstest.c 	static struct passwd pwd;
passwd            113 source3/torture/nsstest.c static struct passwd *nss_getpwuid(uid_t uid)
passwd            115 source3/torture/nsstest.c 	NSS_STATUS (*_nss_getpwuid_r)(uid_t , struct passwd *, char *, 
passwd            117 source3/torture/nsstest.c 		(NSS_STATUS (*)(uid_t, struct passwd *, char *,
passwd            119 source3/torture/nsstest.c 	static struct passwd pwd;
passwd            333 source3/torture/nsstest.c static void print_passwd(struct passwd *pwd)
passwd            390 source3/torture/nsstest.c 	struct passwd *pwd;
passwd            447 source3/torture/nsstest.c 	struct passwd *pwd;
passwd            233 source3/torture/pdbtest.c 	struct passwd *pwd;
passwd           1426 source3/utils/net_sam.c 	struct passwd *pwd;
passwd           1711 source3/utils/net_sam.c 			if ((pwd = talloc(tc, struct passwd)) == NULL) {
passwd            295 source3/utils/smbpasswd.c 	struct passwd  *pwd;
passwd            492 source3/utils/smbpasswd.c 	struct passwd  *pwd = NULL;
passwd            307 source3/web/cgi.c 	struct passwd *pwd;
passwd            341 source3/web/cgi.c 	struct passwd *pass = NULL;
passwd             59 source3/winbindd/idmap_nss.c 		struct passwd *pw;
passwd            171 source3/winbindd/idmap_nss.c 			struct passwd *pw;
passwd             36 source4/auth/ntlm/auth_unix.c 					  struct passwd *pwd,
passwd            101 source4/auth/ntlm/auth_unix.c static NTSTATUS talloc_getpwnam(TALLOC_CTX *ctx, const char *username, struct passwd **pws)
passwd            103 source4/auth/ntlm/auth_unix.c         struct passwd *ret;
passwd            104 source4/auth/ntlm/auth_unix.c 	struct passwd *from;
passwd            108 source4/auth/ntlm/auth_unix.c 	ret = talloc(ctx, struct passwd);
passwd            433 source4/auth/ntlm/auth_unix.c 				    const struct auth_usersupplied_info *user_info, struct passwd **pws)
passwd            597 source4/auth/ntlm/auth_unix.c 				    const struct auth_usersupplied_info *user_info, struct passwd **ret_passwd)
passwd            604 source4/auth/ntlm/auth_unix.c 	struct passwd *pws;
passwd            798 source4/auth/ntlm/auth_unix.c 	struct passwd *pwd;
passwd             47 source4/client/mount.cifs.c 	struct passwd *password = getpwuid(getuid());
passwd            168 source4/dsdb/common/sidmap.c 		struct passwd *pwd = getpwnam(s);
passwd            183 source4/dsdb/common/sidmap.c 		struct passwd *pwd = getpwnam(s);
passwd            367 source4/dsdb/common/sidmap.c 	struct passwd *pwd;
passwd            583 source4/dsdb/common/sidmap.c 		struct passwd *pwd;
passwd            127 source4/dsdb/samdb/ldb_modules/samba3sam.c 	struct passwd *pwd; 
passwd            147 source4/dsdb/samdb/ldb_modules/samba3sam.c 	struct passwd *pwd; 
passwd            164 source4/dsdb/samdb/ldb_modules/samba3sam.c 	struct passwd *pwd; 
passwd            386 source4/heimdal/kuser/kinit.c     char passwd[256];
passwd            395 source4/heimdal/kuser/kinit.c     passwd[0] = '\0';
passwd            408 source4/heimdal/kuser/kinit.c 	if (fgets(passwd, sizeof(passwd), f) == NULL)
passwd            414 source4/heimdal/kuser/kinit.c 	passwd[strcspn(passwd, "\n")] = '\0';
passwd            448 source4/heimdal/kuser/kinit.c 						 passwd);
passwd            517 source4/heimdal/kuser/kinit.c 					    passwd,
passwd            529 source4/heimdal/kuser/kinit.c 	if (passwd[0] == '\0') {
passwd            536 source4/heimdal/kuser/kinit.c 	    if (UI_UTIL_read_pw_string(passwd, sizeof(passwd)-1, prompt, 0)){
passwd            537 source4/heimdal/kuser/kinit.c 		memset(passwd, 0, sizeof(passwd));
passwd            547 source4/heimdal/kuser/kinit.c 					    passwd,
passwd            555 source4/heimdal/kuser/kinit.c     if (ntlm_domain && passwd[0])
passwd            556 source4/heimdal/kuser/kinit.c 	heim_ntlm_nt_key(passwd, &ntlmkey);
passwd            557 source4/heimdal/kuser/kinit.c     memset(passwd, 0, sizeof(passwd));
passwd             76 source4/heimdal/lib/krb5/changepw.c 		    const char *passwd,
passwd            107 source4/heimdal/lib/krb5/changepw.c     passwd_data.data   = rk_UNCONST(passwd);
passwd            108 source4/heimdal/lib/krb5/changepw.c     passwd_data.length = strlen(passwd);
passwd            170 source4/heimdal/lib/krb5/changepw.c 		    const char *passwd,
passwd            195 source4/heimdal/lib/krb5/changepw.c     chpw.newpasswd.length = strlen(passwd);
passwd            196 source4/heimdal/lib/krb5/changepw.c     chpw.newpasswd.data = rk_UNCONST(passwd);
passwd             79 source4/heimdal/lib/krb5/get_default_principal.c 	struct passwd *pw = getpwuid(uid);	
passwd             76 source4/lib/ldb/nssldb/ldb-nss.c NSS_STATUS _ldb_nss_fill_passwd(struct passwd *result,
passwd             58 source4/lib/ldb/nssldb/ldb-nss.h NSS_STATUS _ldb_nss_fill_passwd(struct passwd *result,
passwd             81 source4/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwent_r(struct passwd *result_buf,
passwd            114 source4/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwuid_r(uid_t uid, struct passwd *result_buf, char *buffer, size_t buflen, int *errnop)
passwd            181 source4/lib/ldb/nssldb/ldb-pwd.c NSS_STATUS _nss_ldb_getpwnam_r(const char *name, struct passwd *result_buf, char *buffer, size_t buflen, int *errnop)
passwd             38 source4/libcli/auth/smbencrypt.c bool SMBencrypt(const char *passwd, const uint8_t *c8, uint8_t p24[24])
passwd             44 source4/libcli/auth/smbencrypt.c 	ret = E_deshash(passwd, p21); 
passwd             64 source4/libcli/auth/smbencrypt.c bool E_md4hash(const char *passwd, uint8_t p16[16])
passwd             70 source4/libcli/auth/smbencrypt.c 	ret = push_ucs2_talloc(NULL, &wpwd, passwd, &len);
passwd             74 source4/libcli/auth/smbencrypt.c 		mdfour(p16, (const uint8_t *)passwd, strlen(passwd));
passwd             93 source4/libcli/auth/smbencrypt.c bool E_deshash(const char *passwd, uint8_t p16[16])
passwd            100 source4/libcli/auth/smbencrypt.c 	push_string(dospwd, passwd, sizeof(dospwd), STR_ASCII|STR_UPPER|STR_TERMINATE);
passwd            194 source4/libcli/auth/smbencrypt.c void SMBOWFencrypt(const uint8_t passwd[16], const uint8_t *c8, uint8_t p24[24])
passwd            200 source4/libcli/auth/smbencrypt.c 	memcpy(p21, passwd, 16);    
passwd            206 source4/libcli/auth/smbencrypt.c void SMBNTencrypt(const char *passwd, uint8_t *c8, uint8_t *p24)
passwd            212 source4/libcli/auth/smbencrypt.c 	E_md4hash(passwd, p21);    
passwd            211 source4/rpc_server/unixinfo/dcesrv_unixinfo.c 		struct passwd *pwd;