Searched defs:module (Results 251 - 275 of 374) sorted by relevance

<<1112131415

/external/oprofile/daemon/liblegacy/
H A Dp_module.h1 /* Definitions for the Linux module syscall interface.
42 unsigned long module; /* kernel addresses */ member in struct:old_module_ref
73 int size; /* size of module in pages */
74 unsigned long addr; /* address of module */
87 /* For sizeof() which are related to the module platform and not to the
133 struct module struct
135 unsigned tgt_long size_of_struct; /* == sizeof(module) */
157 unsigned tgt_long read_start; /* Read data from existing module */
176 /* Bits of module.flags. */
184 int sys_init_module(char const * name, const struct module *);
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffobjs.c64 FT_Module module; local
67 module = FT_Get_Module( size->root.face->driver->root.library,
69 return ( module && pshinter && pshinter->get_globals_funcs )
70 ? pshinter->get_globals_funcs( module )
359 FT_Module module; local
362 module = FT_Get_Module( slot->face->driver->root.library,
364 if ( module )
369 funcs = pshinter->get_t2_funcs( module );
502 FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
600 /* we need the `PSNames' module fo
[all...]
/external/skia/src/utils/win/
H A DSkWGL_win.cpp147 HMODULE module = GetModuleHandle(NULL); local
161 wc.hInstance = module;
185 module,
187 UnregisterClass(DUMMY_CLASS, module);
197 HMODULE module = GetModuleHandle(NULL); local
198 UnregisterClass(DUMMY_CLASS, module);
/external/webrtc/src/system_wrappers/source/
H A Dtrace_impl.cc194 const TraceModule module,
207 switch (module)
280 switch (module)
601 void TraceImpl::AddImpl(const TraceLevel level, const TraceModule module, argument
629 len = AddModuleAndId(meassagePtr, module, id);
798 void Trace::Add(const TraceLevel level, const TraceModule module, argument
821 trace->AddImpl(level, module, id, buff);
193 AddModuleAndId(char* traceMessage, const TraceModule module, const WebRtc_Word32 id) const argument
/external/wpa_supplicant_8/hostapd/
H A Dmain.c43 static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module, argument
67 switch (module) {
112 if ((conf_stdout & module) && level >= conf_stdout_level) {
118 if ((conf_syslog & module) && level >= conf_syslog_level) {
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dwpa_debug.c754 void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level, argument
776 hostapd_logger_cb(ctx, addr, module, level, buf, len);
/external/wpa_supplicant_8/src/utils/
H A Dwpa_debug.c754 void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level, argument
776 hostapd_logger_cb(ctx, addr, module, level, buf, len);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dwpa_debug.c754 void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level, argument
776 hostapd_logger_cb(ctx, addr, module, level, buf, len);
/external/checkpolicy/test/
H A Ddismod.c35 #include <sepol/policydb/module.h>
306 * they can never be required by a module, use this
751 policydb_t module, *mods = &module; local
765 fprintf(out_fp, "Reading module...\n");
772 if (module.policy_type != POLICY_MOD) {
773 fprintf(stderr, "This file is not a loadable policy module.\n");
776 if (policydb_index_classes(&module) ||
777 policydb_index_others(NULL, &module, 0)) {
778 fprintf(stderr, "Could not index module
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_msgutil.py33 """Tests for msgutil module."""
42 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
/external/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.cc79 : module(x) {}
81 return (module.location == module_in.location) &&
82 (module.name == module_in.name);
85 const ModuleEnumerator::Module& module; member in struct:__anon3611::FindModule
106 // The browser process module blacklist. This lists modules that are known
328 void ModuleEnumerator::NormalizeModule(Module* module) { argument
329 base::string16 path = module->location;
330 if (!ConvertToLongPath(path, &module->location))
331 module->location = path;
333 module
356 Match( const ModuleEnumerator::Module& module, const ModuleEnumerator::BlacklistEntry& blacklisted) argument
589 PopulateModuleInformation(Module* module) argument
611 AddToListWithoutDuplicating(const Module& module) argument
678 Module* module = &(*enumerated_modules_)[m]; local
[all...]
/external/chromium_org/chrome/installer/mini_installer/
H A Dmini_installer.cc336 BOOL CALLBACK OnResourceFound(HMODULE module, const wchar_t* type, argument
343 PEResource resource(name, type, module);
380 bool UnpackBinaryResources(const Configuration& configuration, HMODULE module, argument
400 if (!::EnumResourceNames(module, kLZMAResourceType, OnResourceFound,
447 if (!::EnumResourceNames(module, kLZCResourceType, OnResourceFound,
472 if (!::EnumResourceNames(module, kBinResourceType, OnResourceFound,
594 bool GetWorkDir(HMODULE module, PathString* work_dir) { argument
601 len = ::GetModuleFileName(module, base_path.get(), base_path.capacity());
759 ProcessExitCode WMain(HMODULE module) { argument
804 if (!GetWorkDir(module,
[all...]
/external/chromium_org/content/common/
H A Dsandbox_win.cc165 // Compares the loaded |module| file name matches |module_name|.
166 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) { argument
168 DWORD sz = ::GetModuleFileNameW(module, path, arraysize(path));
185 HMODULE module = check_in_browser ? ::GetModuleHandleW(module_name) : NULL; local
186 if (!module) {
187 // The module could have been loaded with a 8.3 short name. We check
201 module = ::GetModuleHandleW(alt_name.c_str());
202 if (!module)
206 if (!IsExpandedModuleName(module, module_name))
219 // Eviction of injected DLLs is done by the sandbox so that the injected module
550 HMODULE module = NULL; local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dplugin_module.cc378 PluginModule* module,
389 RendererPpapiHostImpl::CreateOnModuleForInProcess(module, perms);
421 // In the past there have been crashes reentering the plugin module
426 // When the module is being deleted, there should be no more instances still
452 // Don't add stuff here, the two notifications that the module object has
497 // Create a new module, but don't set the lifetime delegate. This isn't a
508 // module, and one or more instances are added later. In this case, the
672 // See if a module has already been loaded for this plugin.
674 scoped_refptr<PluginModule> module = local
676 if (module
377 CreateHostForInProcessModule(RenderFrameImpl* render_frame, PluginModule* module, const WebPluginInfo& webplugin_info) argument
[all...]
/external/chromium_org/extensions/renderer/
H A Dmodule_system.cc155 // Clear the module system properties from the global context. It's polite,
210 // The module system might have been deleted. This can happen if a different
262 v8::Local<v8::Value> module; local
265 module = RequireForJsInner(
269 if (module.IsEmpty() || !module->IsObject()) {
271 "Failed to get module " + module_name + " to call " + method_name);
276 v8::Local<v8::Value> value = v8::Handle<v8::Object>::Cast(module)->Get(
358 // the require()d module to belong to our context, not the current one.
373 v8::Handle<v8::Object> module local
[all...]
/external/chromium_org/ppapi/examples/video_capture/
H A Dvideo_capture.cc22 #include "ppapi/cpp/module.h"
57 VCDemoInstance(PP_Instance instance, pp::Module* module);
160 VCDemoInstance::VCDemoInstance(PP_Instance instance, pp::Module* module) argument
173 module->GetBrowserInterface(PPB_OPENGLES2_INTERFACE));
/external/chromium_org/ppapi/proxy/
H A Dppapi_proxy_test.cc28 void PluginCrashed(PP_Module module) { argument
38 void SetReserveInstanceIDCallback(PP_Module module, argument
44 void AddRefModule(PP_Module module) {} argument
45 void ReleaseModule(PP_Module module) {} argument
46 PP_Bool IsInModuleDestructor(PP_Module module) { return PP_FALSE; } argument
/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_util.cc363 UNICODE_STRING* GetImageInfoFromModule(HMODULE module, uint32* flags) { argument
368 base::win::PEImage pe(module);
441 // Ends with path separator. Not a valid module name.
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcompile_frontend.py162 module = descriptors.modules[module_name] variable
164 worker_modules_by_name[module_name] = module
165 for dep in module.get('dependencies', []):
177 log_error('Module "%s" may not depend on the worker module "%s"' % (name, dependency))
185 def check_module(module, seen_files, seen_modules):
186 name = module['name']
188 for dep_name in module.get('dependencies', []):
191 for source in module.get('scripts', []):
205 return ' --module ' + jsmodule_name_prefix + module_name
212 module
[all...]
/external/chromium_org/third_party/codesighs/
H A Dcodesighs.c64 ** 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.
167 ** mSize Size of module.
242 char module[0x100]; local
255 ** size class scope module segment object symbol ....
266 module,
369 if(NULL != strstr(module, inOption
[all...]
/external/chromium_org/third_party/cython/src/Cython/Build/
H A DDependencies.py374 module = os.path.splitext(os.path.basename(filename))[0]
375 return '.'.join(package(filename) + (module,))
460 def find_pxd(self, module, filename=None):
461 is_relative = module[0] == '.'
465 module_path = module.split('.')
481 return self.context.find_pxd_file(module, None)
489 for module in self.cimports(filename):
490 if module[:7] == 'cython.' or module == 'cython':
492 pxd_file = self.find_pxd(module, filenam
496 print("missing cimport in module '%s': %s" % (module, filename)) namespace
[all...]
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkWGL_win.cpp171 HMODULE module = GetModuleHandle(NULL); local
185 wc.hInstance = module;
209 module,
211 UnregisterClass(DUMMY_CLASS, module);
221 HMODULE module = GetModuleHandle(NULL); local
222 UnregisterClass(DUMMY_CLASS, module);
/external/chromium_org/third_party/webrtc/base/
H A Dlogging.cc106 LogErrorContext err_ctx, int err, const char* module)
142 HMODULE hmod = GetModuleHandleA(module);
105 LogMessage(const char* file, int line, LoggingSeverity sev, LogErrorContext err_ctx, int err, const char* module) argument
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_rtcp_impl_unittest.cc141 // Send module.
156 // Receive module.
170 void SendFrame(const RtpRtcpModule* module, uint8_t tid) { argument
177 EXPECT_EQ(0, module->impl_->SendOutgoingData(kVideoFrameKey,
187 void IncomingRtcpNack(const RtpRtcpModule* module, uint16_t sequence_number) { argument
196 EXPECT_EQ(0, module->impl_->IncomingRtcpPacket(packet.buffer(),
261 // Sender module should send a SR.
264 // Receiver module should send a RR with a response to the last received SR.
301 // Receiver module should send a Receiver time reference report (RTRR).
304 // Sender module shoul
[all...]
/external/chromium_org/ui/gfx/
H A Dicon_util.cc247 scoped_ptr<SkBitmap> IconUtil::CreateSkBitmapFromIconResource(HMODULE module, argument
255 static_cast<HICON>(LoadImage(module, MAKEINTRESOURCE(resource_id),
267 if (!base::win::GetResourceFromModule(module, resource_id, RT_GROUP_ICON,
291 if (!base::win::GetResourceFromModule(module, large_icon_entry->nID, RT_ICON,

Completed in 1582 milliseconds

<<1112131415