| /external/chromium/chrome/browser/ |
| enumerate_modules_model_win.cc | 51 static bool ModuleSort(const ModuleEnumerator::Module& a, 52 const ModuleEnumerator::Module& b) { 72 explicit FindModule(const ModuleEnumerator::Module& x) 73 : module(x) {} 74 bool operator()(const ModuleEnumerator::Module& module_in) const { 75 return (module.location == module_in.location) && 76 (module.name == module_in.name); 79 const ModuleEnumerator::Module& module; member in struct:__anon4514::FindModule 99 // The browser process module blacklist. This lists modules that are know 620 Module* module = &(*enumerated_modules_)[m]; local [all...] |
| /external/chromium/crypto/ |
| nss_util.cc | 180 int slot_count = item->module->loaded ? item->module->slotCount : 0; 182 PK11SlotInfo* slot = item->module->slots[i]; 468 // Load the given module for this NSS session. 480 SECMODModule* module = SECMOD_LoadUserModule( local 482 if (!module) { 483 LOG(ERROR) << "Error loading " << name << " module into NSS: " 487 return module; 522 // This tries to load the opencryptoki module so NSS can talk to
|
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
| test_msgutil.py | 33 """Tests for msgutil module.""" 42 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace [all...] |
| /external/chromium_org/chrome/browser/ |
| enumerate_modules_model_win.cc | 59 static bool ModuleSort(const ModuleEnumerator::Module& a, 60 const ModuleEnumerator::Module& b) { 80 explicit FindModule(const ModuleEnumerator::Module& x) 81 : module(x) {} 82 bool operator()(const ModuleEnumerator::Module& module_in) const { 83 return (module.location == module_in.location) && 84 (module.name == module_in.name); 87 const ModuleEnumerator::Module& module; member in struct:__anon7153::FindModule 107 // The browser process module blacklist. This lists modules that are know 680 Module* module = &(*enumerated_modules_)[m]; local [all...] |
| /external/chromium_org/content/renderer/pepper/ |
| pepper_plugin_instance_impl.h | 125 PluginModule* module, 129 PluginModule* module() const { return module_.get(); } function in class:content::PepperPluginInstanceImpl 477 // Reset this instance as proxied. Assigns the instance a new module, resets 482 PP_ExternalPluginResult ResetAsProxied(scoped_refptr<PluginModule> module); 484 // Checks whether this is a valid instance of the given module. After calling 485 // ResetAsProxied above, a NaCl plugin instance's module changes, so external 486 // hosts won't recognize it as a valid instance of the original module. This 488 // the given module. 489 bool IsValidInstanceOf(PluginModule* module); 550 PluginModule* module, [all...] |
| /external/chromium_org/crypto/ |
| nss_util.cc | 173 int slot_count = item->module->loaded ? item->module->slotCount : 0; 175 PK11SlotInfo* slot = item->module->slots[i]; 264 // This tries to load the Chaps module so NSS can talk to the hardware 531 // Load the given module for this NSS session. 543 SECMODModule* module = SECMOD_LoadUserModule( local 545 if (!module) { 546 LOG(ERROR) << "Error loading " << name << " module into NSS: " 550 return module;
|
| /external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
| pnacl_coordinator.cc | 138 pp::Module *module = pp::Module::Get(); local 139 DCHECK(module); 141 module->GetBrowserInterface(PPB_UMA_PRIVATE_INTERFACE)); [all...] |
| /external/chromium_org/third_party/codesighs/ |
| codesighs.c | 64 ** mModules Output module by module information. 120 static Switch gModuleSwitch = {"--modules", "-m", 0, NULL, "Output individual module numbers as well."}; 126 static Switch gMatchModule = {"--match-module", "-mmod", 1, NULL, "Only consider modules that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of modules."}; 164 ** Track module level information. 166 ** mModule Module name. 167 ** mSize Size of module. 242 char module[0x100]; local 255 ** size class scope module segment object symbol .... 266 module, [all...] |
| /external/chromium_org/third_party/jinja2/ |
| environment.py | 468 `defer_init` is use internally to aid the module code generator. This 658 # the debugging module is imported when it's used for the first time. 941 def module(self): member in class:Template [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
| radeon_setup_tgsi_llvm.c | 959 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); local 962 function = LLVMGetNamedFunction(module, name); 974 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args); 1003 * We are only using the module, context, and builder fields of this struct. 1005 * helper functions in the gallivm module. 1010 ctx->gallivm.module = LLVMModuleCreateWithNameInContext("tgsi", 1014 /* Setup the module */ 1017 ctx->main_fn = LLVMAddFunction(ctx->gallivm.module, "main", main_fn_type); [all...] |
| /external/mesa3d/src/gallium/drivers/radeon/ |
| radeon_setup_tgsi_llvm.c | 959 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); local 962 function = LLVMGetNamedFunction(module, name); 974 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args); 1003 * We are only using the module, context, and builder fields of this struct. 1005 * helper functions in the gallivm module. 1010 ctx->gallivm.module = LLVMModuleCreateWithNameInContext("tgsi", 1014 /* Setup the module */ 1017 ctx->main_fn = LLVMAddFunction(ctx->gallivm.module, "main", main_fn_type); [all...] |
| /external/opencv/cxcore/src/ |
| cxswitcher.cpp | 451 func_tab[i].loaded_from = idx; // store index of the module 490 cvRegisterModule( const CvModuleInfo* module ) 500 CV_ASSERT( module != 0 && module->name != 0 && module->version != 0 ); 502 name_len = strlen(module->name); 503 version_len = strlen(module->version); 508 *module_copy = *module; 512 memcpy( (void*)module_copy->name, module->name, name_len + 1 ); 513 memcpy( (void*)module_copy->version, module->version, version_len + 1 ) 544 CvModuleInfo* module; local [all...] |
| /external/oprofile/libpp/ |
| format_output.cpp | 572 // module+symbol table for detecting duplicate symbols 951 string const & module = get_image_name((cit)->image_name, local 966 out << open_element(MODULE, true); 967 out << init_attr(NAME, module) << close_element(NONE, true); 975 string const symqname = module + ":" + symname; 995 out << close_element(MODULE);
|
| /external/sonivox/arm-fm-22k/lib_src/ |
| eas_public.c | 364 EAS_INT module; local 375 /* check Configuration Module for S_EAS_DATA allocation */ 401 /* initalize the metrics module */ 407 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Error %ld initializing metrics module\n", result); */ } 425 for (module = 0; module < NUM_EFFECTS_MODULES; module++) 427 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module); 428 if (pEASData->effectsModules[module].effect != NULL [all...] |
| /external/sonivox/arm-hybrid-22k/lib_src/ |
| eas_public.c | 364 EAS_INT module; local 375 /* check Configuration Module for S_EAS_DATA allocation */ 401 /* initalize the metrics module */ 407 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Error %ld initializing metrics module\n", result); */ } 425 for (module = 0; module < NUM_EFFECTS_MODULES; module++) 427 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module); 428 if (pEASData->effectsModules[module].effect != NULL [all...] |
| /external/sonivox/arm-wt-22k/lib_src/ |
| eas_public.c | 365 EAS_INT module; local 376 /* check Configuration Module for S_EAS_DATA allocation */ 402 /* initalize the metrics module */ 408 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Error %ld initializing metrics module\n", result); */ } 426 for (module = 0; module < NUM_EFFECTS_MODULES; module++) 428 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module); 429 if (pEASData->effectsModules[module].effect != NULL [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/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...] |
| /hardware/libhardware/tests/camera2/ |
| camera2.cpp | 42 hw_module_t *module = NULL; local 44 (const hw_module_t **)&module); 47 << "Failure opening camera hardware module: " << res; 48 ASSERT_TRUE(NULL != module) 49 << "No camera module was set by hw_get_module"; 52 std::cout << " Camera module name: " 53 << module->name << std::endl; 54 std::cout << " Camera module author: " 55 << module->author << std::endl; 56 std::cout << " Camera module API version: 0x" << std::he 111 hw_module_t *module = reinterpret_cast<hw_module_t*>(sCameraModule); local [all...] |
| /hardware/libhardware_legacy/audio/ |
| audio_hw_hal.cpp | 34 struct audio_module module; member in struct:android_audio_legacy::legacy_audio_module 635 static int legacy_adev_open(const hw_module_t* module, const char* name, 650 ladev->device.common.module = const_cast<hw_module_t*>(module); 689 module: {
|
| /hardware/libhardware_legacy/wifi/ |
| wifi.c | 78 #define WIFI_DRIVER_FW_PATH_PARAM "/sys/module/wlan/parameters/fwpath" 119 void *module; local 123 module = load_file(filename, &size); 124 if (!module) 127 ret = init_module(module, size, args); 129 free(module); 148 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 706 static int qcom_adev_open(const hw_module_t* module, const char* name, 721 qadev->device.common.module = const_cast<hw_module_t*>(module); 766 module: {
|
| /hardware/qcom/display/msm8974/libhwcomposer/ |
| hwc_copybit.cpp | 605 hw_module_t const *module; local 615 if (hw_get_module(COPYBIT_HARDWARE_MODULE_ID, &module) == 0) { 616 if(copybit_open(module, &mEngine) < 0) { 620 ALOGE("FATAL ERROR: copybit hw module not found");
|
| /packages/apps/Bluetooth/jni/ |
| com_android_bluetooth_btservice_AdapterService.cpp | 461 hw_module_t* module; local 495 err = hw_get_module(id, (hw_module_t const**)&module); 499 err = module->methods->open(module, id, &abstraction); [all...] |
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
| core.h | 109 struct module *module; /* top-level module */ member in struct:snd_card 291 struct module *module, int extra_size);
|