Symbol: _PATH_SSH_USER_DIR
crypto/openssh/hostfile.c
485
dotsshdir = tilde_expand_filename("~/" _PATH_SSH_USER_DIR, getuid());
crypto/openssh/pathnames.h
107
#define _PATH_SSH_USER_PERMITTED_KEYS _PATH_SSH_USER_DIR "/authorized_keys"
crypto/openssh/pathnames.h
110
#define _PATH_SSH_USER_PERMITTED_KEYS2 _PATH_SSH_USER_DIR "/authorized_keys2"
crypto/openssh/pathnames.h
118
#define _PATH_SSH_USER_RC _PATH_SSH_USER_DIR "/rc"
crypto/openssh/pathnames.h
75
#define _PATH_SSH_USER_HOSTFILE "~/" _PATH_SSH_USER_DIR "/known_hosts"
crypto/openssh/pathnames.h
77
#define _PATH_SSH_USER_HOSTFILE2 "~/" _PATH_SSH_USER_DIR "/known_hosts2"
crypto/openssh/pathnames.h
83
#define _PATH_SSH_CLIENT_ID_DSA _PATH_SSH_USER_DIR "/id_dsa"
crypto/openssh/pathnames.h
84
#define _PATH_SSH_CLIENT_ID_ECDSA _PATH_SSH_USER_DIR "/id_ecdsa"
crypto/openssh/pathnames.h
85
#define _PATH_SSH_CLIENT_ID_RSA _PATH_SSH_USER_DIR "/id_rsa"
crypto/openssh/pathnames.h
86
#define _PATH_SSH_CLIENT_ID_ED25519 _PATH_SSH_USER_DIR "/id_ed25519"
crypto/openssh/pathnames.h
87
#define _PATH_SSH_CLIENT_ID_XMSS _PATH_SSH_USER_DIR "/id_xmss"
crypto/openssh/pathnames.h
88
#define _PATH_SSH_CLIENT_ID_ECDSA_SK _PATH_SSH_USER_DIR "/id_ecdsa_sk"
crypto/openssh/pathnames.h
89
#define _PATH_SSH_CLIENT_ID_ED25519_SK _PATH_SSH_USER_DIR "/id_ed25519_sk"
crypto/openssh/pathnames.h
97
#define _PATH_SSH_USER_CONFFILE _PATH_SSH_USER_DIR "/config"
crypto/openssh/readconf.c
2103
"~/" _PATH_SSH_USER_DIR : SSHDIR, p);
crypto/openssh/session.c
1128
pw->pw_dir, _PATH_SSH_USER_DIR);