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

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/src/
H A Dtool_homedir.h26 char *homedir(void);
H A Dtool_homedir.c76 char *homedir(void) function
H A Dtool_parsecfg.c57 /* NULL or no file name attempts to load .curlrc from the homedir! */
61 home = homedir(); /* portable homedir finder */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/
H A Dsmbldap-userdel66 my $homedir;
68 $homedir=get_homedir($user);
69 if ($homedir !~ /^\/.+\/(.*)$user/) {
70 print "Refusing to delete this home directory: $homedir\n";
87 if ($homedir) {
94 # print "rm @rmargs $homedir\n";
95 system('rm', @rmargs, $homedir);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/mtools-4.0.10/
H A Dmisc.c37 char *homedir; local
40 homedir = getenv ("HOME");
45 if ( homedir )
46 return homedir;
75 const char *homedir; local
79 homedir= get_homedir();
80 if(!homedir)
81 homedir="/tmp";
82 strncpy(file, homedir, MAXPATHLEN-6);
H A Dconfig.c709 char *homedir; local
735 homedir = get_homedir();
736 if ( homedir ){
737 strncpy(conf_file, homedir, MAXPATHLEN );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/doc/
H A Dsmbldap-migrate-accounts44 my ($login, $basedn, $lmpwd, $ntpwd, $gecos, $homedir) = @_;
52 replace => [sambaHomePath => "$homedir"]
88 my ($login, $rid, $lmpwd, $ntpwd, $gecos, $homedir, $b) = split(/:/, $_);
120 # normalize homedir
122 # if ($homedir eq "") {
123 $homedir = $config{userSmbHome};
147 modify_account($login, $userbasedn, $lmpwd, $ntpwd, $gecos, $homedir);
158 modify_account($login, $userbasedn, $lmpwd, $ntpwd, $gecos, $homedir);
H A Dsmbldap-migrate-unix-accounts71 my($user,$pwd,$uid,$gid,$class,$change,$expire,$gecos,$homedir,$shell) = split(/:/,$line);
74 $entry = migrate_user($entry,$user,$pwd,$uid,$gid,$gecos,$homedir,$shell);
81 my($user,$pwd,$uid,$gid,$gecos,$homedir,$shell) = split(/:/,$line);
84 $entry = migrate_user($entry,$user,$pwd,$uid,$gid,$gecos,$homedir,$shell,undef);
166 my($entry,$user,$pwd,$uid,$gid,$gecos,$homedir,$shell) = @_;
196 ($homedir) and $entry->replace( 'homeDirectory' => $homedir );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dssh.h118 char *homedir; /* when doing SFTP we figure out home dir in the member in struct:ssh_conn
H A Dssh.c124 char *homedir, /* when SFTP is used */
399 char *homedir, /* when SFTP is used */
428 size_t homelen = strlen(homedir);
436 memcpy(real_path, homedir, homelen);
1001 sshc->homedir = strdup(tempHome);
1002 if(!sshc->homedir) {
1007 conn->data->state.most_recent_ftp_entrypath = sshc->homedir;
1021 we get the homedir here, we get the "workingpath" in the DO action
1022 since the homedir will remain the same between request but the
1030 result = ssh_getworkingpath(conn, sshc->homedir,
398 ssh_getworkingpath(struct connectdata *conn, char *homedir, char **path) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/smbd/
H A Dpassword.c72 SAFE_FREE(vuser->homedir);
190 /* Keep the homedir handy */
191 const char *homedir = pdb_get_homedir(server_info->sam_account); local
207 if (homedir) {
208 vuser->homedir = smb_xstrdup(homedir);
230 SAFE_FREE(vuser->homedir);
H A Dservice.c91 int add_home_service(const char *service, const char *username, const char *homedir) argument
95 if (!service || !homedir)
117 if (!lp_add_home(service, iHomeService, username, homedir)) {
H A Dlanman.c2749 pstrcpy(p2, vuser && vuser->homedir ? vuser->homedir : "");
2785 pstrcpy(p2, vuser && vuser->homedir ? vuser->homedir : "");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/passdb/
H A Dpassdb.c1391 char *homedir = NULL; local
1429 &homedir_len, &homedir, /* B */
1467 if (homedir) {
1468 pdb_set_homedir(sampass, homedir, PDB_SET);
1535 SAFE_FREE(homedir);
1570 char *homedir = NULL; local
1610 &homedir_len, &homedir, /* B */
1651 if (homedir) {
1652 pdb_set_homedir(sampass, homedir, PDB_SET);
1720 SAFE_FREE(homedir);
1756 char *homedir = NULL; local
1979 const char *homedir; local
[all...]
H A Dpdb_ldap.c362 pstring homedir;
386 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_UNIX_HOME), homedir) )
399 pdb_set_unix_homedir(sampass, homedir, PDB_SET);
446 homedir, local
475 homedir[0] = '\0';
632 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_PATH), homedir))
638 pstrcpy( tmpstring, homedir );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbindd_user.c40 char *homedir; local
77 /* The substitution of %U and %D in the 'template homedir' is done
82 homedir = alloc_sub_specified(lp_template_homedir(), user_name, dom_name, pw->pw_uid, pw->pw_gid);
84 if (!homedir)
87 safe_strcpy(pw->pw_dir, homedir, sizeof(pw->pw_dir) - 1);
89 SAFE_FREE(homedir);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drep065.tcl83 set homedir [file dirname [file dirname $pwd]]
85 set histdir $homedir/$vers/build_unix
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/utils/
H A Dpdbedit.c301 const char *fullname, const char *homedir,
352 if (homedir)
353 pdb_set_homedir(sam_pwent, homedir, PDB_CHANGED);
428 const char *fullname, const char *homedir,
467 if (homedir)
468 pdb_set_homedir (sam_pwent, homedir, PDB_CHANGED);
682 {"homedir", 'h', POPT_ARG_STRING, &home_dir, 0, "set home directory", NULL},
300 set_user_info(struct pdb_context *in, const char *username, const char *fullname, const char *homedir, const char *acct_desc, const char *drive, const char *script, const char *profile, const char *account_control, const char *user_sid, const char *group_sid, const BOOL badpw, const BOOL hours, time_t pwd_can_change, time_t pwd_must_change) argument
427 new_user(struct pdb_context *in, const char *username, const char *fullname, const char *homedir, const char *drive, const char *script, const char *profile, char *user_sid, char *group_sid) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dplugin.c157 static gchar* homedir(void) function
251 flac_cfg.stream.save_http_path = homedir();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/auth/
H A Dauth_util.c39 static int smb_create_user(const char *domain, const char *unix_username, const char *homedir) argument
50 if (homedir)
51 all_string_sub(add_script, "%H", homedir, sizeof(pstring));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclirap2.c738 pstring comment, homedir, logonscript; local
751 GETSTRINGP(p, homedir, rdata, converter);
756 fn(username, comment, homedir, logonscript, cli);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/include/
H A Dsmb.h1645 char *homedir; member in struct:user_struct

Completed in 289 milliseconds

12