HomeSort by relevance Sort by last modified time
    Searched refs:os (Results 76 - 100 of 30185) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.aidl 18 package android.os;
  /frameworks/native/aidl/binder/android/os/
PersistableBundle.aidl 18 package android.os;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOsPath.py 2 # Override built in module os.path to provide support for long file path
14 import os
18 return os.path.isfile(LongFilePath(path))
21 return os.path.isdir(LongFilePath(path))
24 return os.path.exists(LongFilePath(path))
27 return os.path.getsize(LongFilePath(filename))
30 return os.path.getmtime(LongFilePath(filename))
33 return os.path.getatime(LongFilePath(filename))
36 return os.path.getctime(LongFilePath(filename))
38 join = os.path.join
    [all...]
  /external/autotest/frontend/client/
gwt_dir 5 import os, sys
9 site_gwt = os.path.abspath(os.path.join(
10 os.path.dirname(__file__), '..', '..', 'site-packages', 'gwt'))
12 if os.path.isdir(site_gwt):
16 if not os.path.isdir(DEFAULT_GWT):
  /external/linux-kselftest/tools/testing/selftests/tc-testing/
tdc_config_local_template.py 7 import os
9 ENVIR = os.environ.copy()
11 ENV_LD_LIBRARY_PATH = os.getenv('LD_LIBRARY_PATH', '')
12 ENV_OTHER_LIB = os.getenv('OTHER_LIB', '')
17 EXTRA_NAMES['SOME_BIN'] = os.path.join(os.getenv('OTHER_BIN', ''), 'some_bin')
  /external/skia/tools/
fix_pythonpath.py 10 import os
14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
15 os.path.dirname(os.path.abspath(__file__)), os.pardir))
  /external/skqp/tools/
fix_pythonpath.py 10 import os
14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
15 os.path.dirname(os.path.abspath(__file__)), os.pardir))
  /frameworks/base/core/java/android/os/
ISystemUpdateManager.aidl 1 /* //device/java/android/android/os/ISystemUpdateInfo.aidl
18 package android.os;
20 import android.os.Bundle;
21 import android.os.PersistableBundle;
  /external/v8/src/
objects-printer.cc 24 OFStream os(stdout);
25 this->Print(os);
26 os << std::flush;
30 void Object::Print(std::ostream& os) { // NOLINT
32 os << "Smi: " << std::hex << "0x" << Smi::cast(this)->value();
33 os << std::dec << " (" << Smi::cast(this)->value() << ")\n";
35 HeapObject::cast(this)->HeapObjectPrint(os);
40 void HeapObject::PrintHeader(std::ostream& os, const char* id) { // NOLINT
41 os << reinterpret_cast<void*>(this) << ": [";
43 os << id
    [all...]
  /external/vixl/tools/
config.py 27 import os
30 dir_tools = os.path.dirname(os.path.realpath(__file__))
31 dir_root = os.path.abspath(os.path.join(dir_tools, '..'))
32 dir_build = os.path.join(dir_root, 'obj')
33 dir_build_latest = os.path.join(dir_build, 'latest')
34 dir_src_vixl = os.path.join(dir_root, 'src')
35 dir_tests = os.path.join(dir_root, 'test')
36 dir_aarch64_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch64'
    [all...]
  /external/libvncserver/libvncserver/
zrleoutstream.c 68 zrleOutStream *os; local
70 os = malloc(sizeof(zrleOutStream));
71 if (os == NULL)
74 if (!zrleBufferAlloc(&os->in, ZRLE_IN_BUFFER_SIZE)) {
75 free(os);
79 if (!zrleBufferAlloc(&os->out, ZRLE_OUT_BUFFER_SIZE)) {
80 zrleBufferFree(&os->in);
81 free(os);
85 os->zs.zalloc = Z_NULL;
86 os->zs.zfree = Z_NULL
    [all...]
  /external/autotest/client/deps/camera_hal3/
camera_hal3.py 3 # Copyright (c) 2017 The Chromium OS Authors. All rights reserved.
7 import os
14 src_path = os.path.join(os.environ['SYSROOT'], 'usr', 'bin')
15 dst_path = os.path.join(os.getcwd(), 'bin')
16 os.mkdir(dst_path)
17 utils.get_file(os.path.join(src_path, binary),
18 os.path.join(dst_path, binary))
21 utils.update_version(os.getcwd(), True, version, setup, os.getcwd()
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
__init__.py 5 import os
9 return os.path.abspath(os.path.join(*path_parts))
14 if os.path.isdir(path) and path not in sys.path:
20 _CATAPULT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)),
21 os.path.pardir, os.path.pardir, os.path.pardir
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/utils/
__init__.py 5 import os
9 return os.path.abspath(os.path.join(*path_parts))
14 if os.path.isdir(path) and path not in sys.path:
20 _CATAPULT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)),
21 os.path.pardir, os.path.pardir, os.path.pardir
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
setup.py 19 import os
21 if 'BASE_TOOLS_PATH' not in os.environ:
24 BaseToolsDir = os.environ['BASE_TOOLS_PATH']
32 os.path.join(BaseToolsDir, 'Source', 'C', 'Common', 'Decompress.c'),
36 os.path.join(BaseToolsDir, 'Source', 'C', 'Include'),
37 os.path.join(BaseToolsDir, 'Source', 'C', 'Include', 'Ia32'),
38 os.path.join(BaseToolsDir, 'Source', 'C', 'Common')
  /external/autotest/client/cros/cellular/mbim_compliance/
common.py 1 # Copyright (c) 2015 The Chromium OS Authors. All rights reserved.
5 import os
7 dirname = os.path.dirname(sys.modules[__name__].__file__)
8 client_dir = os.path.abspath(os.path.join(dirname, os.pardir, os.pardir,
9 os.pardir))
  /external/chromium-trace/catapult/systrace/profile_chrome/
__init__.py 5 import os
9 _CATAPULT_DIR = os.path.join(
10 os.path.dirname(os.path.abspath(__file__)), '..', '..')
11 sys.path.append(os.path.join(_CATAPULT_DIR, 'devil'))
12 sys.path.append(os.path.join(_CATAPULT_DIR, 'systrace'))
13 sys.path.append(os.path.join(_CATAPULT_DIR, 'common', 'py_utils'))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH']
    [all...]
  /external/libmojo/build/android/pylib/constants/
host_paths.py 6 import os
9 DIR_SOURCE_ROOT = os.environ.get(
11 os.path.abspath(os.path.join(os.path.dirname(__file__),
12 os.pardir, os.pardir, os.pardir, os.pardir)))
14 BUILD_COMMON_PATH = os.path.join
    [all...]
  /external/python/cpython2/Lib/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
user.py 27 import os
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os.environ['HOMEDRIVE'] + os.environ['HOMEPATH'
    [all...]
  /external/autotest/client/cros/cellular/wardmodem/
common.py 1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
5 import os
7 dirname = os.path.dirname(sys.modules[__name__].__file__)
8 client_dir = os.path.abspath(os.path.join(dirname, os.pardir, os.pardir,
9 os.pardir))
10 package_root_dir = os.path.abspath(dirname)
19 sys.path.insert(0, os.path.join(package_root_dir)
    [all...]

Completed in 979 milliseconds

1 2 34 5 6 7 8 91011>>