Searched refs:module (Results 26 - 50 of 99) sorted by last modified time

1234

/frameworks/compile/libbcc/lib/Renderscript/
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!");
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...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.h145 static std::unique_ptr<ARMExData> create(Module &module);
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp208 mcld::Module& module,
239 module.setName(output);
207 ConfigureOutputName(llvm::StringRef output_name, mcld::Module& module, mcld::LinkerConfig& config) argument
/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp43 Module module("test", script);
45 IRBuilder builder(module, config);
/frameworks/base/services/core/jni/
H A Dcom_android_server_ConsumerIrService.cpp33 hw_module_t const* module; local
37 err = hw_get_module(CONSUMERIR_HARDWARE_MODULE_ID, &module);
43 err = module->methods->open(module, CONSUMERIR_TRANSMITTER,
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);
H A Dcom_android_server_lights_LightsService.cpp51 static light_device_t* get_device(hw_module_t* module, char const* name) argument
55 err = module->methods->open(module, name, &device);
66 hw_module_t* module; local
71 err = hw_get_module(LIGHTS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
74 = get_device(module, LIGHT_ID_BACKLIGHT);
76 = get_device(module, LIGHT_ID_KEYBOARD);
78 = get_device(module, LIGHT_ID_BUTTONS);
80 = get_device(module, LIGHT_ID_BATTERY);
82 = get_device(module, LIGHT_ID_NOTIFICATION
[all...]
H A Dcom_android_server_location_FlpHardwareProvider.cpp196 * the HW module and obtaining the proper interfaces.
242 // open the hardware module
243 const hw_module_t* module = NULL; local
244 int err = hw_get_module(FUSED_LOCATION_HARDWARE_MODULE_ID, &module);
250 err = module->methods->open(
251 module,
H A Dcom_android_server_location_GnssLocationProvider.cpp561 hw_module_t* module; local
597 err = hw_get_module(GPS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
600 err = module->methods->open(module, GPS_HARDWARE_MODULE_ID, &device);
H A Dcom_android_server_tv_TvInputHal.cpp312 tv_input_module_t* module = NULL; local
314 (hw_module_t const**)&module);
316 ALOGE("Couldn't load %s module (%s)",
322 err = module->common.methods->open(
323 (hw_module_t*)module,
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A DAndroid.mk20 # Build module libfilterframework
/frameworks/base/services/
H A DAndroid.mk35 # The convention is to name each service module 'services.$(module_name)'
/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/core/jni/
H A Dandroid_hardware_Radio.cpp147 static sp<Radio> setRadio(JNIEnv* env, jobject thiz, const sp<Radio>& module) argument
151 if (module.get()) {
152 module->incStrong((void*)setRadio);
157 env->SetLongField(thiz, gModuleFields.mNativeContext, (jlong)module.get());
417 ALOGV("%s module %zu id %d implementor %s product %s",
580 sp<Radio> module = Radio::attach(handle, configPtr, (bool)withAudio, callback); local
581 if (module == 0) {
585 setRadio(env, thiz, module);
592 sp<Radio> module = setRadio(env, thiz, 0); local
593 ALOGV("detach module
604 sp<Radio> module = getRadio(env, thiz); local
615 sp<Radio> module = getRadio(env, thiz); local
639 sp<Radio> module = getRadio(env, thiz); local
667 sp<Radio> module = getRadio(env, thiz); local
679 sp<Radio> module = getRadio(env, thiz); local
695 sp<Radio> module = getRadio(env, thiz); local
707 sp<Radio> module = getRadio(env, thiz); local
719 sp<Radio> module = getRadio(env, thiz); local
731 sp<Radio> module = getRadio(env, thiz); local
743 sp<Radio> module = getRadio(env, thiz); local
778 sp<Radio> module = getRadio(env, thiz); local
798 sp<Radio> module = getRadio(env, thiz); local
[all...]
H A Dandroid_hardware_SoundTrigger.cpp368 static sp<SoundTrigger> setSoundTrigger(JNIEnv* env, jobject thiz, const sp<SoundTrigger>& module) argument
373 if (module.get()) {
374 module->incStrong((void*)setSoundTrigger);
379 env->SetLongField(thiz, gModuleFields.mNativeContext, (jlong)module.get());
427 ALOGV("listModules module %zu id %d description %s maxSoundModels %d",
470 sp<SoundTrigger> module = SoundTrigger::attach(handle, callback); local
471 if (module == 0) {
475 setSoundTrigger(env, thiz, module);
482 sp<SoundTrigger> module = setSoundTrigger(env, thiz, 0); local
483 ALOGV("detach module
494 sp<SoundTrigger> module = getSoundTrigger(env, thiz); local
518 sp<SoundTrigger> module = getSoundTrigger(env, thiz); local
675 sp<SoundTrigger> module = getSoundTrigger(env, thiz); local
690 sp<SoundTrigger> module = getSoundTrigger(env, thiz); local
783 sp<SoundTrigger> module = getSoundTrigger(env, thiz); local
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk3 # this var will hold all the test apk module names later.
/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/base/core/java/android/hardware/radio/
H A DRadioManager.java56 /** Radio module class supporting FM (including HD radio) and AM */
58 /** Radio module class supporting satellite radio */
60 /** Radio module class supporting Digital terrestrial radio */
95 * Lists properties, options and radio bands supported by a given broadcast radio module.
96 * Each module has a unique ID used to address it when calling RadioManager APIs.
128 /** Unique module identifier provided by the native service.
130 * @return the radio module unique identifier.
137 * @return the radio module class identifier.
143 /** Human readable broadcast radio module implementor
144 * @return the name of the radio module implementato
[all...]
H A DRadioModule.java208 RadioModule module = (RadioModule)((WeakReference)module_ref).get();
209 if (module == null) {
213 NativeEventHandlerDelegate delegate = module.mEventHandlerDelegate;
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java47 * A ModuleProperties describes a given sound trigger hardware module
48 * managed by the native sound trigger service. Each module has a unique
49 * ID used to target any API call to this paricular module. Module
53 /** Unique module ID provided by the native service */
1252 * Get an interface on a hardware module to control sound models and recognition on
1253 * this module.
1254 * @param moduleId Sound module system identifier {@link ModuleProperties#id}. mandatory.
1258 * @return a valid sound module in case of success or null in case of error.
1266 SoundTriggerModule module = new SoundTriggerModule(moduleId, listener, handler);
1267 return module;
[all...]
H A DSoundTriggerModule.java26 * on a given sound trigger hardware module.
56 * Detach from this module. The {@link SoundTrigger.StatusListener} callback will not be called
186 SoundTriggerModule module = (SoundTriggerModule)((WeakReference)module_ref).get();
187 if (module == null) {
191 NativeEventHandlerDelegate delegate = module.mEventHandlerDelegate;
/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,

Completed in 818 milliseconds

1234