HomeSort by relevance Sort by last modified time
    Searched defs:passwd (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /bionic/libc/include/
pwd.h 68 struct passwd { struct
83 struct passwd* getpwnam(const char* __name);
84 struct passwd* getpwuid(uid_t __uid);
87 struct passwd* getpwent(void) __INTRODUCED_IN(26);
92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
93 int getpwuid_r(uid_t __uid, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
  /external/e2fsprogs/include/mingw/
pwd.h 6 __inline struct passwd* getpwnam (char* g){return 0;}
8 struct passwd struct
  /external/e2fsprogs/include/nonunix/
pwd.h 7 __inline struct passwd* getpwnam (char* g){return 0;}
10 struct passwd struct
  /external/syslinux/core/fs/pxe/
url.h 20 char *passwd; member in struct:url_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pwd.h 49 /* The passwd structure. */
50 struct passwd struct
85 extern struct passwd *getpwent (void);
95 extern struct passwd *fgetpwent (FILE *__stream);
103 extern int putpwent (__const struct passwd *__restrict __p,
111 extern struct passwd *getpwuid (__uid_t __uid);
117 extern struct passwd *getpwnam (__const char *__name);
140 extern int getpwent_r (struct passwd *__restrict __resultbuf,
142 struct passwd **__restrict __result);
146 struct passwd *__restrict __resultbuf
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
yppasswd.h 17 struct passwd { struct
26 typedef struct passwd passwd; typedef in typeref:struct:passwd
30 passwd newpw;
53 extern bool_t xdr_passwd (XDR *, passwd*);
  /external/curl/lib/
curl_sspi.c 145 xcharp_u passwd, dup_passwd; local
197 passwd.tchar_ptr = Curl_convert_UTF8_to_tchar((char *)passwdp);
198 if(!passwd.tchar_ptr)
200 dup_passwd.tchar_ptr = _tcsdup(passwd.tchar_ptr);
202 Curl_unicodefree(passwd.tchar_ptr);
209 Curl_unicodefree(passwd.tchar_ptr);
setopt.c 75 char *passwd = NULL; local
82 (passwdp ? &passwd : NULL),
103 *passwdp = passwd;
    [all...]
ftp.h 107 char *passwd; /* password string */ member in struct:FTP
ldap.c 190 const char *passwd, unsigned long authflags)
220 if(method && user && passwd) {
221 rc = Curl_create_sspi_identity(user, passwd, &cred);
237 const char *user, const char *passwd)
244 if(user && passwd && (conn->data->set.httpauth & CURLAUTH_BASIC)) {
246 inpass = Curl_convert_UTF8_to_tchar((char *) passwd);
255 rc = ldap_win_bind_auth(server, user, passwd, conn->data->set.httpauth);
287 char *passwd = NULL; local
324 passwd = conn->passwd;
    [all...]
openldap.c 292 struct berval passwd; local
296 passwd.bv_val = conn->passwd;
297 passwd.bv_len = strlen(passwd.bv_val);
301 passwd.bv_val = NULL;
302 passwd.bv_len = 0;
304 rc = ldap_sasl_bind(li->ld, binddn, LDAP_SASL_SIMPLE, &passwd,
imap.c 494 char *passwd; local
506 passwd = imap_atom(conn->passwd, false);
510 passwd ? passwd : "");
513 free(passwd);
    [all...]
  /external/libvncserver/common/
vncauth.c 73 rfbEncryptAndStorePasswd(char *passwd, char *fname)
89 if (i < strlen(passwd)) {
90 encryptedPasswd[i] = passwd[i];
122 unsigned char *passwd = (unsigned char *)malloc(9); local
125 free(passwd);
133 free(passwd);
136 passwd[i] = ch;
142 rfbDes(passwd, passwd);
144 passwd[8] = 0
    [all...]
  /external/syslinux/com32/libutil/
crypt-md5.c 55 static char passwd[120]; /* Output buffer */ local
103 p = passwd;
157 return passwd;
  /bionic/libc/private/
bionic_tls.h 102 passwd_state_t passwd; member in struct:bionic_tls
  /device/linaro/bootloader/edk2/StdLib/Include/
pwd.h 71 #define _PATH_PASSWD "/etc/passwd"
72 #define _PATH_MASTERPASSWD "/etc/master.passwd"
75 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
105 struct passwd { struct
119 struct passwd *getpwuid(uid_t);
120 struct passwd *getpwnam(const char *);
124 int getpwnam_r( const char *, struct passwd *, char *, size_t,
125 struct passwd **);
126 int getpwuid_r( uid_t, struct passwd *, char *, size_t,
127 struct passwd **);
    [all...]
  /external/clang/test/CodeGen/
const-init.c 153 DCC_PASSWD passwd; member in struct:__anon15891
  /external/curl/src/
tool_paramhlp.c 443 char passwd[256] = ""; local
464 getpass_r(prompt, passwd, sizeof(passwd));
465 passwdlen = strlen(passwd);
479 memcpy(&passptr[userlen + 1], passwd, passwdlen + 1);
  /libcore/ojluni/src/main/java/java/io/
Console.java 81 * char[] passwd;
83 * (passwd = cons.readPassword("[%s]", "Password:")) != null) {
85 * java.util.Arrays.fill(passwd, ' ');
309 char[] passwd = null; local
321 passwd = readline(true);
339 return passwd;
  /external/libvncserver/libvncserver/
main.c 701 /* response is cl->authChallenge vncEncrypted with passwd */
705 char *passwd=rfbDecryptPasswdFromFile(cl->screen->authPasswdData); local
707 if(!passwd) {
712 rfbEncryptBytes(cl->authChallenge, passwd);
715 for (i = strlen(passwd); i >= 0; i--) {
716 passwd[i] = '\0';
719 free(passwd);
  /external/syslinux/com32/include/
menu.h 60 const char *passwd; member in struct:menu_entry
210 /* passwd.c */
211 int passwd_compare(const char *passwd, const char *entry);
  /external/syslinux/core/lwip/src/netif/ppp/
ppp.h 333 char passwd [MAXSECRETLEN + 1]; /* Password for PAP, secret for CHAP */ member in struct:ppp_settings
387 void pppSetAuth(enum pppAuthType authType, const char *user, const char *passwd);
  /external/libxml2/
nanoftp.c 120 char *passwd; /* passwd string */ member in struct:xmlNanoFTPCtxt
142 static char *proxyPasswd = NULL;/* passwd for proxy authentication */
250 * @passwd: the proxy password
260 const char *passwd, int type) {
277 if (passwd)
278 proxyPasswd = xmlMemStrdup(passwd);
339 ctxt->passwd = xmlMemStrdup(cptr+1);
507 if (ctxt->passwd != NULL) xmlFree(ctxt->passwd);
    [all...]
  /external/nos/host/generic/citadel/updater/
updater.cpp 752 const char *old_passwd, const char *passwd)
831 do_change_pw(app, old_passwd, passwd) != APP_SUCCESS)
835 do_enable(app, passwd) != APP_SUCCESS)
859 char *passwd = 0; local
1010 passwd = argv[optind++];
1017 old_passwd = passwd;
1018 passwd = argv[optind++];
1022 if ((options.enable_ro || options.enable_rw) && !passwd) {
1024 passwd = argv[optind++];
1032 (void) execute_commands(image, old_passwd, passwd);
    [all...]
  /external/ppp/pppd/
options.c 102 char passwd[MAXSECRETLEN]; /* Password for PAP */ variable
490 struct passwd *pw;
    [all...]

Completed in 962 milliseconds

1 2 3 4