Searched defs:home (Results 1 - 25 of 70) sorted by relevance

123

/external/proguard/bin/
H A Dproguard.bat10 IF EXIST "%PROGUARD_HOME%" GOTO home
12 :home label
H A Dproguardgui.bat10 IF EXIST "%PROGUARD_HOME%" GOTO home
12 :home label
H A Dretrace.bat10 IF EXIST "%PROGUARD_HOME%" GOTO home
12 :home label
/external/libbrillo/brillo/
H A Dcryptohome.h15 namespace home { namespace in namespace:brillo::cryptohome
27 // Returns the path at which the user home for |username| will be mounted.
31 // Returns the path at which the user home for |hashed_username| will be
37 // Returns the path at which the root home for |username| will be mounted.
71 } // namespace home
H A Dcryptohome.cc23 namespace home { namespace in namespace:brillo::cryptohome
27 static char g_user_home_prefix[PATH_MAX] = "/home/user/";
28 static char g_root_home_prefix[PATH_MAX] = "/home/root/";
29 static char g_system_salt_path[PATH_MAX] = "/home/.shadow/salt";
140 } // namespace home
/external/curl/src/
H A Dtool_homedir.c62 /* return the home directory of the current user as an allocated string */
65 char *home; local
67 home = GetEnv("CURL_HOME", FALSE);
68 if(home)
69 return home;
71 home = GetEnv("HOME", FALSE);
72 if(home)
73 return home;
80 home = pw->pw_dir;
81 if(home
[all...]
H A Dtool_parsecfg.c53 char *home; local
62 home = homedir(); /* portable homedir finder */
63 if(home) {
64 if(strlen(home) < (sizeof(filebuffer) - strlen(CURLRC))) {
66 "%s%s%s", home, DIR_CHAR, CURLRC);
106 Curl_safefree(home); /* we've used it, now free it */
H A Dtool_operate.c1064 char *home; local
1067 home = homedir();
1068 if(home) {
1069 file = aprintf("%s/%sssh/known_hosts", home, DOT_CHAR);
1078 Curl_safefree(home);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
H A DBird.java19 private Nest home; field in class:Bird
22 return home;
25 public void setHome(Nest home) { argument
26 this.home = home;
H A DAbstractAnimal.java31 public abstract void setHome(T home); argument
H A DGenericArrayTypeTest.java33 + "home: [1, 2, 3]\n" + "name: Array3\n";
44 String message = "Cannot create property=home for JavaBean=org.yaml.snakeyaml.generics.GenericArrayTypeTest$GenericArray";
51 private Integer[] home; field in class:GenericArrayTypeTest.GenericArray
54 home = new Integer[3];
55 for (int i = 0; i < home.length; i++) {
56 home[i] = i + 1;
63 return home;
67 public void setHome(Integer[] home) { argument
68 this.home = home;
[all...]
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adif.cpp105 const int home=0; local
135 FDKwriteBits(hBs, home ? 1:0,1);
H A Dtpenc_adts.h111 UCHAR home; member in struct:__anon356
/external/curl/lib/
H A Dnetrc.c74 char *home = curl_getenv("HOME"); /* portable environment reader */ local
75 if(home) {
84 home = strdup(pw.pw_dir);
85 if(!home)
95 home = pw->pw_dir;
100 if(!home)
101 return retcode; /* no home directory found (or possibly out of memory) */
103 netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC);
105 free(home);
/external/valgrind/coregrind/
H A Dm_commandline.c215 HChar* home = VG_(getenv)("HOME"); local
216 HChar* f1_clo = home ? read_dot_valgrindrc( home ) : NULL;
223 if (home) {
225 f2_clo = ( VG_STREQ(home, cwd)
/external/aac/libMpegTPDec/src/
H A Dtpdec_adts.h121 UCHAR home; member in struct:__anon340
/external/ImageMagick/MagickCore/
H A Dconfigure.c847 *home;
852 home=GetEnvironmentValue("MAGICK_HOME");
853 if (home != (char *) NULL)
856 (void) FormatLocaleString(path,MagickPathExtent,"%s%s",home,
860 (void) FormatLocaleString(path,MagickPathExtent,"%s/etc/%s/",home,
863 (void) FormatLocaleString(path,MagickPathExtent,"%s/share/%s/",home,
870 home=DestroyString(home);
906 *home;
908 home
832 *home; local
891 *home; local
[all...]
H A Dmodule.c703 *home;
705 home=GetEnvironmentValue("MAGICK_HOME");
706 if (home != (char *) NULL)
712 (void) FormatLocaleString(path,MagickPathExtent,"%s%s%s",home,
732 (void) FormatLocaleString(path,MagickPathExtent,"%s/lib/%s/%s",home,
735 home=DestroyString(home);
795 *home;
797 home=GetEnvironmentValue("XDG_CONFIG_HOME");
798 if (home
693 *home; local
785 *home; local
[all...]
H A Dutility.c625 *home;
632 home=GetEnvironmentValue("HOME");
633 if (home == (char *) NULL)
634 home=GetEnvironmentValue("USERPROFILE");
635 if (home != (char *) NULL)
637 (void) CopyMagickString(expand_path,home,MagickPathExtent);
639 home=DestroyString(home);
655 Substitute ~ with home directory from password file.
615 *home; local
/external/clang/test/Analysis/
H A Dtaint-tester.c79 void getenvTest(char *home) { argument
80 home = getenv("HOME"); // expected-warning + {{tainted}}
81 if (home != 0) { // expected-warning + {{tainted}}
82 char d = home[0]; // expected-warning + {{tainted}}
/external/libcups/cups/
H A Dtls-gnutls.c910 const char *home = getenv("HOME"); /* HOME environment variable */ local
913 if (getuid() && home)
915 snprintf(buffer, bufsize, "%s/.cups", home);
926 snprintf(buffer, bufsize, "%s/.cups/ssl", home);
H A Dusersys.c874 const char *home; /* Home directory of user */ local
901 if ((geteuid() == getuid() || !getuid()) && getegid() == getgid() && (home = getenv("HOME")) != NULL)
903 if (getuid() && (home = getenv("HOME")) != NULL)
905 if ((home = getenv("HOME")) != NULL)
912 snprintf(filename, sizeof(filename), "%s/.cups/client.conf", home);
/external/llvm/lib/Support/
H A Draw_ostream.cpp76 // An out of line virtual method to provide a home for the class vtable.
484 void format_object_base::home() { function in class:format_object_base
/external/swiftshader/third_party/LLVM/lib/Support/
H A Draw_ostream.cpp69 // An out of line virtual method to provide a home for the class vtable.
408 void format_object_base::home() { function in class:format_object_base
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/
H A Dpde-ant.jar ... .exports.FeatureExportInfo info java.io.File home public void setFeatures (java.lang.String) String features ...

Completed in 524 milliseconds

123