/external/v8/test/cctest/wasm/ |
test-run-wasm.cc | 88 TestingModule module; local 89 module.AddMemory(1024); 90 r.env()->module = &module; 598 TestingModule module; local 599 module.AddMemoryElems<int32_t>(8); 600 r.env()->module = &module; 1182 TestingModule module; local 1199 TestingModule module; local 1218 TestingModule module; local 1431 TestingModule module; local 1451 TestingModule module; local 1472 TestingModule module; local 1494 TestingModule module; local 1523 TestingModule module; local 1552 TestingModule module; local 1580 TestingModule module; local 1603 TestingModule module; local 1643 TestingModule module; local 1660 TestingModule module; local 1679 TestingModule module; local 1701 TestingModule module; local 1718 TestingModule module; local 1751 TestingModule module; local 1769 TestingModule module; local 1805 TestingModule module; local 1841 TestingModule module; local 1886 TestingModule module; local 2020 TestingModule module; local 2036 TestingModule module; local 2052 TestingModule module; local 2069 TestingModule module; local 2086 TestingModule module; local 2105 TestingModule module; local 2135 TestingModule module; local 2157 TestingModule module; local 2178 TestingModule module; local 2199 TestingModule module; local 2314 TestingModule module; local 2337 TestingModule module; local 2363 TestingModule module; local 2392 TestingModule module; local 2416 TestingModule module; local 2440 TestingModule module; local 2471 TestingModule module; local 2491 TestingModule module; local 2549 TestingModule module; local 2785 TestingModule module; local 2820 TestingModule module; local 2864 TestingModule module; local [all...] |
/external/v8/test/mjsunit/wasm/ |
asm-wasm.js | 551 var module = _WASMEXP_.instantiateModuleFromAsm(TestNamedFunctions.toString()); variable 552 module.init(); 553 assertEquals(77.5, module.add()); 568 var module = _WASMEXP_.instantiateModuleFromAsm(TestGlobalsWithInit.toString()); variable 569 module.__init__(); 570 assertEquals(77.5, module.add()); 769 var module = _WASMEXP_.instantiateModuleFromAsm( variable 771 module.__init__(); 772 assertEquals(51, module.caller()); 782 var module = _WASMEXP_.instantiateModuleFromAsm variable [all...] |
/frameworks/av/media/libeffects/testlibs/ |
EffectReverb.c | 103 reverb_module_t *module; local 126 module = malloc(sizeof(reverb_module_t)); 128 module->itfe = &gReverbInterface; 130 module->context.mState = REVERB_STATE_UNINITIALIZED; 138 ret = Reverb_Init(module, aux, preset); 141 free(module); 145 *pHandle = (effect_handle_t) module; 147 module->context.mState = REVERB_STATE_INITIALIZED; 149 ALOGV("EffectLibCreateEffect %p ,size %d", module, sizeof(reverb_module_t)); 442 * pRvbModule - pointer to reverb effect module [all...] |
/frameworks/av/services/audiopolicy/service/ |
AudioPolicyService.cpp | 70 const struct hw_module_t *module; local 88 rc = hw_get_module(AUDIO_POLICY_HARDWARE_MODULE_ID, &module); 92 rc = audio_policy_dev_open(module, &mpAudioPolicyDev); 110 ALOGI("Loaded audio policy from %s (%s)", module->name, module->id); [all...] |
/frameworks/base/core/java/android/hardware/soundtrigger/ |
SoundTrigger.java | 47 * 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 */ 1266 SoundTriggerModule module = new SoundTriggerModule(moduleId, listener, handler); local [all...] |
/frameworks/base/services/core/jni/ |
com_android_server_tv_TvInputHal.cpp | 312 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/native/opengl/libagl/ |
texture.cpp | 135 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); [all...] |
/frameworks/native/services/inputflinger/host/ |
InputDriver.cpp | 115 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/vulkan/libvulkan/ |
driver.cpp | 132 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,
|
/hardware/libhardware/modules/sensors/ |
multihal.cpp | 61 * Comparable class that globally identifies a sensor, by module index and local handle. 62 * A module index is the module's index in sub_hw_modules. 63 * A local handle is the handle the sub-module assigns to a sensor. 107 // Returns the sub_hw_modules index of the module that contains the sensor associates with this 182 * Extends a sensors_poll_device_1 by including all the sub-module's devices. 452 static int open_sensors(const struct hw_module_t* module, const char* name, 484 * Ensures that the sub-module array is initialized. 496 // dlopen the module files and cache their module symbols in sub_hw_module 510 struct hw_module_t* module = (hw_module_t*) dlsym(lib_handle, sym); local 546 struct sensors_module_t *module = (struct sensors_module_t*) *it; local 564 struct sensors_module_t *module = (struct sensors_module_t*) hw_module; local [all...] |
/hardware/libhardware_legacy/audio/ |
audio_hw_hal.cpp | 36 struct audio_module module; member in struct:android_audio_legacy::legacy_audio_module 642 static int legacy_adev_open(const hw_module_t* module, const char* name, 657 ladev->device.common.module = const_cast<hw_module_t*>(module); 696 module: {
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 96 #define WIFI_DRIVER_FW_PATH_PARAM "/sys/module/wlan/parameters/fwpath" 137 void *module; local 141 module = load_file(filename, &size); 142 if (!module) 145 ret = init_module(module, size, args); 147 free(module); 166 ALOGD("Unable to unload driver module \"%s\": %s\n",
|
/hardware/qcom/audio/legacy/alsa_sound/ |
audio_hw_hal.cpp | 35 struct audio_module module; member in struct:android_audio_legacy::qcom_audio_module 710 static int qcom_adev_open(const hw_module_t* module, const char* name, 725 qadev->device.common.module = const_cast<hw_module_t*>(module); 770 module: {
|
/hardware/qcom/audio/msm8909/policy_hal/ |
AudioPolicyManager.cpp | 178 sp<HwModule> module = mHwModules.getModuleForDevice(device); local 179 if (module == 0) { 180 ALOGD("setDeviceConnectionState() could not find HW module for device %08x", 185 mAvailableOutputDevices[index]->attach(module); 334 sp<HwModule> module = mHwModules.getModuleForDevice(device); local 335 if (module == NULL) { 336 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", 346 mAvailableInputDevices[index]->attach(module); [all...] |
/hardware/qcom/display/msm8084/libhwcomposer/ |
hwc_copybit.cpp | 726 hw_module_t const *module; local 736 if (hw_get_module(COPYBIT_HARDWARE_MODULE_ID, &module) == 0) { 737 if(copybit_open(module, &mEngine) < 0) { 741 ALOGE("FATAL ERROR: copybit hw module not found");
|
/hardware/ti/omap4-aah/domx/omx_proxy_component/omx_h264_enc/src/ |
omx_proxy_h264enc.c | 1044 hw_module_t const* module = NULL; local 1071 IMG_gralloc_module_public_t const* module = hCC; local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
introspect.h | 214 uint32_t owner_module; /**< Index of the owning module of this sink, or PA_INVALID_INDEX */ 291 uint32_t owner_module; /**< Owning module index, or PA_INVALID_INDEX */ 379 uint32_t index; /**< Index of the module */ 380 const char*name, /**< Name of the module */ 381 *argument; /**< Argument string of the module */ 384 int auto_unload; /**< \deprecated Non-zero if this is an autoloaded module */ 392 /** Get some information about a module by its index */ 401 /** Load a module. */ 404 /** Unload a module. */ 417 uint32_t owner_module; /**< Index of the owning module, or PA_INVALID_INDEX * 641 const char *module; \/**< Module name to load *\/ member in struct:pa_autoload_info [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/ |
introspect.h | 217 uint32_t owner_module; /**< Index of the owning module of this sink, or PA_INVALID_INDEX */ 297 uint32_t owner_module; /**< Owning module index, or PA_INVALID_INDEX */ 387 uint32_t index; /**< Index of the module */ 388 const char*name, /**< Name of the module */ 389 *argument; /**< Argument string of the module */ 392 int auto_unload; /**< \deprecated Non-zero if this is an autoloaded module */ 400 /** Get some information about a module by its index */ 409 /** Load a module. */ 412 /** Unload a module. */ 425 uint32_t owner_module; /**< Index of the owning module, or PA_INVALID_INDEX * 681 const char *module; \/**< Module name to load *\/ member in struct:pa_autoload_info [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_scope.py | 659 with check_warnings(("import \* only allowed at module level", namespace
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_scope.py | 659 with check_warnings(("import \* only allowed at module level", namespace
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_scope.py | 659 with check_warnings(("import \* only allowed at module level", namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_scope.py | 659 with check_warnings(("import \* only allowed at module level", namespace
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.18.1/ |
org.eclipse.tycho.p2.maven.repository-0.18.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-site-renderer/1.0/ |
doxia-site-renderer-1.0.jar | |
/external/testng/ant/ |
ivy-2.1.0.jar | |