Searched refs:homedir (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_homedir.h26 char *homedir(void);
H A Dtool_homedir.c63 char *homedir(void) function
/macosx-10.10.1/mail_cmds-30/mail/
H A Dtemp.c89 homedir = NULL;
91 homedir = savestr(cp);
93 fprintf(stderr, "user = %s, homedir = %s\n", myname,
94 homedir ? homedir : "NONE");
H A Dglob.h67 EXTERN char *homedir; /* Path name of home directory */ variable
H A Dfio.c387 if (name[0] == '~' && homedir != NULL &&
389 (void)snprintf(xname, sizeof(xname), "%s%s", homedir, name + 1);
455 homedir ? homedir : ".", folder);
/macosx-10.10.1/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DRepmgrStartupTest.java34 File homedir; field in class:RepmgrStartupTest
49 homedir = new File(homedirName);
50 homedir.mkdir();
55 homedir = new File(homedirName);
80 dbenv = new Environment(homedir, envConfig);
91 File homedir = new File(homedirName);
93 if (homedir.exists()) {
95 if (homedir.isDirectory()) {
96 File[] contents = homedir.listFiles();
100 homedir
[all...]
H A DRepmgrElectionTest.java27 File homedir; field in class:RepmgrElectionTest
94 File homedir = new File(baseDirName + threadNumber);
96 if (homedir.exists()) {
98 if (homedir.isDirectory()) {
99 File[] contents = homedir.listFiles();
103 homedir.delete();
105 homedir.mkdir();
110 homedir = new File(baseDirName+threadNumber);
136 dbenv = new Environment(homedir, envConfig);
180 Environment.remove(homedir, fals
[all...]
H A DRepmgrConfigTest.java106 File homedir; field in class:RepmgrConfigTest
121 homedir = new File(homedirName);
122 homedir.mkdir();
127 homedir = new File(homedirName);
259 dbenv = new Environment(homedir, envConfig);
319 Environment.remove(homedir, true, envConfig);
/macosx-10.10.1/pam_modules-140/modules/pam_mount/
H A Dpam_mount.c80 char *homedir = NULL; local
115 /* get the server_URL, path and homedir from OD */
116 if (PAM_SUCCESS != (retval = od_extract_home(pamh, username, &server_URL, &path, &homedir))) {
124 openpam_log(PAM_LOG_DEBUG, " homedir: %s", homedir);
130 if (0 == access(homedir, F_OK) || EACCES == errno) {
144 homedir,
164 /* cache the homedir and path for close_session */
165 pam_set_data(pamh, "homedir", homedir, openpam_free_dat
218 char *homedir = NULL; local
[all...]
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Dbogus.c41 static char homedir[MAX_PATH + 1];/*FIXBUF*/ variable
68 StringCbCopy(homedir,sizeof(homedir),ptr);
69 pass_bogus.pw_dir = &homedir[0];
95 StringCbCopy(homedir,sizeof(homedir),ptr);
96 pass_bogus.pw_dir = &homedir[0];
/macosx-10.10.1/autofs-246/od_user_homes/
H A Dod_user_homes.c97 get_home_dir_url(CFStringRef homedir) argument
103 homedir_range = CFRangeMake(0, CFStringGetLength(homedir));
109 if (CFStringFindWithOptions(homedir, CFSTR("<path>"), homedir_range,
111 CFStringFindWithOptions(homedir, CFSTR("</path>"), homedir_range,
116 homedir, item_actual);
140 if (CFStringFindWithOptions(homedir, CFSTR("<url>"), homedir_range,
142 CFStringFindWithOptions(homedir, CFSTR("</url>"), homedir_range,
147 homedir, item_actual);
265 CFStringRef homedir = CFArrayGetValueAtIndex(values, 0); local
266 if (CFGetTypeID(homedir)
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/kafs/
H A Dkafs.h113 const char *homedir);
115 const char *homedir);
168 const char *homedir);
174 const char *homedir);
H A Dcommon.c215 const char *homedir)
220 int er = (*data->afslog_uid)(data, cells[i], 0, uid, homedir);
229 uid_t uid, const char *homedir)
235 if (homedir == NULL)
236 homedir = getenv("HOME");
237 if (homedir != NULL) {
239 snprintf(home, sizeof(home), "%s/.TheseCells", homedir);
255 ret = afslog_cells(data, cells, idx, uid, homedir);
214 afslog_cells(struct kafs_data *data, char **cells, int max, uid_t uid, const char *homedir) argument
228 _kafs_afslog_all_local_cells(struct kafs_data *data, uid_t uid, const char *homedir) argument
H A Dafskrb5.c210 uid_t uid, const char *homedir)
219 return _kafs_afslog_all_local_cells (data, uid, homedir);
257 const char *homedir)
283 ret = afslog_uid_int(&kd, cell, 0, uid, homedir);
316 const char *homedir)
318 return krb5_afslog_uid_home (context, id, cell, realm, getuid(), homedir);
209 afslog_uid_int(struct kafs_data *data, const char *cell, const char *rh, uid_t uid, const char *homedir) argument
252 krb5_afslog_uid_home(krb5_context context, krb5_ccache id, const char *cell, krb5_const_realm realm, uid_t uid, const char *homedir) argument
312 krb5_afslog_home(krb5_context context, krb5_ccache id, const char *cell, krb5_const_realm realm, const char *homedir) argument
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/ri/
H A Dpaths.rb20 homedir = begin
25 homedir ||= ENV['HOME'] ||
28 HOMEDIR = if homedir then
29 File.join homedir, ".rdoc"
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dutil.c178 char *homedir, *temp; local
186 homedir = tilde_expand ("~");
187 _rl_replace_text (homedir, start, end);
214 homedir = tilde_expand (temp);
217 _rl_replace_text (homedir, start, end);
/macosx-10.10.1/remote_cmds-47/rexecd.tproj/
H A Drexecd.c116 char homedir[64] = "HOME="; variable
120 {homedir, shell, path, username, 0};
249 strncat(homedir, pwd->pw_dir, sizeof(homedir)-6);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/
H A Dpasswd.c217 struct berval homedir; local
327 homedir=default_passwd_homeDirectory;
336 homedir=a->a_vals[0];
337 if (homedir.bv_val[0]=='\0')
338 homedir=default_passwd_homeDirectory;
384 WRITE_BERVAL(cbp->fp,&homedir);
/macosx-10.10.1/Heimdal-398.1.2/appl/ftp/ftp/
H A Dmain.c92 char homedir[MaxPathLen]; local
140 strlcpy(homedir, pw->pw_dir, sizeof(homedir));
141 home = homedir;
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dssh.h123 char *homedir; /* when doing SFTP we figure out home dir in the member in struct:ssh_conn
/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_userdir.c305 char *homedir; local
307 if (apr_uid_homepath_get(&homedir, user, r->pool) == APR_SUCCESS) {
308 filename = apr_pstrcat(r->pool, homedir, "/", userdir, NULL);
/macosx-10.10.1/pam_modules-140/modules/pam_opendirectory/
H A Dpam_opendirectory.c61 char *homedir = NULL; local
137 free(homedir);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dauth.c434 char buf[MAXPATHLEN], homedir[MAXPATHLEN]; local
444 if (pw_dir != NULL && realpath(pw_dir, homedir) != NULL)
474 /* If are past the homedir then we can stop */
475 if (comparehome && strcmp(homedir, buf) == 0)
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Drep065.tcl83 set homedir [file dirname [file dirname $pwd]]
85 set histdir $homedir/$vers/build_unix
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dresconf.c265 const char *homedir;
271 homedir = userhomedir();
273 if (homedir != NULL) {
274 len += strlen(homedir);
285 (void)strcpy(file, homedir);

Completed in 158 milliseconds

12