Searched refs:module (Results 26 - 50 of 99) sorted by relevance

1234

/frameworks/base/data/fonts/
H A DAndroid.mk80 # It also serves as the module name and the dest file name.
81 define build-one-font-module
94 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
96 build-one-font-module :=
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp146 llvm::Module *module = MOrErr.get(); local
152 llvm_3_2::WriteBitcodeToFile(module, OS);
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_dec_defs.h54 ; Define module specific macros here
56 #define module(x, POW2) ((x)&(POW2-1)) macro
98 ; Declare variables used in this module but defined elsewhere
H A Dpvmp3_framedecoder.cpp123 ; Define module specific macros here
140 ; Variable declaration - defined here and used outside this module
145 ; Declare functions defined elsewhere and referenced in this module
150 ; Declare variables used in this module but defined elsewhere
562 pMainData->pBuffer[module(pMainData->offset++, BUFSIZE)] = (uint8)val;
607 pVars->mainDataStream.offset = module(pVars->mainDataStream.offset, BUFSIZE);
614 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset++ , BUFSIZE)));
615 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset++ , BUFSIZE)));
619 fillDataBuf(&pVars->mainDataStream, *(pVars->inputStream.pBuffer + module(offset , BUFSIZE)));
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyClientImpl.cpp39 status_t AudioPolicyService::AudioPolicyClient::openOutput(audio_module_handle_t module, argument
52 return af->openOutput(module, output, config, devices, address, latencyMs, flags);
99 status_t AudioPolicyService::AudioPolicyClient::openInput(audio_module_handle_t module, argument
113 return af->openInput(module, input, config, device, address, source, flags);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraModule.h27 * A wrapper class for HAL camera module.
35 CameraModule(camera_module_t *module);
H A DCamera2ClientBase.h59 virtual status_t initialize(CameraModule *module);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScriptGroupFusion.cpp58 ALOGE("Kernel fusion (module %s slot %d): failed to find kernel function",
64 ALOGE("Kernel fusion (module %s function %s): cannot handle multiple inputs",
103 ALOGE("Kernel fusion (module %s slot %d): cannot handle multiple inputs",
110 ALOGE("Kernel fusion (module %s slot %d): Unexpected signature %x",
240 ALOGE("Kernel fusion (module %s function %s): not a kernel",
249 ALOGE("Kernel fusion (module %s function %s): expected input, but got null",
264 ALOGE("Kernel fusion (module %s function %s): %s", source->getName().c_str(),
273 ALOGE("Kernel fusion (module %s function %s): function not first in batch takes no input",
320 const std::string& newName, Module* module) {
321 const llvm::Function* F = getInvokeFunction(*source, slot, module);
319 renameInvoke(BCCContext& Context, const Source* source, const int slot, const std::string& newName, Module* module) argument
[all...]
H A DRSEmbedInfo.cpp41 /* RSEmbedInfoPass - This pass operates on the entire module and embeds a
65 static std::string getRSInfoString(const llvm::Module *module) { argument
68 bcinfo::MetadataExtractor me(module);
70 bccAssert(false && "Could not extract RS metadata for module!");
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk19 # Build module libfilterfw_jni
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk19 # Build module libfilterfw_static
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A DAndroid.mk20 # Build module libfilterframework
/frameworks/base/services/core/jni/
H A Dcom_android_server_fingerprint_FingerprintService.cpp50 fingerprint_module_t const* module; member in struct:android::__anon1109
208 ALOGE("No valid fingerprint module");
212 gContext.module = reinterpret_cast<const fingerprint_module_t*>(hw_module);
214 if (gContext.module->common.methods->open == NULL) {
221 if (0 != (err = gContext.module->common.methods->open(hw_module, NULL, &device))) {
H A Dcom_android_server_hdmi_HdmiCecController.cpp292 hw_module_t* module; local
294 const_cast<const hw_module_t **>(&module));
296 ALOGE("Error acquiring hardware module: %d", err);
301 err = module->methods->open(module, HDMI_CEC_HARDWARE_INTERFACE, &device);
303 ALOGE("Error opening hardware module: %d", err);
/frameworks/native/vulkan/libvulkan/
H A Dstubhal.cpp124 .module = nullptr,
/frameworks/native/libs/ui/
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/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/av/services/audiopolicy/common/managerdefinitions/include/
H A DDeviceDescriptor.h49 virtual void attach(const sp<HwModule>& module);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp255 sp <HwModule> module; local
263 return module;
269 sp <HwModule> module; local
290 return module;
H A DSerializer.cpp407 const char *const ModuleTraits::tag = "module";
413 status_t ModuleTraits::deserialize(xmlDocPtr doc, const xmlNode *root, PtrElement &module, argument
433 module = new Element(name.c_str(), version);
438 module->setProfiles(mixPorts);
442 module->setDeclaredDevices(devicePorts);
445 deserializeCollection<RouteTraits>(doc, root, routes, module.get());
446 module->setRoutes(routes);
460 module->getDeclaredDevices().getDeviceFromTagName(String8((const char*)attachedDevice));
474 module->getDeclaredDevices().getDeviceFromTagName(String8((const char*)defaultOutputDevice));
/frameworks/av/include/media/
H A DIAudioFlinger.h159 virtual status_t openOutput(audio_module_handle_t module,
172 virtual status_t openInput(audio_module_handle_t module,
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c188 downmix_module_t *module; local
228 module = malloc(sizeof(downmix_module_t));
230 module->itfe = &gDownmixInterface;
232 module->context.state = DOWNMIX_STATE_UNINITIALIZED;
234 ret = Downmix_Init(module);
237 free(module);
241 *pHandle = (effect_handle_t) module;
243 ALOGV("DownmixLib_Create() %p , size %zu", module, sizeof(downmix_module_t));
554 * pDwmModule pointer to downmix effect module
578 ALOGV("Downmix_Init module
[all...]
/frameworks/av/services/radio/
H A DRadioService.h96 const struct radio_properties mProperties; // cached hardware module properties
123 wp<ModuleClient> mModuleClient; // client module the thread belongs to
134 ModuleClient(const sp<Module>& module,
167 wp<Module> module() const { return mModule; } function in class:android::RadioService::ModuleClient
185 wp<Module> mModule; // The module this client is attached to
205 volatile int32_t mNextUniqueId; // for module ID allocation
/frameworks/base/core/tests/coretests/
H A DAndroid.mk3 # this var will hold all the test apk module names later.
/frameworks/base/services/
H A DAndroid.mk35 # The convention is to name each service module 'services.$(module_name)'

Completed in 6422 milliseconds

1234