Home | History | Annotate | Download | only in utils

Lines Matching refs:home

68  **  on Unix, this is $HOME/.android, on Windows, this is something like
171 const char* home = getenv("ANDROID_SDK_HOME");
172 if (home != NULL) {
173 return bufprint(buff, end, "%s\\%s", home, _ANDROID_PATH );
183 const char* home = getenv("ANDROID_SDK_HOME");
184 if (home == NULL)
185 home = getenv("HOME");
186 if (home == NULL)
187 home = "/tmp";
188 return bufprint(buff, end, "%s/%s", home, _ANDROID_PATH );