HomeSort by relevance Sort by last modified time
    Searched refs:os (Results 51 - 75 of 25533) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
Seccomp.java 17 package android.os;
Debug.aidl 17 package android.os;
ICancellationSignal.aidl 17 package android.os;
IDeviceIdentifiersPolicyService.aidl 17 package android.os;
INetworkActivityListener.aidl 16 package android.os;
IncidentReportArgs.aidl 17 package android.os;
19 parcelable IncidentReportArgs cpp_header "android/os/IncidentReportArgs.h";
StrictMode.aidl 17 package android.os;
UserManager.aidl 18 package android.os;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/
io.pass.cpp 16 // operator<<(basic_ostream<CharT, Traits>& os, shared_ptr<Y> const& p);
25 std::ostringstream os; local
26 assert(os.str().empty());
27 os << p;
28 assert(!os.str().empty());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/
io.pass.cpp 16 // operator<<(basic_ostream<CharT, Traits>& os, shared_ptr<Y> const& p);
25 std::ostringstream os; local
26 assert(os.str().empty());
27 os << p;
28 assert(!os.str().empty());
  /art/runtime/arch/arm/
registers_arm.cc 28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
34 return os;
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) {
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
43 return os;
  /art/runtime/arch/x86_64/
registers_x86_64.cc 28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
34 return os;
37 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs) {
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
43 return os;
  /frameworks/base/core/java/android/os/health/
HealthStatsParceler.aidl 17 package android.os.health;
  /frameworks/base/core/java/android/os/storage/
DiskInfo.aidl 17 package android.os.storage;
StorageVolume.aidl 17 package android.os.storage;
VolumeInfo.aidl 17 package android.os.storage;
VolumeRecord.aidl 17 package android.os.storage;
  /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/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))
  /frameworks/native/cmds/dumpstate/binder/android/os/
IDumpstate.aidl 17 package android.os;
19 import android.os.IDumpstateListener;
20 import android.os.IDumpstateToken;
  /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...]

Completed in 2362 milliseconds

1 23 4 5 6 7 8 91011>>