HomeSort by relevance Sort by last modified time
    Searched defs:home (Results 26 - 50 of 526) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/curl/lib/
netrc.c 73 char *home = curl_getenv("HOME"); /* portable environment reader */ local
74 if(home) {
83 home = strdup(pw.pw_dir);
84 if(!home)
94 home = pw->pw_dir;
99 if(!home)
100 return retcode; /* no home directory found (or possibly out of memory) */
102 netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC);
104 free(home);
    [all...]
  /external/libbrillo/brillo/
cryptohome.cc 23 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/libxkbcommon/xkbcommon/src/compose/
paths.c 152 const char *home; local
155 home = secure_getenv("HOME");
156 if (!home)
159 ret = asprintf(&path, "%s/.XCompose", home);
parser.c 130 * %H - The user's home directory (the $HOME environment variable).
301 const char *home = secure_getenv("HOME"); local
302 if (!home) {
303 scanner_err(s, "%%H was used in an include statement, but the HOME environment variable is not set");
306 if (!buf_appends(s, home)) {
  /external/valgrind/coregrind/
m_commandline.c 217 HChar* home = VG_(getenv)("HOME"); local
218 HChar* f1_clo = home ? read_dot_valgrindrc( home ) : NULL;
223 // Don't read ./.valgrindrc if "." is the same as "$HOME", else its
226 if (home) {
228 f2_clo = ( (cwd == NULL || VG_STREQ(home, cwd))
  /frameworks/base/core/java/android/text/method/
ScrollingMovementMethod.java 80 protected boolean home(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
  /packages/apps/Car/Settings/src/com/android/car/settings/home/
BluetoothLineItem.java 17 package com.android.car.settings.home;
34 * Represents the Bluetooth line item on settings home page.
WifiLineItem.java 17 package com.android.car.settings.home;
34 * Represents the wifi line item on settings home page.
ExtraSettingsLoader.java 1 package com.android.car.settings.home;
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 2 * Copyright 2009-2011 Oleg Mazurov, Circuits At Home, http://www.circuitsathome.com
161 void Max_LCD::home() function in class:Max_LCD
  /external/aac/libMpegTPDec/src/
tpdec_adts.h 132 UCHAR home; member in struct:__anon13849
  /external/curl/src/
tool_parsecfg.c 53 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 */
  /external/libxkbcommon/xkbcommon/src/
context.c 78 const char *home; local
85 home = secure_getenv("HOME");
86 if (!home)
88 err = asprintf(&user_path, "%s/.xkb", home);
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py 85 """home - the home directory """
86 which = 'home'
88 home = _Prop_home() variable
153 'home' : _Prop_home,
189 'home' : _Prop_home,
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
GenericArrayTypeTest.java 33 + "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) {
68 this.home = home;
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
ActionBarDrawerToggleHoneycomb.java 36 * Before JB-MR2 (API 18) it was not possible to change the home-as-up indicator glyph
60 Log.w(TAG, "Couldn't set home-as-up indicator via JB-MR2 API", e);
65 Log.w(TAG, "Couldn't set home-as-up indicator");
116 final View home = activity.findViewById(android.R.id.home); local
117 if (home == null) {
122 final ViewGroup parent = (ViewGroup) home.getParent();
131 final View up = first.getId() == android.R.id.home ? second : first;
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py 85 """home - the home directory """
86 which = 'home'
88 home = _Prop_home() variable
153 'home' : _Prop_home,
189 'home' : _Prop_home,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py 85 """home - the home directory """
86 which = 'home'
88 home = _Prop_home() variable
153 'home' : _Prop_home,
189 'home' : _Prop_home,
  /development/samples/Home/src/com/example/android/home/
Wallpaper.java 17 package com.example.android.home;
37 * Wallpaper picker for the Home application. User can choose from
43 private static final String LOG_TAG = "Home";
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getpath.c 262 search_for_prefix(char *argv0_path, char *home)
268 if (home) {
270 strncpy(prefix, home, MAXPATHLEN);
321 search_for_exec_prefix(char *argv0_path, char *home)
326 if (home) {
328 delim = strchr(home, DELIM);
332 strncpy(exec_prefix, home, MAXPATHLEN);
379 char *home = Py_GetPythonHome(); local
455 ** This is because the python home should be set relative to the library,
513 if (!(pfound = search_for_prefix(argv0_path, home))) {
    [all...]
  /external/ImageMagick/MagickCore/
configure.c 847 *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=GetEnvironmentValue("XDG_CONFIG_HOME")
832 *home; local
891 *home; local
    [all...]
module.c 703 *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 == (char *) NULL
693 *home; local
785 *home; local
    [all...]
  /external/junit/src/main/java/junit/runner/
BaseTestRunner.java 225 String home = System.getProperty("user.home"); local
226 return new File(home, "junit.properties");
  /external/lisa/libs/utils/android/
system.py 415 def home(target): member in class:System
417 Press HOME button
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractFakeCommandHandler.java 372 String home = userAccount.getHomeDirectory(); local
373 if (!getFileSystem().isDirectory(home)) {
374 LOG.error("Home directory configured for username [" + username + "] is not valid: " + home);
375 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.homeDirectoryNotValid", list(username, home));

Completed in 1690 milliseconds

12 3 4 5 6 7 8 91011>>