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

1234567891011>>

/frameworks/compile/slang/
H A Dslangdata.py21 import sys namespace
26 sys.stdout.write("""
55 buf = sys.stdin.read(1024)
61 sys.stdout.write(".byte ")
62 sys.stdout.write("0x%02x" % ord(c))
65 sys.stdout.write("\n")
68 sys.stdout.write(", ")
70 sys.stdout.write(",")
72 sys.stdout.write("0x00")
74 sys
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DSystemUtils.cpp12 using namespace mcld::sys;
H A DFileSystem.cpp16 bool mcld::sys::fs::exists(const Path &pPath)
18 mcld::sys::fs::FileStatus file_status;
19 mcld::sys::fs::detail::status(pPath, file_status);
20 return (file_status.type() != mcld::sys::fs::StatusError) &&
21 (file_status.type() != mcld::sys::fs::FileNotFound);
24 bool mcld::sys::fs::is_directory(const Path &pPath)
28 return (file_status.type() == mcld::sys::fs::DirectoryFile);
H A DToolOutputFile.cpp28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath)
32 llvm::sys::RemoveFileOnSignal(llvm::sys::Path(m_Path.native()));
39 // llvm::sys::Path
41 llvm::sys::Path(m_Path.native()).eraseFromDisk();
46 llvm::sys::DontRemoveFileOnSignal(llvm::sys::Path(m_Path.native()));
52 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
65 << sys::strerror(m_FileHandle.error());
/frameworks/compile/libbcc/tools/build/
H A Dgen-sha1-stamp.py19 import sys namespace
52 sys.stdout.write("""
62 sys.stdout.write("""
69 sys.stdout.write("""
82 sys.stdout.write(".byte ")
84 sys.stdout.write(", ")
86 sys.stdout.write(",")
87 sys.stdout.write("0x%02x" % ord(c))
90 sys.stdout.write("\n")
93 sys
[all...]
H A Dgen-config-from-mk.py21 import sys namespace
59 if len(sys.argv) != 1:
60 print >> sys.stderr, 'USAGE:', sys.argv[0]
61 sys.exit(1)
63 extract_config(sys.stdin)
/frameworks/webview/chromium/tools/
H A Djar_check.py26 import sys namespace
60 print >>sys.stderr, 'Usage: %s jar_file whitelist_file' % argv[0]
66 print >>sys.stderr, ('jar_check found %s files not in a whitelisted package:'
69 print >>sys.stderr, f
74 sys.exit(main(sys.argv))
H A Dgenerate_local_manifest.py14 import sys namespace
44 if len(sys.argv) < 3:
46 sys.exit(-1)
48 android_build_top = sys.argv[1]
49 path_to_exclude = sys.argv[2]
52 if len(sys.argv) >= 4:
53 manifest_filename = sys.argv[3]
/frameworks/compile/mclinker/include/mcld/
H A DBitcodeOption.h33 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
35 const sys::fs::Path& getPath() const { return m_Path; }
42 sys::fs::Path m_Path;
/frameworks/native/include/private/binder/
H A Dbinder_module.h26 #include <sys/ioctl.h>
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp24 const mcld::sys::fs::Path& LinkerScript::sysroot() const
29 void LinkerScript::setSysroot(const mcld::sys::fs::Path &pSysroot)
/frameworks/compile/mclinker/include/mcld/MC/
H A DSearchDirs.h47 SearchDirs(const sys::fs::Path& pSysRoot);
52 sys::fs::Path*
55 const sys::fs::Path*
58 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
59 const sys::fs::Path& sysroot() const { return m_SysRoot; }
72 bool insert(const sys::fs::Path& pDirectory);
76 sys::fs::Path m_SysRoot;
H A DContextFactory.h35 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
42 LDContext* produce(const sys::fs::Path& pPath);
H A DMCLDDirectory.h26 class MCLDDirectory : public sys::fs::Directory
40 void setSysroot(const sys::fs::Path& pPath);
/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/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/compile/mclinker/unittests/
H A DDirIteratorTest.h15 namespace sys { namespace in namespace:mcld
46 mcld::sys::fs::Directory *m_pDir;
H A DDirIteratorTest.cpp14 using namespace mcld::sys::fs;
27 m_pDir = new mcld::sys::fs::Directory(".");
/frameworks/compile/mclinker/include/mcld/Support/
H A DRealPath.h18 namespace sys { namespace in namespace:mcld
46 } // namespace of sys
55 struct less<mcld::sys::fs::RealPath> : public binary_function<
56 mcld::sys::fs::RealPath,
57 mcld::sys::fs::RealPath,
60 bool operator() (const mcld::sys::fs::RealPath& pX,
61 const mcld::sys::fs::RealPath& pY) const {
H A DToolOutputFile.h39 ToolOutputFile(const sys::fs::Path& pPath,
62 explicit CleanupInstaller(const sys::fs::Path& pPath);
70 sys::fs::Path m_Path;
H A DPathCache.h21 namespace sys { namespace in namespace:mcld
26 mcld::sys::fs::Path,
33 } // namespace of sys
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp17 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum)
25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath)
29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();

Completed in 612 milliseconds

1234567891011>>