Searched refs:module (Results 1 - 25 of 99) sorted by last modified time

1234

/frameworks/support/v17/preference-leanback/
H A DAndroid.mk17 # Android libraries referenced by this module's resources.
/frameworks/support/
H A Dapicheck.mk18 # $(support_module) - name of the support library module
/frameworks/support/buildSrc/
H A DstudioCompat.gradle83 * Adds a link to the previous ApiModule for each module. This information is later used when
98 * For each APIModule in the given projectConfig, creates a gradle module. These modules use the
103 projectConfig.apiTargets.each { ApiModule module ->
104 logger.info "creating ${module.moduleName}"
105 module.setParentModuleDependencies(projectConfig.dependencies)
106 include "${module.moduleName}"
107 def folder = new File(rootDir, "${projectConfig.folder}/${module.folderName}")
108 project("${module.moduleName}").projectDir = folder
109 project("${module.moduleName}").buildFileName = Paths.get(folder.toURI()).relativize(buildFile)
110 gradle.ext.folderToApiModuleMapping[folder.canonicalPath] = module
[all...]
/frameworks/support/design/
H A DAndroid.mk17 # Android libraries referenced by this module's resources.
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk75 # This list is generated from the java source files in this module
93 # These patterns will match all classes in this module and their inner classes.
/frameworks/native/libs/ui/
H A DGraphicBufferAllocator.cpp41 hw_module_t const* module; local
42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
45 gralloc_open(module, &mAllocDev);
107 // Filter out any usage bits that should not be passed to the gralloc module
H A DGraphicBufferMapper.cpp48 hw_module_t const* module; local
49 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
50 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
52 mAllocMod = reinterpret_cast<gralloc_module_t const *>(module);
/frameworks/native/opengl/libagl/
H A Degl.cpp245 gralloc_module_t const* module; member in struct:android::egl_window_surface_v2_t
345 nativeWindow(window), buffer(0), previousBuffer(0), module(0),
350 module = reinterpret_cast<gralloc_module_t const*>(pModule);
445 err = module->lock(module, buf->handle,
456 err = module->unlock(module, buf->handle);
H A Dtexture.cpp135 gralloc_module_t const* module = local
139 int err = module->lock(module, native_buffer->handle,
163 gralloc_module_t const* module = local
166 module->unlock(module, native_buffer->handle);
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp115 const hw_module_t* module; local
116 int err = input_open(&module, name);
117 LOG_ALWAYS_FATAL_IF(err != 0, "Input module %s not found", name);
118 mHal = reinterpret_cast<const input_module_t*>(module);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp107 // Load and prepare the hardware composer module. Sets mHwc.
112 hw_module_t const* module; local
114 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
115 ALOGE("%s module not found, aborting", HWC_HARDWARE_MODULE_ID);
120 int error = module->methods->open(module, HWC_HARDWARE_COMPOSER, &device);
H A DHWComposer_hwc1.cpp211 // Load and prepare the hardware composer module. Sets mHwc.
214 hw_module_t const* module; local
216 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
217 ALOGE("%s module not found", HWC_HARDWARE_MODULE_ID);
221 int err = hwc_open_1(module, &mHwc);
239 // Load and prepare the FB HAL, which uses the gralloc module. Sets mFbDev.
242 hw_module_t const* module; local
244 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
246 ALOGE("%s module not found", GRALLOC_HARDWARE_MODULE_ID);
250 return framebuffer_open(module,
[all...]
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h1695 VkShaderModule module; member in struct:VkPipelineShaderStageCreateInfo
/frameworks/native/vulkan/libvulkan/
H A Ddriver.cpp132 const hwvulkan_module_t* module; local
134 hw_get_module("vulkan", reinterpret_cast<const hw_module_t**>(&module));
142 module->common.methods->open(&module->common, HWVULKAN_DEVICE_0,
H A Dstubhal.cpp124 .module = nullptr,
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp109 int OpenDevice(const hw_module_t* module, const char* id, hw_device_t** device);
143 .module = &HAL_MODULE_INFO_SYM.common,
151 int OpenDevice(const hw_module_t* /*module*/,
1050 VkShaderModule* module) {
1051 *module = AllocHandle<VkShaderModule>(device, HandleType::kShaderModule);
1047 CreateShaderModule(VkDevice device, const VkShaderModuleCreateInfo*, const VkAllocationCallbacks* , VkShaderModule* module) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp50 Module module("test", script);
56 IRBuilder builder(module, config);
60 if (linker.link(module, builder))
61 linker.emit(module, "./test.so");
95 Module module("libplasma.so", script);
96 IRBuilder builder(module, config);
119 if (linker.link(module, builder)) {
120 linker.emit(module, "libplasma.so"); ///< -o libplasma.so
350 Module module(script);
351 IRBuilder builder(module, confi
[all...]
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp146 llvm::Module *module = MOrErr.get(); local
152 llvm_3_2::WriteBitcodeToFile(module, OS);
H A DMetadataExtractor.cpp193 MetadataExtractor::MetadataExtractor(const llvm::Module *module) argument
194 : mModule(module), mBitcode(nullptr), mBitcodeSize(0),
591 ALOGE("Invalid/empty bitcode/module");
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp354 std::unique_ptr<llvm::Module> module; local
359 module = std::move(moduleOrError.get());
360 ec = module->materializeAll();
365 module.reset();
378 module->print(tof->os(), ann.get());
/frameworks/compile/libbcc/include/bcinfo/
H A DMetadataExtractor.h143 * Reads metadata from \p module.
145 * \param module - input module.
147 MetadataExtractor(const llvm::Module *module);
169 * \return number of exported global variables (slots) in this script/module.
183 * \return number of exported global functions (slots) in this script/module.
197 * \return number of exported ForEach functions in this script/module.
225 * \return number of exported general reduce kernels (slots) in this script/module.
392 * \return whether the module contains debug metadata
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp66 return "Failed to materialize the module.";
236 llvm::Module &module = pScript.getSource().getModule(); local
243 const std::string &triple = module.getTargetTriple();
267 // Sanitize module's target information.
268 module.setTargetTriple(getTargetMachine().getTargetTriple().str());
269 module.setDataLayout(getTargetMachine().createDataLayout());
271 // Materialize the bitcode module.
272 if (module.getMaterializer() != nullptr) {
273 // A module with non-null materializer means that it is a lazy-load module
289 *IRStream << module; local
322 llvm::Module &module = script.getSource().getModule(); local
446 llvm::Module &module = pScript.getSource().getModule(); local
[all...]
H A DSource.cpp40 // reduce the startup time. On success, return the LLVM module object created
82 llvm::Module *module = managedModule.release(); local
83 if (module == nullptr) {
87 Source *result = CreateFromModule(pContext, pName, *module, /* pNoDelete */false);
89 delete module;
112 llvm::Module *module = managedModule.release(); local
113 if (module == nullptr) {
117 Source *result = CreateFromModule(pContext, pPath.c_str(), *module, /* pNoDelete */false);
119 delete module;
131 ALOGE("Bitcode of RenderScript module doe
173 llvm::Module *module = local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp101 bccAssert("Could not extract RS pragma metadata for module!");
322 ALOGE("Cannot extract metadata from module");
328 // Link all input modules into a single module
332 llvm::Module module("Merged Script Group", context);
334 llvm::Linker linker(module);
338 ALOGE("Linking for module in source failed.");
360 if (!fuseKernels(Context, sourcesToFuse, slots, nameOfFused, &module)) {
376 if (!renameInvoke(Context, source, slot, newName, &module)) {
382 // Compile the new module with fused kernels
386 Source::CreateFromModule(Context, pOutputFilepath, module, tru
[all...]

Completed in 465 milliseconds

1234