Searched refs:pwd (Results 1 - 25 of 882) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba/source/libsmb/
H A Dpwd_cache.c30 void pwd_init(struct pwd_info *pwd) argument
32 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
33 memset((char *)pwd->smb_lm_pwd, '\0', sizeof(pwd->smb_lm_pwd));
34 memset((char *)pwd->smb_nt_pwd, '\0', sizeof(pwd->smb_nt_pwd));
35 memset((char *)pwd->smb_lm_owf, '\0', sizeof(pwd->smb_lm_owf));
36 memset((char *)pwd
46 pwd_deobfuscate(struct pwd_info *pwd) argument
53 pwd_obfuscate(struct pwd_info *pwd) argument
60 pwd_obfuscate_key(struct pwd_info *pwd, uint32 int_key, char *str_key) argument
67 pwd_read(struct pwd_info *pwd, char *passwd_report, BOOL do_encrypt) argument
93 pwd_set_nullpwd(struct pwd_info *pwd) argument
105 pwd_set_cleartext(struct pwd_info *pwd, char *clr) argument
120 pwd_get_cleartext(struct pwd_info *pwd, char *clr) argument
138 pwd_set_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
170 pwd_get_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
187 pwd_make_lm_nt_16(struct pwd_info *pwd, char *clr) argument
207 pwd_make_lm_nt_owf(struct pwd_info *pwd, uchar cryptkey[8]) argument
242 pwd_get_lm_nt_owf(struct pwd_info *pwd, uchar lm_owf[24], uchar nt_owf[24]) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba/source/libsmb/
H A Dpwd_cache.c30 void pwd_init(struct pwd_info *pwd) argument
32 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
33 memset((char *)pwd->smb_lm_pwd, '\0', sizeof(pwd->smb_lm_pwd));
34 memset((char *)pwd->smb_nt_pwd, '\0', sizeof(pwd->smb_nt_pwd));
35 memset((char *)pwd->smb_lm_owf, '\0', sizeof(pwd->smb_lm_owf));
36 memset((char *)pwd
46 pwd_deobfuscate(struct pwd_info *pwd) argument
53 pwd_obfuscate(struct pwd_info *pwd) argument
60 pwd_obfuscate_key(struct pwd_info *pwd, uint32 int_key, char *str_key) argument
67 pwd_read(struct pwd_info *pwd, char *passwd_report, BOOL do_encrypt) argument
93 pwd_set_nullpwd(struct pwd_info *pwd) argument
105 pwd_set_cleartext(struct pwd_info *pwd, char *clr) argument
120 pwd_get_cleartext(struct pwd_info *pwd, char *clr) argument
138 pwd_set_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
170 pwd_get_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
187 pwd_make_lm_nt_16(struct pwd_info *pwd, char *clr) argument
207 pwd_make_lm_nt_owf(struct pwd_info *pwd, uchar cryptkey[8]) argument
242 pwd_get_lm_nt_owf(struct pwd_info *pwd, uchar lm_owf[24], uchar nt_owf[24]) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba/source/libsmb/
H A Dpwd_cache.c30 void pwd_init(struct pwd_info *pwd) argument
32 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
33 memset((char *)pwd->smb_lm_pwd, '\0', sizeof(pwd->smb_lm_pwd));
34 memset((char *)pwd->smb_nt_pwd, '\0', sizeof(pwd->smb_nt_pwd));
35 memset((char *)pwd->smb_lm_owf, '\0', sizeof(pwd->smb_lm_owf));
36 memset((char *)pwd
46 pwd_deobfuscate(struct pwd_info *pwd) argument
53 pwd_obfuscate(struct pwd_info *pwd) argument
60 pwd_obfuscate_key(struct pwd_info *pwd, uint32 int_key, char *str_key) argument
67 pwd_read(struct pwd_info *pwd, char *passwd_report, BOOL do_encrypt) argument
93 pwd_set_nullpwd(struct pwd_info *pwd) argument
105 pwd_set_cleartext(struct pwd_info *pwd, char *clr) argument
120 pwd_get_cleartext(struct pwd_info *pwd, char *clr) argument
138 pwd_set_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
170 pwd_get_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) argument
187 pwd_make_lm_nt_16(struct pwd_info *pwd, char *clr) argument
207 pwd_make_lm_nt_owf(struct pwd_info *pwd, uchar cryptkey[8]) argument
242 pwd_get_lm_nt_owf(struct pwd_info *pwd, uchar lm_owf[24], uchar nt_owf[24]) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.0.25b/source/libsmb/
H A Dpwd_cache.c27 static void pwd_init(struct pwd_info *pwd) argument
29 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
31 pwd->null_pwd = True; /* safest option... */
38 void pwd_set_cleartext(struct pwd_info *pwd, const char *clr) argument
40 pwd_init(pwd);
42 fstrcpy(pwd->password, clr);
43 pwd->null_pwd = False;
45 pwd->null_pwd = True;
48 pwd
55 pwd_get_cleartext(struct pwd_info *pwd, fstring clr) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.0.25b/source/libsmb/
H A Dpwd_cache.c27 static void pwd_init(struct pwd_info *pwd) argument
29 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
31 pwd->null_pwd = True; /* safest option... */
38 void pwd_set_cleartext(struct pwd_info *pwd, const char *clr) argument
40 pwd_init(pwd);
42 fstrcpy(pwd->password, clr);
43 pwd->null_pwd = False;
45 pwd->null_pwd = True;
48 pwd
55 pwd_get_cleartext(struct pwd_info *pwd, fstring clr) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/source/libsmb/
H A Dpwd_cache.c27 static void pwd_init(struct pwd_info *pwd) argument
29 memset((char *)pwd->password , '\0', sizeof(pwd->password ));
31 pwd->null_pwd = True; /* safest option... */
38 void pwd_set_cleartext(struct pwd_info *pwd, const char *clr) argument
40 pwd_init(pwd);
42 fstrcpy(pwd->password, clr);
43 pwd->null_pwd = False;
45 pwd->null_pwd = True;
48 pwd
55 pwd_get_cleartext(struct pwd_info *pwd, fstring clr) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.0.25b/testsuite/nsswitch/
H A Dlongarg_getpwnam.c24 #include <pwd.h>
31 struct passwd *pwd; local
38 pwd = getpwnam(long_name);
39 printf("%s\n", !pwd ? "PASS" : "FAIL");
41 return pwd == NULL;
H A Dgetent.c25 #include <pwd.h>
58 struct passwd *pwd; local
61 pwd = getpwuid (atol (key[i]));
63 pwd = getpwnam (key[i]);
65 if (pwd == NULL)
68 print_passwd (pwd);
92 print_passwd (struct passwd *pwd) argument
95 pwd->pw_name ? pwd->pw_name : "",
96 pwd
132 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.0.25b/testsuite/nsswitch/
H A Dlongarg_getpwnam.c24 #include <pwd.h>
31 struct passwd *pwd; local
38 pwd = getpwnam(long_name);
39 printf("%s\n", !pwd ? "PASS" : "FAIL");
41 return pwd == NULL;
H A Dgetent.c25 #include <pwd.h>
58 struct passwd *pwd; local
61 pwd = getpwuid (atol (key[i]));
63 pwd = getpwnam (key[i]);
65 if (pwd == NULL)
68 print_passwd (pwd);
92 print_passwd (struct passwd *pwd) argument
95 pwd->pw_name ? pwd->pw_name : "",
96 pwd
132 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/testsuite/nsswitch/
H A Dlongarg_getpwnam.c23 #include <pwd.h>
30 struct passwd *pwd; local
37 pwd = getpwnam(long_name);
38 printf("%s\n", !pwd ? "PASS" : "FAIL");
40 return pwd == NULL;
H A Dgetent.c24 #include <pwd.h>
57 struct passwd *pwd; local
60 pwd = getpwuid (atol (key[i]));
62 pwd = getpwnam (key[i]);
64 if (pwd == NULL)
67 print_passwd (pwd);
91 print_passwd (struct passwd *pwd) argument
94 pwd->pw_name ? pwd->pw_name : "",
95 pwd
131 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/testsuite/nsswitch/
H A Dlongarg_getpwnam.c23 #include <pwd.h>
30 struct passwd *pwd; local
37 pwd = getpwnam(long_name);
38 printf("%s\n", !pwd ? "PASS" : "FAIL");
40 return pwd == NULL;
H A Dgetent.c24 #include <pwd.h>
57 struct passwd *pwd; local
60 pwd = getpwuid (atol (key[i]));
62 pwd = getpwnam (key[i]);
64 if (pwd == NULL)
67 print_passwd (pwd);
91 print_passwd (struct passwd *pwd) argument
94 pwd->pw_name ? pwd->pw_name : "",
95 pwd
131 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/testsuite/nsswitch/
H A Dlongarg_getpwnam.c23 #include <pwd.h>
30 struct passwd *pwd; local
37 pwd = getpwnam(long_name);
38 printf("%s\n", !pwd ? "PASS" : "FAIL");
40 return pwd == NULL;
H A Dgetent.c24 #include <pwd.h>
57 struct passwd *pwd; local
60 pwd = getpwuid (atol (key[i]));
62 pwd = getpwnam (key[i]);
64 if (pwd == NULL)
67 print_passwd (pwd);
91 print_passwd (struct passwd *pwd) argument
94 pwd->pw_name ? pwd->pw_name : "",
95 pwd
131 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/testsuite/nsswitch/
H A Dlongarg_getpwnam.c24 #include <pwd.h>
31 struct passwd *pwd; local
38 pwd = getpwnam(long_name);
39 printf("%s\n", !pwd ? "PASS" : "FAIL");
41 return pwd == NULL;
H A Dgetent.c25 #include <pwd.h>
58 struct passwd *pwd; local
61 pwd = getpwuid (atol (key[i]));
63 pwd = getpwnam (key[i]);
65 if (pwd == NULL)
68 print_passwd (pwd);
92 print_passwd (struct passwd *pwd) argument
95 pwd->pw_name ? pwd->pw_name : "",
96 pwd
132 struct passwd *pwd; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/util/
H A Dabspath.c6 char *pwd; local
10 pwd = getenv("PWD");
11 if (pwd && strcmp(pwd, cwd)) {
13 if (!stat(pwd, &pwd_stat) &&
16 strlcpy(cwd, pwd, PATH_MAX);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/util/
H A Dabspath.c6 char *pwd; local
10 pwd = getenv("PWD");
11 if (pwd && strcmp(pwd, cwd)) {
13 if (!stat(pwd, &pwd_stat) &&
16 strlcpy(cwd, pwd, PATH_MAX);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/examples/var_service/dhcp_if/
H A Drun6 pwd="$PWD"
22 --pidfile="$pwd/udhcpc.pid" \
23 --script="$pwd/dhcp_handler"
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/examples/var_service/dhcp_if/
H A Drun6 pwd="$PWD"
22 --pidfile="$pwd/udhcpc.pid" \
23 --script="$pwd/dhcp_handler"
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/examples/var_service/dhcp_if/
H A Drun6 pwd="$PWD"
22 --pidfile="$pwd/udhcpc.pid" \
23 --script="$pwd/dhcp_handler"
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dfs_struct.h11 struct path root, pwd; member in struct:fs_struct
32 static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd) argument
35 *pwd = fs->pwd;
36 path_get(pwd);
41 struct path *pwd)
46 *pwd = fs->pwd;
47 path_get(pwd);
40 get_fs_root_and_pwd(struct fs_struct *fs, struct path *root, struct path *pwd) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dfs_struct.h11 struct path root, pwd; member in struct:fs_struct
32 static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd) argument
35 *pwd = fs->pwd;
36 path_get(pwd);
41 struct path *pwd)
46 *pwd = fs->pwd;
47 path_get(pwd);
40 get_fs_root_and_pwd(struct fs_struct *fs, struct path *root, struct path *pwd) argument

Completed in 282 milliseconds

1234567891011>>