Home
last modified time | relevance | path

Searched defs:ModuleInfo (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/Serialization/
DGlobalModuleIndex.h74 struct ModuleInfo { struct
75 ModuleInfo() : File(), Size(), ModTime() { } in ModuleInfo() argument
100 llvm::SmallVector<ModuleInfo, 16> Modules; argument
/external/google-breakpad/src/client/solaris/handler/
Dsolaris_lwp.h64 struct ModuleInfo { struct
78 typedef bool (*ModuleCallback)(const ModuleInfo &module_info, void *context); argument
/external/libchrome/base/debug/
Dactivity_tracker.h813 struct BASE_EXPORT ModuleInfo { struct
819 ModuleInfo& operator=(ModuleInfo&& rhs); argument
820 ModuleInfo& operator=(const ModuleInfo& rhs); argument
823 bool is_loaded = false; // Was the last operation a load or unload?
824 uintptr_t address = 0; // Address of the last load operation.
825 int64_t load_time = 0; // Time of last change; set automatically.
829 size_t size = 0; // The size of the loaded module.
830 uint32_t timestamp = 0; // Opaque "timestamp" for the module.
831 uint32_t age = 0; // Opaque "age" for the module.
832 uint8_t identifier[16]; // Opaque identifier (GUID, etc.) for the module.
[all …]
/external/turbine/java/com/google/turbine/binder/bound/
DModuleInfo.java25 public class ModuleInfo { class
37 public ModuleInfo( in ModuleInfo() method in ModuleInfo
/external/ImageMagick/MagickCore/
Dmodule.h59 } ModuleInfo; typedef
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc305 struct ModuleInfo { struct
306 const char *filepath;
307 uptr base_address;
308 uptr end_address;
/external/python/cpython2/Demo/parser/
Dexample.py106 class ModuleInfo(SuiteInfoBase, SuiteFuncInfo): class
/external/guice/core/src/com/google/inject/spi/
DElements.java139 private static class ModuleInfo { class in Elements
144 private ModuleInfo(Binder binder, ModuleSource moduleSource, boolean skipScanning) { in ModuleInfo() method in Elements.ModuleInfo
/external/python/cpython3/Lib/
Dpkgutil.py22 ModuleInfo = namedtuple('ModuleInfo', 'module_finder name ispkg') variable
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp164 struct ModuleInfo { struct
165 std::vector<bool> CanBeHidden;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto/
Dllvm-lto.cpp221 struct ModuleInfo { struct
222 std::vector<bool> CanBeHidden;
/external/turbine/java/com/google/turbine/bytecode/
DClassFile.java761 public static class ModuleInfo { class in ClassFile
772 public ModuleInfo( in ModuleInfo() method in ClassFile.ModuleInfo
/external/python/cpython2/Lib/
Dinspect.py421 ModuleInfo = namedtuple('ModuleInfo', 'name suffix mode module_type') variable
/external/clang/lib/Serialization/
DASTWriter.cpp4584 struct ModuleInfo { in WriteASTCore() struct
4585 uint64_t ID; in WriteASTCore()
4586 Module *M; in WriteASTCore()
4587 ModuleInfo(uint64_t ID, Module *M) : ID(ID), M(M) {} in WriteASTCore() function
/external/google-breakpad/src/client/linux/handler/
Dexception_handler_unittest.cc810 TEST(ExceptionHandlerTest, ModuleInfo) { in TEST() argument