/src/games/larn/ |
config.c | 46 const char *password = "pvnert(x)"; /* the wizards password <=32 */ variable in typeref:typename:const char *
|
/src/libexec/ftpd/ |
ftpcmd.y | 167 %type <s> pathstring pathname password username 193 | PASS SP password CRLF 910 password label 1226 { "PASS", PASS, ZSTR1, 1, "<sp> password", 0, },
|
/src/games/backgammon/backgammon/ |
main.c | 86 static const char password[] = "losfurng"; variable in typeref:typename:const char[] 192 writel("Password:"); 208 if (pbuf[i] != password[i])
|
/src/sys/arch/macppc/stand/installboot/ |
installboot.h | 63 IB_PASSWORD = 1<<18, /* i386 boot password */ 86 const char *password; /* boot password */ member in struct:__anon551177cf0208
|
/src/common/dist/zlib/contrib/minizip/ |
minizip.c | 168 printf("Usage : minizip [-o] [-a] [-0 to -9] [-p password] [-j] file.zip [files_to_add]\n\n" \ 249 const char* password=NULL; local in function:main 280 password=argv[i+1]; 408 if ((password != NULL) && (err==ZIP_OK)) 446 password,crcFile, zip64);
|
miniunz.c | 194 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \ 201 " -p extract encrypted file using password\n\n"); 307 static int do_extract_currentfile(unzFile uf, const int* popt_extract_without_path, int* popt_overwrite, const char* password) { 373 err = unzOpenCurrentFilePassword(uf,password); 478 static int do_extract(unzFile uf, int opt_extract_without_path, int opt_overwrite, const char* password) { 491 password) != UNZ_OK) 508 static int do_extract_onefile(unzFile uf, const char* filename, int opt_extract_without_path, int opt_overwrite, const char* password) { 517 password) == UNZ_OK) 527 const char *password=NULL; local in function:main 574 password=argv[i+1] [all...] |
/src/sys/dev/iscsi/ |
iscsi_ioctl.h | 53 unsigned int password:1; member in struct:__anonb1d6e0de0108::__anonb1d6e0de0208 71 void *password; member in struct:__anonb1d6e0de0108 137 password 138 Contains the password to use during login authentication of the 142 Contains the password to use during login authentication of the target
|
iscsi_text.c | 197 uint8_t password[MAX_STRING + 1]; /* authentication secret */ member in struct:__anon16a0efc30708 1267 if (par->is_present.password) 1268 copyinstr(par->password, state->password, MAX_STRING, &sz); 1477 state->password, challenge, challenge_size); 1488 DEBOUT(("No target password with mutual authentication!\n"));
|
/src/usr.sbin/installboot/ |
installboot.h | 65 IB_PASSWORD = 1<<18, /* i386 boot password */ 103 const char *password; /* boot password */ member in struct:__anon78e59b4b0308
|
/src/sbin/init/ |
init.c | 657 char *clear, *password; local in function:single_user 691 * Check the root password. 700 "Enter root password, or ^D to go multi-user\n"); 702 clear = getpass("Password:"); 705 password = crypt(clear, pp->pw_passwd); 707 if (strcmp(password, pp->pw_passwd) == 0)
|
/src/sys/dev/usb/ |
if_umbreg.h | 266 uint16_t password[UMB_PASSWORD_MAXLEN]; member in struct:umb_parameter 318 uint16_t password[UMB_PASSWORD_MAXLEN]; member in struct:umb_info
|
/src/sbin/iscsid/ |
iscsid.h | 355 uint8_t password[ISCSI_STRING_LENGTH]; member in struct:__anonacab674b0f08 370 password 371 Contains the password to use during login authentication of the 375 Contains the password to use during login authentication of the
|
/src/usr.sbin/user/ |
user.c | 86 char *u_password; /* encrypted password */ 95 char *u_expire; /* when password will expire */ 927 /* structure which defines a password type */ 931 size_t length; /* length of password */ 932 const char *regex; /* regexp to output the password */ 948 /* return non-zero if it's a valid password - check length for cipher type */ 1072 char password[PasswordLength + 1]; local in function:adduser 1206 warnx("Warning: inactive time `%s' invalid, password expiry off", 1218 password[sizeof(password) - 1] = '\0' 2147 char password[PasswordLength + 1]; local in function:userdel [all...] |
/src/usr.bin/ftp/ |
cmds.c | 1482 char *password; local in function:user 1492 UPRINTF("usage: %s username [password [account]]\n", 1500 password = getpass("Password: "); 1501 if (password == NULL) 1502 password = emptypass; 1504 password = argv[2]; 1506 n = command("PASS %s", password); 1507 memset(password, 0, strlen(password)); [all...] |