HomeSort by relevance Sort by last modified time
    Searched full:environment (Results 26 - 50 of 1536) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/SmokeTest/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 37 import android.os.Environment;
154 String status = Environment.getExternalStorageState();
155 if (status.equals(Environment.MEDIA_MOUNTED)) {
207 String extStoragePath = Environment.getExternalStorageDirectory().toString();
226 String extStoragePath = Environment.getExternalStorageDirectory().toString();
262 mountService.mountVolume(Environment.getExternalStorageDirectory().toString());
271 String status = Environment.getExternalStorageState();
273 if (status.equals(Environment.MEDIA_MOUNTED_READ_ONLY)) {
274 status = Environment.MEDIA_MOUNTED;
280 if (status.equals(Environment.MEDIA_MOUNTED))
    [all...]
  /dalvik/libcore/icu/src/main/native/
NativeCollation.cpp 23 * @param env JNI environment
37 * @param env JNI environment
52 * @param env JNI environment
89 * @param env JNI environment
117 * @param env JNI environment
149 * @param env JNI environment
167 * @param env JNI environment
185 * @param env JNI environment
202 * @param env JNI environment
216 * @param env JNI environment
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 23 import android.os.Environment;
38 String fl = Environment.getExternalStorageDirectory().toString() +
  /external/clearsilver/man/man3/
cgiwrap_init_emu.3 39 iterenv_cb - a cb to replace the default environment iteration
45 in an emulated environment where you are providing
  /external/gtest/test/
gtest_break_on_failure_unittest.py 35 either the GTEST_BREAK_ON_FAILURE environment variable or the
51 # The environment variable for enabling/disabling the break-on-failure mode.
57 # The environment variable for enabling/disabling the throw-on-failure mode.
69 """Sets an environment variable to a given value; unsets it when the
93 """Tests using the GTEST_BREAK_ON_FAILURE environment variable or
103 env_var_value: value of the GTEST_BREAK_ON_FAILURE environment
151 """Tests using the GTEST_BREAK_ON_FAILURE environment variable."""
171 """Tests that the flag overrides the environment variable."""
  /external/qemu/
softmmu_outside_jit.c 16 * assumes that pointer to CPU environment is stored in ebp register, which
19 * enforces ldx/stx routines to use CPU environment stored in cpu_single_env
  /external/v8/
Android.mk 22 # 1. use JS_ENGINE environment variable, value can be either 'jsc' or 'v8'
26 # To help setup buildbot, a new environment variable, USE_ALT_JS_ENGINE,
  /frameworks/base/core/java/android/os/storage/
StorageEventListener.java 34 * @param oldState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
35 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 23 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
24 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /frameworks/base/services/java/com/android/server/status/
StorageNotification.java 31 import android.os.Environment;
85 Environment.getExternalStorageState()));
98 String st = Environment.getExternalStorageState();
103 Environment.MEDIA_REMOVED) || st.equals(Environment.MEDIA_CHECKING))) {
119 if (newState.equals(Environment.MEDIA_SHARED)) {
131 } else if (newState.equals(Environment.MEDIA_CHECKING)) {
141 } else if (newState.equals(Environment.MEDIA_MOUNTED)) {
148 } else if (newState.equals(Environment.MEDIA_UNMOUNTED)) {
155 if (oldState.equals(Environment.MEDIA_SHARED))
    [all...]
  /external/opencore/build_config/default/
setup.sh 47 ## clean the environment
59 # clean the environment
68 ## clean the environment
96 echo_stdout "setting up build environment with default configuration"
149 echo_stdout "environment is ready if no errors reported."
  /external/clearsilver/cgi/
cgiwrap.h 16 * implementation is of course based on environment variables and stdio,
52 * in an emulated environment where you are providing
64 * iterenv_cb - a cb to replace the default environment iteration
76 * environment variables, which are used to pass data to
83 * Input: k - the environment variable to lookup
94 * artificial environment. This version differs from the
109 * environment variables. This is probably mostly used by
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.os.Environment.html 10 android.os.Environment
74 Class android.os.<A HREF="../../../../reference/android/os/Environment.html" target="_top"><font size="+2"><code>Environment</code></font></A>
87 <A NAME="android.os.Environment.MEDIA_CHECKING"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#MEDIA_CHECKING" target="_top"><code>MEDIA_CHECKING</code></A></nobr>
94 <A NAME="android.os.Environment.MEDIA_NOFS"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#MEDIA_NOFS" target="_top"><code>MEDIA_NOFS</code></A></nobr>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
README.txt 40 Please note the following constraints to be aware of when writing tests to run within a plugin environment:
45 likely fail in the plugin environment. Instead, use AdtTestData to access test files
46 in conjunction with the "test_data" environment variable mentioned above
64 Note: this method runs the tests within a regular JVM environment (ie not within
68 continuous test environment. Tests that pass when run as "JUnit Tests" can
92 ii. "Environment" tab:
93 Add a "sdk_home" environment variable, setting its path to the SDK from step B
  /bionic/libm/man/
fenv.3 45 .Nd floating-point environment control
82 routines manipulate the floating-point environment,
164 .Ss Environment Control
169 functions save and restore the floating-point environment,
191 function restores a saved environment similarly to
194 environment.
198 expands to a pointer to the default environment.
206 may access the floating-point environment, so optimizations that would
210 is off, the floating-point environment will become undefined.
  /frameworks/base/services/java/com/android/server/
MountService.java 37 import android.os.Environment;
117 private String mLegacyState = Environment.MEDIA_REMOVED;
309 String path = Environment.getExternalStorageDirectory().getPath();
312 if (state.equals(Environment.MEDIA_UNMOUNTED)) {
317 } else if (state.equals(Environment.MEDIA_SHARED)) {
374 if (!path.equals(Environment.getExternalStorageDirectory().getPath())) {
384 if (Environment.MEDIA_UNMOUNTED.equals(state)) {
386 } else if (Environment.MEDIA_MOUNTED.equals(state)) {
421 String path = Environment.getExternalStorageDirectory().getPath();
422 String state = Environment.MEDIA_REMOVED
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 21 import android.os.Environment;
63 File path = Environment.getDataDirectory();
75 path = Environment.getRootDirectory();
  /external/icu4c/test/threadtest/
threadtest.h 25 // The constructor will be called in a single-threaded environment,
30 // the test in the full multi-threaded environment.
33 // environment, with the worker threads temporarily suspended between
  /external/icu4c/tools/gensprep/
gensprep.8.in 57 The default source directory is specified by the environment variable
63 The default destination directory is specified by the environment variable
65 .SH ENVIRONMENT
  /external/openssl/crypto/threads/
netware.bat 60 echo Environment variable MWCIncludes is not set - see install.nw
65 echo Environment variable PRELUDE is not set - see install.nw
70 echo Environment variable IMPORTS is not set - see install.nw
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/MVS/
README 21 EBCDIC environment.
23 To install in an MVS environment, use patch to apply the diffs to flex 2.3,
27 environment.) Link together, and the resulting flex should be ready to
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SpnOverride.java 28 import android.os.Environment;
57 final File spnFile = new File(Environment.getRootDirectory(),
64 Environment.getRootDirectory() + "/" + PARTNER_SPN_OVERRIDE_PATH);
VoiceMailConstants.java 19 import android.os.Environment;
76 final File vmFile = new File(Environment.getRootDirectory(),
83 Environment.getRootDirectory() + "/" + PARTNER_VOICEMAIL_PATH);
  /packages/apps/Music/src/com/android/music/
ScanningProgress.java 23 import android.os.Environment;
38 String status = Environment.getExternalStorageState();
39 if (!status.equals(Environment.MEDIA_MOUNTED)) {

Completed in 521 milliseconds

12 3 4 5 6 7 8 91011>>