HomeSort by relevance Sort by last modified time
    Searched refs:homedir (Results 1 - 25 of 36) sorted by null

1 2

  /external/curl/src/
tool_homedir.h 26 char *homedir(void);
tool_homedir.c 63 char *homedir(void) function
tool_parsecfg.c 58 /* NULL or no file name attempts to load .curlrc from the homedir! */
62 home = homedir(); /* portable homedir finder */
  /external/selinux/restorecond/
restorecond.h 28 extern const char *homedir;
restorecond.c 65 const char *homedir; variable
195 homedir = pwd->pw_dir;
user.c 200 if (asprintf(&ptr, "%s/.restorecond", homedir) < 0) {
watch.c 236 if (asprintf(&ptr, "%s%s", homedir, &buffer[1]) < 0)
  /external/ltp/testcases/kernel/fs/ftest/
ftest02.c 85 static char homedir[MAXPATHLEN]; variable
129 strcat(homedir, cwd);
131 strcat(homedir, tmpname);
134 mkdir(homedir, 0755);
141 if (chdir(homedir) < 0) {
142 tst_resm(TBROK, "\tCan't chdir(%s), error %d.", homedir, errno);
206 execl("/bin/rm", "rm", "-rf", homedir, NULL);
214 homedir);
362 val = chdir(homedir);
363 warn(val, "chdir", homedir);
    [all...]
ftest06.c 91 static char homedir[MAXPATHLEN]; variable
142 snprintf(homedir, ARRAY_SIZE(homedir),
146 mkdir(homedir, 0755);
154 if (chdir(homedir) < 0)
156 homedir);
222 execl("/bin/rm", "rm", "-rf", homedir, NULL);
230 homedir);
380 val = chdir(homedir);
381 warn(val, "chdir", homedir);
    [all...]
ftest01.c 92 static char homedir[MAXPATHLEN]; /* where we started */ variable
123 getcwd(homedir, sizeof(homedir));
215 chdir(homedir);
ftest05.c 96 static char homedir[MAXPATHLEN]; /* where we started */ variable
131 getcwd(homedir, sizeof(homedir));
217 chdir(homedir);
ftest03.c 98 static char homedir[MAXPATHLEN]; /* where we started */ variable
140 if (getcwd(homedir, sizeof(homedir)) == NULL) {
237 chdir(homedir);
ftest07.c 104 static char homedir[MAXPATHLEN]; /* where we started */ variable
143 if ((cwd = getcwd(homedir, sizeof(homedir))) == NULL) {
238 chdir(homedir);
  /external/openssh/regress/
check-perm.c 97 char buf[PATH_MAX], homedir[PATH_MAX]; local
107 if (pw_dir != NULL && realpath(pw_dir, homedir) != NULL)
137 /* If are past the homedir then we can stop */
138 if (comparehome && strcmp(homedir, buf) == 0)
  /external/selinux/sandbox/
test_sandbox.py 55 "Verify that we can't list homedir within the sandbox"
85 "Verify that we set homedir a file system"
86 homedir = mkdtemp(dir=".", prefix=".sandbox_test")
87 p = Popen([sys.executable, 'sandbox', '-H', homedir, '-M', 'id'], stdout=PIPE, stderr=PIPE)
89 shutil.rmtree(homedir)
sandbox 214 if not self.__options.homedir or not self.__options.tmpdir:
215 self.usage(_("Homedir and tempdir required for level mounts"))
265 homedir = pwd.getpwuid(os.getuid()).pw_dir
267 copyfile(f, homedir, self.__homedir)
313 sandbox [-h] [-l level ] [-[X|M] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] command
315 sandbox [-h] [-l level ] [-[X|M] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] -S
348 parser.add_option("-H", "--homedir",
351 dest="homedir",
396 if not self.__options.homedir or not self.__options.tmpdir:
397 self.usage(_("You must specify a Homedir and tempdir when setting up a session sandbox")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/
wiki.py 18 homedir = tempfile.gettempdir() variable in class:WikiPage
98 return os.path.join(self.homedir, name + ".txt")
  /external/python/cpython2/Demo/cgi/
wiki.py 18 homedir = tempfile.gettempdir() variable in class:WikiPage
98 return os.path.join(self.homedir, name + ".txt")
  /external/curl/lib/
ssh.h 126 char *homedir; /* when doing SFTP we figure out home dir in the member in struct:ssh_conn
ssh.c 129 char *homedir, /* when SFTP is used */
412 char *homedir, /* when SFTP is used */
441 size_t homelen = strlen(homedir);
449 memcpy(real_path, homedir, homelen);
    [all...]
  /external/webrtc/webrtc/base/
unixfilesystem.cc 426 const char* homedir; local
428 homedir = home;
430 homedir = dotdir;
432 homedir = pw->pw_dir;
436 path->SetPathname(homedir, "");
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
handlefiletransferrequest.c 62 void FreeHomeDir(char *homedir);
162 char *homedir = NULL; local
169 homedir = strdup (pwEnt->pw_dir);
172 return homedir;
178 * directory. param: homedir - the string returned by a previous call to
182 FreeHomeDir(char *homedir)
184 free (homedir);
  /external/openssh/
auth.c 492 char buf[PATH_MAX], homedir[PATH_MAX]; local
502 if (pw_dir != NULL && realpath(pw_dir, homedir) != NULL)
541 /* If are past the homedir then we can stop */
542 if (comparehome && strcmp(homedir, buf) == 0)
  /external/selinux/libsemanage/src/
genhomedircon.c 170 static int ignore(const char *homedir) {
173 if (strcmp(ptr->dir, homedir) == 0) {
396 * so we don't label a non-homedir as a homedir.
406 WARN(s->h_semanage, "%s homedir %s or its parent directory conflicts with a file context already specified in the policy. This usually indicates an incorrectly defined system account. If it is a system account please make sure its uid is less than %u or greater than %u or its login shell is /sbin/nologin.", pwbuf->pw_name, pwbuf->pw_dir, minuid, maxuid);
454 * homedir.
708 semanage_list_t * tpl, char *homedir)
711 {.search_for = TEMPLATE_HOME_ROOT,.replace_with = homedir},
    [all...]
  /external/libhevc/test/decoder/
main.c     [all...]

Completed in 623 milliseconds

1 2