OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getenv
(Results
151 - 175
of
1340
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/core/java/android/os/
Environment.java
97
String rawExternalStorage = System.
getenv
(ENV_EXTERNAL_STORAGE);
98
String rawEmulatedStorageTarget = System.
getenv
(ENV_EMULATED_STORAGE_TARGET);
99
String rawMediaStorage = System.
getenv
(ENV_MEDIA_STORAGE);
320
return new File(System.
getenv
(ENV_EXTERNAL_STORAGE));
331
return new File(System.
getenv
(ENV_EMULATED_STORAGE_SOURCE), String.valueOf(userId));
337
return new File(System.
getenv
(ENV_EMULATED_STORAGE_SOURCE), "obb");
629
String path = System.
getenv
(variableName);
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc
214
const char* const string_value =
GetEnv
(env_var.c_str());
265
const char* const string_value =
GetEnv
(env_var.c_str());
287
const char* const value =
GetEnv
(env_var.c_str());
/external/dbus/dbus/
sd-daemon.c
56
if (!(e =
getenv
("LISTEN_PID"))) {
80
if (!(e =
getenv
("LISTEN_FDS"))) {
342
if (!(e =
getenv
("NOTIFY_SOCKET")))
/external/dbus/tools/
dbus-launch-x11.c
72
home =
getenv
("HOME");
107
display = xstrdup (
getenv
("DISPLAY"));
419
getenv
("DISPLAY"),
/external/e2fsprogs/debugfs/
util.c
81
const char *pager =
getenv
("DEBUGFS_PAGER");
88
pager =
getenv
("PAGER");
199
tz =
getenv
("TZ");
/external/linux-tools-perf/
builtin-help.c
133
const char *display =
getenv
("DISPLAY");
323
const char *old_path =
getenv
("MANPATH");
359
const char *fallback =
getenv
("PERF_MAN_VIEWER");
/external/linux-tools-perf/util/
config.c
385
const char *v =
getenv
(k);
413
home =
getenv
("HOME");
474
char *v =
getenv
("HOME");
/external/neven/
FaceDetector_jni.cpp
126
const char* root =
getenv
("ANDROID_ROOT");
302
if (vm->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
303
ALOGE("ERROR:
GetEnv
failed\n");
/ndk/sources/host-tools/sed-4.2.1/sed/
sed.c
49
extern char *
getenv
P_((const char *));
207
const char *cols =
getenv
("COLS");
224
if (
getenv
("POSIXLY_CORRECT") != NULL)
/bionic/libstdc++/include/
cstdlib
49
using ::
getenv
;
/dalvik/tests/071-dexfile/src/
Main.java
106
String androidData = System.
getenv
("ANDROID_DATA");
/development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp
94
if (gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
121
if (m_surface && gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
150
if (!m_surface || gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK ||
472
if (gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
/development/samples/BrowserPlugin/jni/paint/
PaintPlugin.cpp
100
if (!m_surface || gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK ||
135
if (m_surface && gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
233
if (gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
264
if (m_surface && gVM->
GetEnv
((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
/development/tools/emulator/opengl/shared/OpenglCodecCommon/
UnixStream.cpp
57
const char* user =
getenv
("USER");
/external/chromium/base/
environment.cc
54
const char* env_value =
getenv
(variable_name);
/external/chromium/chrome/browser/
platform_util_common_linux.cc
116
char* env =
getenv
("CHROME_VERSION_EXTRA");
/external/compiler-rt/lib/tsan/rtl/
tsan_platform_mac.cc
91
return
getenv
("TSAN_OPTIONS");
/external/freetype/src/base/
ftdebug.c
147
const char* ft2_debug =
getenv
( "FT2_DEBUG" );
/external/iproute2/misc/
rtacct.c
49
char *p =
getenv
(env);
51
p =
getenv
("PROC_ROOT") ? : "/proc";
537
if (
getenv
("RTACCT_HISTORY"))
538
snprintf(hist_name, sizeof(hist_name),
getenv
("RTACCT_HISTORY"));
/external/libvpx/examples/includes/geshi/geshi/
io.php
56
'getSlot', '
getenv
', 'hasSlot', 'isActive', 'isNil', 'isResumable', 'list', 'message',
/external/llvm/lib/Support/Unix/
Host.inc
25
#include <cstdlib> // ::
getenv
/external/qemu/android/
main-emulator.c
98
const char* debug =
getenv
("ANDROID_EMULATOR_DEBUG");
138
const char* androidOut =
getenv
("ANDROID_PRODUCT_OUT");
374
const char* path =
getenv
("PATH");
385
const char* path =
getenv
("LD_LIBRARY_PATH");
/external/quake/quake/src/WinQuake/
sys_android.cpp
306
term =
getenv
("TERM");
309
editor =
getenv
("VISUAL");
311
editor =
getenv
("EDITOR");
313
editor =
getenv
("EDIT");
sys_linux.cpp
265
term =
getenv
("TERM");
268
editor =
getenv
("VISUAL");
270
editor =
getenv
("EDITOR");
272
editor =
getenv
("EDIT");
/external/webkit/Source/WebKit/android/plugins/
ANPTypefaceInterface.cpp
73
const char* root =
getenv
("ANDROID_ROOT");
Completed in 607 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>