/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/ |
pwd.h | 68 #define _PATH_PASSWD "/etc/passwd" 69 #define _PATH_MASTERPASSWD "/etc/master.passwd" 72 #define _PATH_PASSWD_CONF "/etc/passwd.conf" 101 struct passwd struct 113 struct passwd* getpwnam(const char*); 114 struct passwd* getpwuid(uid_t); 119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**); 120 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**); [all...] |
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/ |
pwd.h | 68 #define _PATH_PASSWD "/etc/passwd" 69 #define _PATH_MASTERPASSWD "/etc/master.passwd" 72 #define _PATH_PASSWD_CONF "/etc/passwd.conf" 101 struct passwd struct 113 struct passwd* getpwnam(const char*); 114 struct passwd* getpwuid(uid_t); 119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**); 120 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**); [all...] |
/bionic/libc/include/ |
pwd.h | 68 #define _PATH_PASSWD "/etc/passwd" 69 #define _PATH_MASTERPASSWD "/etc/master.passwd" 72 #define _PATH_PASSWD_CONF "/etc/passwd.conf" 101 struct passwd struct 119 struct passwd* getpwnam(const char*); 120 struct passwd* getpwuid(uid_t); 122 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**); 123 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**); [all...] |
/device/moto/shamu/cryptfs_hw/ |
cryptfs_hw.c | 61 static unsigned char* get_tmp_passwd(const char* passwd) 65 if(passwd) { 69 passwd_len = (strlen(passwd) > MAX_PASSWORD_LEN) ? MAX_PASSWORD_LEN : strlen(passwd); 70 memcpy(tmp_passwd, passwd, passwd_len); 72 SLOGE("%s: Failed to allocate memory for tmp passwd \n", __func__); 111 static unsigned int set_key(const char* passwd, const char* enc_mode, int operation) 116 unsigned char* tmp_passwd = get_tmp_passwd(passwd); 138 unsigned int set_hw_device_encryption_key(const char* passwd, const char* enc_mode) 141 return set_key(passwd, enc_mode, SET_HW_DISK_ENC_KEY) [all...] |
/bionic/libc/bionic/ |
stubs.cpp | 50 // okay for all the <grp.h> functions to share state, and all the <passwd.h> 51 // functions to share state, but <grp.h> functions can't clobber <passwd.h> 61 passwd passwd_; 84 passwd* dst, char* buf, size_t byte_count, 85 passwd** result) { 94 const passwd* src = by_name ? getpwnam(name) : getpwuid(uid); // NOLINT: see above. 133 int getpwnam_r(const char* name, passwd* pwd, 134 char* buf, size_t byte_count, passwd** result) { 138 int getpwuid_r(uid_t uid, passwd* pwd, 139 char* buf, size_t byte_count, passwd** result) [all...] |
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/ |
MyKeyManagerFactorySpi.java | 74 private char[] passWD; 78 this.passWD = pass; 86 return passWD;
|
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/ |
MyKeyManagerFactorySpi.java | 74 private char[] passWD; 78 this.passWD = pass; 86 return passWD;
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_internal-rsa.c | 40 const char *passwd) 49 if (passwd) { 51 res = pkcs8_enc_key_import(key, len, passwd);
|
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
MyKeyManagerFactorySpi.java | 71 private char[] passWD; 74 this.passWD = pass; 80 return passWD;
|
/external/ppp/pppd/plugins/ |
passprompt.c | 28 static int promptpass(char *user, char *passwd) 38 if (!passwd) 73 red = read(p[0], passwd + readgood, MAXSECRETLEN-1 - readgood); 97 passwd[readgood] = 0;
|
/external/selinux/libselinux/man/man8/ |
selinuxexeccon.8 | 16 # selinuxexeccon /usr/bin/passwd
|
/hardware/bsp/intel/peripheral/libupm/src/m24lr64e/ |
m24lr64e.h | 120 // * submit passWd * no submit * 134 //00 => no passwd protect 135 //01 => passWd 1 136 //10 => passWd 2 137 //11 => passwd 3 160 * @param passwd 4-byte access password 162 bool submitPasswd(uint32_t passwd); 167 * @param passwd 4-byte access password 169 bool writePasswd(uint32_t passwd); 177 * @param passwd Password number to enable, if an [all...] |
/external/autotest/client/cros/ |
service_login.js | 32 var passwd = passwordFormElement.value; 35 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
|
/external/libbrillo/brillo/ |
userdb_utils.cc | 23 passwd pwd_buf; 24 passwd* pwd = nullptr;
|
/external/toybox/tests/ |
chown.test | 12 # We chown between user "root" and the last user in /etc/passwd, 15 USR="$(sed -n '$s/:.*//p' /etc/passwd)"
|
/external/autotest/site_utils/ |
setup_dev_autotest.sh | 43 PASSWD= 53 PASSWD=$OPTARG 95 if [ -z "${PASSWD}" ]; then 102 if [ -z "${PASSWD}" ]; then 103 read -s -p "Autotest DB password: " PASSWD 105 if [ -z "${PASSWD}" ]; then 111 if [ "${PASSWD}" != "${PASSWD2}" ]; then 160 password: ${PASSWD} 163 readonly_password: ${PASSWD} 199 elif mysql -u root -p"${PASSWD}" -e ';' 2> /dev/null ; the [all...] |
dump_to_cloudsql.py | 10 dump_to_cloudsql.py [-h] [--resume NUM] [--user USER] [--passwd PASSWD] FILE 24 --passwd PASSWD passwd (ignored for CloudSQL) 112 def __init__(self, host=None, user='root', passwd=''): 117 self._passwd = passwd 132 passwd=self._passwd) 267 parser.add_argument('--passwd', default='', metavar='PASSWD', [all...] |
/external/zlib/src/contrib/minizip/ |
crypt.h | 65 static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* pcrc_32_tab) 70 while (*passwd != '\0') { 71 update_keys(pkeys,pcrc_32_tab,(int)*passwd); 72 passwd++; 90 static int crypthead(const char* passwd, /* password string */ 114 init_keys(passwd, pkeys, pcrc_32_tab); 121 init_keys(passwd, pkeys, pcrc_32_tab);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/ |
libnss_nis-2.11.1.so | |
libnss_nis.so | |
libnss_nis.so.2 | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/ |
libnss_nis-2.15.so | |
libnss_nis.so | |
libnss_nis.so.2 | |
/external/libxml2/test/relaxng/ |
libvirt_0.xml | 21 <graphics type='vnc' port='-1' autoport='yes' listen="127.0.0.1" passwd="123456" keymap="ja"/>
|