Searched refs:sys (Results 1 - 25 of 614) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp16 bool mcld::sys::fs::exists(const Path& pPath) {
17 mcld::sys::fs::FileStatus file_status;
18 mcld::sys::fs::detail::status(pPath, file_status);
19 return (file_status.type() != mcld::sys::fs::StatusError) &&
20 (file_status.type() != mcld::sys::fs::FileNotFound);
23 bool mcld::sys::fs::is_directory(const Path& pPath) {
26 return (file_status.type() == mcld::sys::fs::DirectoryFile);
H A DFileOutputBuffer.cpp15 FileOutputBuffer::FileOutputBuffer(llvm::sys::fs::mapped_file_region* pRegion,
32 ec = llvm::sys::fs::resize_file(pFileHandle.handler(), pSize);
36 std::unique_ptr<llvm::sys::fs::mapped_file_region> mapped_file(
37 new llvm::sys::fs::mapped_file_region(pFileHandle.handler(),
38 llvm::sys::fs::mapped_file_region::readwrite, pSize, 0, ec));
/frameworks/native/cmds/atrace/
H A Datrace.rc6 chmod 0222 /sys/kernel/debug/tracing/trace_marker
9 chown root shell /sys/kernel/debug/tracing/trace_clock
10 chown root shell /sys/kernel/debug/tracing/buffer_size_kb
11 chown root shell /sys/kernel/debug/tracing/options/overwrite
12 chown root shell /sys/kernel/debug/tracing/options/print-tgid
13 chown root shell /sys/kernel/debug/tracing/events/sched/sched_switch/enable
14 chown root shell /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable
15 chown root shell /sys/kernel/debug/tracing/events/sched/sched_blocked_reason/enable
16 chown root shell /sys/kernel/debug/tracing/events/sched/sched_cpu_hotplug/enable
17 chown root shell /sys/kerne
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DRealPath.h16 namespace sys { namespace in namespace:mcld
43 } // namespace sys
52 struct less<mcld::sys::fs::RealPath>
53 : public binary_function<mcld::sys::fs::RealPath,
54 mcld::sys::fs::RealPath,
56 bool operator()(const mcld::sys::fs::RealPath& pX,
57 const mcld::sys::fs::RealPath& pY) const {
H A DPathCache.h18 namespace sys { namespace in namespace:mcld
22 mcld::sys::fs::Path,
30 } // namespace sys
/frameworks/native/include/private/binder/
H A Dbinder_module.h26 #include <sys/ioctl.h>
/frameworks/compile/mclinker/include/mcld/MC/
H A DContextFactory.h31 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0> {
37 LDContext* produce(const sys::fs::Path& pPath);
H A DSearchDirs.h44 explicit SearchDirs(const sys::fs::Path& pSysRoot);
49 sys::fs::Path* find(const std::string& pNamespec,
52 const sys::fs::Path* find(const std::string& pNamespec,
55 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
56 const sys::fs::Path& sysroot() const { return m_SysRoot; }
69 bool insert(const sys::fs::Path& pDirectory);
73 sys::fs::Path m_SysRoot;
H A DMCLDDirectory.h24 class MCLDDirectory : public sys::fs::Directory {
37 void setSysroot(const sys::fs::Path& pPath);
/frameworks/native/opengl/tools/glgen/
H A Dconvert_to_java.py21 import sys namespace
26 for line in sys.stdin:
/frameworks/base/cmds/interrupter/
H A Dinterrupter.c30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <sys/stat.h>
/frameworks/av/include/media/stagefright/foundation/
H A Dhexdump.h21 #include <sys/types.h>
/frameworks/av/media/ndk/
H A DNdkMediaCryptoPriv.h31 #include <sys/types.h>
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp18 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum) {
24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) {
27 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
35 return produce(sys::fs::Path(pPath));
H A DMCLDDirectory.cpp30 sys::fs::detail::open_dir(*this);
44 sys::fs::detail::open_dir(*this);
58 sys::fs::detail::open_dir(*this);
72 sys::fs::detail::open_dir(*this);
73 Directory::m_FileStatus = sys::fs::FileStatus();
74 Directory::m_SymLinkStatus = sys::fs::FileStatus();
87 void MCLDDirectory::setSysroot(const sys::fs::Path& pSysroot) {
93 sys::fs::detail::canonicalize(Directory::m_Path.native());
94 sys::fs::detail::open_dir(*this);
/frameworks/compile/mclinker/unittests/
H A DSystemUtilsTest.cpp35 ASSERT_TRUE(NULL != mcld::sys::strerror(0));
H A DDirIteratorTest.h15 namespace sys { namespace in namespace:mcld
45 mcld::sys::fs::Directory* m_pDir;
H A DDirIteratorTest.cpp14 using namespace mcld::sys::fs;
25 m_pDir = new mcld::sys::fs::Directory(".");
/frameworks/native/opengl/libagl/
H A Darray.h23 #include <sys/types.h>
H A Dprimitives.h23 #include <sys/types.h>
/frameworks/compile/libbcc/tests/debuginfo/
H A Dllvm-lit4 import sys namespace
15 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
/frameworks/av/services/mediacodec/
H A Dmain_codecservice.cpp22 #include <sys/prctl.h>
23 #include <sys/wait.h>
/frameworks/av/services/mediadrm/
H A Dmain_mediadrmserver.cpp22 #include <sys/prctl.h>
23 #include <sys/wait.h>
/frameworks/av/services/mediaextractor/
H A Dmain_extractorservice.cpp22 #include <sys/prctl.h>
23 #include <sys/wait.h>
/frameworks/native/services/surfaceflinger/tests/waitforvsync/
H A Dwaitforvsync.cpp18 #include <sys/types.h>
21 #include <sys/ioctl.h>

Completed in 518 milliseconds

1234567891011>>